@genesislcap/grid-pro 15.15.2-FUI-2564.1 → 15.15.2-FUI-2603.8
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/custom-elements.json +804 -1362
- package/dist/dts/datasource/index.d.ts +0 -3
- package/dist/dts/datasource/index.d.ts.map +1 -1
- package/dist/dts/grid-pro.styles.d.ts +0 -14
- package/dist/dts/grid-pro.styles.d.ts.map +1 -1
- package/dist/dts/index.d.ts +0 -1
- package/dist/dts/index.d.ts.map +1 -1
- package/dist/dts/react.d.ts +9 -9
- package/dist/dts/state-persistence/kv-state.d.ts +0 -3
- package/dist/dts/state-persistence/kv-state.d.ts.map +1 -1
- package/dist/dts/state-persistence/local-state.d.ts +0 -3
- package/dist/dts/state-persistence/local-state.d.ts.map +1 -1
- package/dist/dts/state-persistence/state-persistence.d.ts +0 -16
- package/dist/dts/state-persistence/state-persistence.d.ts.map +1 -1
- package/dist/esm/datasource/index.js +0 -3
- package/dist/esm/grid-pro.styles.js +0 -48
- package/dist/esm/index.js +0 -1
- package/dist/esm/state-persistence/kv-state.js +0 -21
- package/dist/esm/state-persistence/local-state.js +0 -19
- package/dist/grid-pro.api.json +4033 -6656
- package/dist/grid-pro.d.ts +0 -441
- package/dist/react.cjs +6 -6
- package/dist/react.mjs +5 -5
- package/package.json +14 -14
- package/dist/dts/datasource/row-match.classes.d.ts +0 -47
- package/dist/dts/datasource/row-match.classes.d.ts.map +0 -1
- package/dist/dts/datasource/row-match.tracker.d.ts +0 -67
- package/dist/dts/datasource/row-match.tracker.d.ts.map +0 -1
- package/dist/dts/datasource/row-match.types.d.ts +0 -86
- package/dist/dts/datasource/row-match.types.d.ts.map +0 -1
- package/dist/dts/row-alert/index.d.ts +0 -3
- package/dist/dts/row-alert/index.d.ts.map +0 -1
- package/dist/dts/row-alert/row-alert.d.ts +0 -132
- package/dist/dts/row-alert/row-alert.d.ts.map +0 -1
- package/dist/dts/row-alert/row-alert.types.d.ts +0 -62
- package/dist/dts/row-alert/row-alert.types.d.ts.map +0 -1
- package/dist/esm/datasource/row-match.classes.js +0 -53
- package/dist/esm/datasource/row-match.tracker.js +0 -117
- package/dist/esm/datasource/row-match.types.js +0 -98
- package/dist/esm/row-alert/index.js +0 -2
- package/dist/esm/row-alert/row-alert.js +0 -197
- package/dist/esm/row-alert/row-alert.types.js +0 -63
|
@@ -1471,20 +1471,13 @@
|
|
|
1471
1471
|
"description": "Workaround for an AG Grid (v36, still present in v36.1.0) drag-ghost positioning bug in\nshadow DOM. The row-drag \"N rows\" ghost is appended to the grid's containing shadow root\n(AG's \\`_getPageBody\\` finds no \\`<body>\\` there) inside \\`.ag-styled-root\\` wrappers that are\n\\`display: contents\\`, so the ghost's positioning formula\n(\\`clientY - offsetParentRect.top - height / 2\\`) resolves against whatever ancestor of the\nshadow host happens to be its containing block. Whenever the element \\`offsetParent\\`\nreports differs from the real containing block (inline host fragments, scrolled panes,\napp-level transforms), the ghost renders at a constant offset from the cursor.\n\\`popupParent\\` does not help — the ghost code path never consults it.\n\nGiving the ghost's direct wrapper a real, positioned, zero-size box makes it both the\nreported \\`offsetParent\\` and the actual containing block, so AG's formula is exact —\nverified to match AG's healthy document-\\`body\\` code path pixel-for-pixel. Scoped with\n\\`:has(> .ag-dnd-ghost)\\` so the popup subsystem's \\`.ag-styled-root\\` wrappers keep their\nstock \\`display: contents\\`.",
|
|
1472
1472
|
"privacy": "public"
|
|
1473
1473
|
},
|
|
1474
|
-
{
|
|
1475
|
-
"kind": "variable",
|
|
1476
|
-
"name": "rowMatchAlertStyles",
|
|
1477
|
-
"default": "css`\n /* The :host prefix is needed to outweigh the AG theme's own .ag-theme-* .ag-row background. */\n :host .ag-row.${ROW_MATCH_ALERT_CLASS} {\n background-color: color-mix(\n in srgb,\n var(--row-alert-color, var(--error-fill-rest, #c62828))\n calc(var(${alertFlashPhaseProperty}, 0) * 100%),\n transparent\n );\n }\n\n /* AG paints cell backgrounds over the row, so they have to stand aside for a row-wide flash. */\n :host .ag-row.${ROW_MATCH_ALERT_CLASS} .ag-cell:not(.${ROW_MATCH_ALERT_CELL_CLASS}) {\n background-color: transparent !important;\n }\n\n :host .ag-cell.${ROW_MATCH_ALERT_CELL_CLASS} {\n background-color: color-mix(\n in srgb,\n var(--row-alert-color, var(--error-fill-rest, #c62828))\n calc(var(${alertFlashPhaseProperty}, 0) * 100%),\n transparent\n );\n }\n\n /* Reduced motion stops the clock, leaving the phase at 0, so paint a steady alert instead. */\n @media (prefers-reduced-motion: reduce) {\n :host .ag-row.${ROW_MATCH_ALERT_CLASS}, :host .ag-cell.${ROW_MATCH_ALERT_CELL_CLASS} {\n background-color: var(--row-alert-color, var(--error-fill-rest, #c62828));\n }\n }\n`",
|
|
1478
|
-
"description": "Flash for rows carrying the classes that `createRowMatchClassRules` and\n`createRowMatchCellClassRules` apply.\n\nThese live in the grid's own stylesheet because AG Grid renders inside this shadow root, out of\nreach of an app's CSS. The phase comes from the document-level clock, which inherits through the\nshadow boundary, so a flashing row keeps step with the flashing tab that sent you looking for it.\n\nAny grid composition that does not include foundationGridProStyles needs to include this\nas well, otherwise its rows silently never flash.",
|
|
1479
|
-
"privacy": "public"
|
|
1480
|
-
},
|
|
1481
1474
|
{
|
|
1482
1475
|
"kind": "variable",
|
|
1483
1476
|
"name": "foundationGridProStyles",
|
|
1484
1477
|
"type": {
|
|
1485
1478
|
"text": "ElementStyles"
|
|
1486
1479
|
},
|
|
1487
|
-
"default": "css`\n ${agExternalStockStyles}\n ${errorHandlerDialogStyles}\n ${agDragGhostShadowDomStyles}\n
|
|
1480
|
+
"default": "css`\n ${agExternalStockStyles}\n ${errorHandlerDialogStyles}\n ${agDragGhostShadowDomStyles}\n :host {\n --datasource-error-background-color: var(--neutral-layer-4);\n --datasource-error-background-opacity: 0.5;\n --datasource-error-dialog-max-width: 50%;\n --datasource-error-dialog-min-width: auto;\n --ag-status-bar-height: 32.5px;\n\n position: relative;\n width: 100%;\n height: 100%;\n }\n\n :host([ds-disconnected]) {\n display: block;\n }\n\n :host([ds-disconnected])::part(grid) {\n cursor: not-allowed;\n opacity: 40%;\n pointer-events: none;\n }\n\n .ag-side-bar,\n .ag-menu {\n --ag-subheader-background-color: var(--ag-background-color);\n --ag-control-panel-background-color: var(--ag-background-color);\n }\n\n .ag-cell-inline-editing {\n height: inherit !important;\n }\n\n .hidden {\n display: none;\n }\n\n .error {\n border-color: var(--error-color) !important;\n }\n\n .ag-status-bar {\n height: var(--ag-status-bar-height);\n }\n\n .ag-status-name-value {\n padding-top: var(--ag-grid-size);\n padding-bottom: var(--ag-grid-size);\n }\n\n /* Custom styling for the unsort icon (sortNone) - only for sortable columns */\n .ag-header-cell.ag-header-cell-sortable .ag-icon-none {\n opacity: 100%;\n color: var(--rapid-ag-header-foreground-color, var(--ag-foreground-color, #fff));\n font-size: calc(var(--ag-icon-size, 12px) * 1.2);\n font-weight: bold;\n }\n\n .ag-header-cell.ag-header-cell-sortable:hover .ag-icon-none {\n opacity: 100%;\n color: var(--rapid-ag-header-foreground-color, var(--ag-foreground-color, #fff));\n transform: scale(1.1);\n transition: transform 0.2s ease;\n }\n`",
|
|
1488
1481
|
"description": "The Grid Pro styles.",
|
|
1489
1482
|
"privacy": "public"
|
|
1490
1483
|
}
|
|
@@ -1498,14 +1491,6 @@
|
|
|
1498
1491
|
"module": "src/grid-pro.styles.ts"
|
|
1499
1492
|
}
|
|
1500
1493
|
},
|
|
1501
|
-
{
|
|
1502
|
-
"kind": "js",
|
|
1503
|
-
"name": "rowMatchAlertStyles",
|
|
1504
|
-
"declaration": {
|
|
1505
|
-
"name": "rowMatchAlertStyles",
|
|
1506
|
-
"module": "src/grid-pro.styles.ts"
|
|
1507
|
-
}
|
|
1508
|
-
},
|
|
1509
1494
|
{
|
|
1510
1495
|
"kind": "js",
|
|
1511
1496
|
"name": "foundationGridProStyles",
|
|
@@ -3456,14 +3441,6 @@
|
|
|
3456
3441
|
"package": "./multicolumn-dropdown"
|
|
3457
3442
|
}
|
|
3458
3443
|
},
|
|
3459
|
-
{
|
|
3460
|
-
"kind": "js",
|
|
3461
|
-
"name": "*",
|
|
3462
|
-
"declaration": {
|
|
3463
|
-
"name": "*",
|
|
3464
|
-
"package": "./row-alert"
|
|
3465
|
-
}
|
|
3466
|
-
},
|
|
3467
3444
|
{
|
|
3468
3445
|
"kind": "js",
|
|
3469
3446
|
"name": "*",
|
|
@@ -5314,69 +5291,123 @@
|
|
|
5314
5291
|
},
|
|
5315
5292
|
{
|
|
5316
5293
|
"kind": "javascript-module",
|
|
5317
|
-
"path": "src/
|
|
5294
|
+
"path": "src/column/column.template.ts",
|
|
5295
|
+
"declarations": [
|
|
5296
|
+
{
|
|
5297
|
+
"kind": "variable",
|
|
5298
|
+
"name": "ColumnTemplate",
|
|
5299
|
+
"default": "html<GridProColumn>`\n <template>\n <slot ${slotted('slottedAgCell')} @slotchange=\"${(x) => x.slottedAgCellChanged()}\"></slot>\n </template>\n`",
|
|
5300
|
+
"description": "The Grid Pro Column Template.",
|
|
5301
|
+
"privacy": "public"
|
|
5302
|
+
}
|
|
5303
|
+
],
|
|
5304
|
+
"exports": [
|
|
5305
|
+
{
|
|
5306
|
+
"kind": "js",
|
|
5307
|
+
"name": "ColumnTemplate",
|
|
5308
|
+
"declaration": {
|
|
5309
|
+
"name": "ColumnTemplate",
|
|
5310
|
+
"module": "src/column/column.template.ts"
|
|
5311
|
+
}
|
|
5312
|
+
}
|
|
5313
|
+
]
|
|
5314
|
+
},
|
|
5315
|
+
{
|
|
5316
|
+
"kind": "javascript-module",
|
|
5317
|
+
"path": "src/column/column.ts",
|
|
5318
5318
|
"declarations": [
|
|
5319
5319
|
{
|
|
5320
5320
|
"kind": "class",
|
|
5321
|
-
"description": "The
|
|
5322
|
-
"name": "
|
|
5321
|
+
"description": "The Grid Pro Column element.",
|
|
5322
|
+
"name": "GridProColumn",
|
|
5323
5323
|
"members": [
|
|
5324
5324
|
{
|
|
5325
5325
|
"kind": "field",
|
|
5326
|
-
"name": "
|
|
5326
|
+
"name": "slottedAgCell",
|
|
5327
5327
|
"type": {
|
|
5328
|
-
"text": "
|
|
5328
|
+
"text": "HTMLElement[]"
|
|
5329
5329
|
},
|
|
5330
5330
|
"privacy": "public"
|
|
5331
5331
|
},
|
|
5332
5332
|
{
|
|
5333
5333
|
"kind": "field",
|
|
5334
|
-
"name": "
|
|
5334
|
+
"name": "definition",
|
|
5335
5335
|
"type": {
|
|
5336
|
-
"text": "
|
|
5336
|
+
"text": "ColDef"
|
|
5337
5337
|
},
|
|
5338
|
-
"
|
|
5338
|
+
"default": "{}"
|
|
5339
5339
|
},
|
|
5340
5340
|
{
|
|
5341
5341
|
"kind": "method",
|
|
5342
|
-
"name": "
|
|
5343
|
-
"privacy": "public"
|
|
5344
|
-
"parameters": [
|
|
5345
|
-
{
|
|
5346
|
-
"name": "params",
|
|
5347
|
-
"type": {
|
|
5348
|
-
"text": "ICellRendererParams & ActionRendererParams"
|
|
5349
|
-
}
|
|
5350
|
-
}
|
|
5351
|
-
]
|
|
5342
|
+
"name": "slottedAgCellChanged",
|
|
5343
|
+
"privacy": "public"
|
|
5352
5344
|
},
|
|
5353
5345
|
{
|
|
5354
5346
|
"kind": "method",
|
|
5355
|
-
"name": "
|
|
5356
|
-
"privacy": "public",
|
|
5347
|
+
"name": "deepClone",
|
|
5357
5348
|
"return": {
|
|
5358
5349
|
"type": {
|
|
5359
|
-
"text": "
|
|
5350
|
+
"text": "Node"
|
|
5360
5351
|
}
|
|
5352
|
+
},
|
|
5353
|
+
"inheritedFrom": {
|
|
5354
|
+
"name": "LifecycleMixin",
|
|
5355
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
5361
5356
|
}
|
|
5362
5357
|
},
|
|
5363
5358
|
{
|
|
5364
5359
|
"kind": "method",
|
|
5365
|
-
"name": "
|
|
5366
|
-
"
|
|
5360
|
+
"name": "cloneNode",
|
|
5361
|
+
"return": {
|
|
5362
|
+
"type": {
|
|
5363
|
+
"text": "Node"
|
|
5364
|
+
}
|
|
5365
|
+
},
|
|
5367
5366
|
"parameters": [
|
|
5368
5367
|
{
|
|
5369
|
-
"name": "
|
|
5368
|
+
"name": "deep",
|
|
5369
|
+
"optional": true,
|
|
5370
5370
|
"type": {
|
|
5371
|
-
"text": "
|
|
5371
|
+
"text": "boolean"
|
|
5372
5372
|
}
|
|
5373
5373
|
}
|
|
5374
|
-
]
|
|
5374
|
+
],
|
|
5375
|
+
"inheritedFrom": {
|
|
5376
|
+
"name": "LifecycleMixin",
|
|
5377
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
5378
|
+
}
|
|
5379
|
+
},
|
|
5380
|
+
{
|
|
5381
|
+
"kind": "field",
|
|
5382
|
+
"name": "shouldRunDisconnect",
|
|
5383
|
+
"return": {
|
|
5384
|
+
"type": {
|
|
5385
|
+
"text": ""
|
|
5386
|
+
}
|
|
5387
|
+
},
|
|
5388
|
+
"readonly": true,
|
|
5389
|
+
"inheritedFrom": {
|
|
5390
|
+
"name": "LifecycleMixin",
|
|
5391
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
5392
|
+
}
|
|
5393
|
+
},
|
|
5394
|
+
{
|
|
5395
|
+
"kind": "field",
|
|
5396
|
+
"name": "shouldRunConnect",
|
|
5397
|
+
"return": {
|
|
5398
|
+
"type": {
|
|
5399
|
+
"text": ""
|
|
5400
|
+
}
|
|
5401
|
+
},
|
|
5402
|
+
"readonly": true,
|
|
5403
|
+
"inheritedFrom": {
|
|
5404
|
+
"name": "LifecycleMixin",
|
|
5405
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
5406
|
+
}
|
|
5375
5407
|
},
|
|
5376
5408
|
{
|
|
5377
5409
|
"kind": "method",
|
|
5378
|
-
"name": "
|
|
5379
|
-
"privacy": "public",
|
|
5410
|
+
"name": "#_blockLifecycleDueToTokenChange",
|
|
5380
5411
|
"return": {
|
|
5381
5412
|
"type": {
|
|
5382
5413
|
"text": "boolean"
|
|
@@ -5384,19 +5415,16 @@
|
|
|
5384
5415
|
},
|
|
5385
5416
|
"parameters": [
|
|
5386
5417
|
{
|
|
5387
|
-
"name": "
|
|
5418
|
+
"name": "lifecycleType",
|
|
5419
|
+
"type": {
|
|
5420
|
+
"text": "Lifecycletype"
|
|
5421
|
+
}
|
|
5388
5422
|
}
|
|
5389
|
-
]
|
|
5390
|
-
|
|
5391
|
-
|
|
5392
|
-
|
|
5393
|
-
|
|
5394
|
-
"privacy": "public"
|
|
5395
|
-
},
|
|
5396
|
-
{
|
|
5397
|
-
"kind": "field",
|
|
5398
|
-
"name": "dataTestId",
|
|
5399
|
-
"readonly": true
|
|
5423
|
+
],
|
|
5424
|
+
"inheritedFrom": {
|
|
5425
|
+
"name": "LifecycleMixin",
|
|
5426
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
5427
|
+
}
|
|
5400
5428
|
},
|
|
5401
5429
|
{
|
|
5402
5430
|
"kind": "field",
|
|
@@ -5510,82 +5538,92 @@
|
|
|
5510
5538
|
}
|
|
5511
5539
|
}
|
|
5512
5540
|
],
|
|
5541
|
+
"mixins": [
|
|
5542
|
+
{
|
|
5543
|
+
"name": "LifecycleMixin",
|
|
5544
|
+
"package": "@genesislcap/foundation-utils"
|
|
5545
|
+
}
|
|
5546
|
+
],
|
|
5513
5547
|
"superclass": {
|
|
5514
5548
|
"name": "FoundationElement",
|
|
5515
5549
|
"package": "@microsoft/fast-foundation"
|
|
5516
5550
|
},
|
|
5517
|
-
"tagName": "
|
|
5551
|
+
"tagName": "grid-pro-column",
|
|
5518
5552
|
"customElement": true
|
|
5519
|
-
},
|
|
5520
|
-
{
|
|
5521
|
-
"kind": "variable",
|
|
5522
|
-
"name": "actionHeightMultiplier",
|
|
5523
|
-
"description": "The base height multiplier for the action renderer.",
|
|
5524
|
-
"privacy": "public"
|
|
5525
|
-
},
|
|
5526
|
-
{
|
|
5527
|
-
"kind": "variable",
|
|
5528
|
-
"name": "agActionRendererStyles",
|
|
5529
|
-
"default": "css`\n .action-container {\n align-items: center;\n display: flex;\n height: 100%;\n justify-content: center;\n }\n .action-renderer {\n align-self: center;\n color: var(--accent-foreground-rest);\n display: flex;\n height: calc(\n (var(--base-height-multiplier) + var(--density)) * var(--design-unit) *\n var(--action-height-multiplier)\n );\n }\n`",
|
|
5530
|
-
"description": "The AG Action Renderer Styles.",
|
|
5531
|
-
"privacy": "public"
|
|
5532
|
-
},
|
|
5533
|
-
{
|
|
5534
|
-
"kind": "variable",
|
|
5535
|
-
"name": "foundationGridProActionRenderer",
|
|
5536
|
-
"description": "A function that returns a Foundation Action Renderer for configuring the component with a DesignSystem.",
|
|
5537
|
-
"privacy": "public"
|
|
5538
5553
|
}
|
|
5539
5554
|
],
|
|
5540
5555
|
"exports": [
|
|
5541
5556
|
{
|
|
5542
5557
|
"kind": "js",
|
|
5543
|
-
"name": "
|
|
5558
|
+
"name": "GridProColumn",
|
|
5544
5559
|
"declaration": {
|
|
5545
|
-
"name": "
|
|
5546
|
-
"module": "src/
|
|
5560
|
+
"name": "GridProColumn",
|
|
5561
|
+
"module": "src/column/column.ts"
|
|
5547
5562
|
}
|
|
5548
5563
|
},
|
|
5564
|
+
{
|
|
5565
|
+
"kind": "custom-element-definition",
|
|
5566
|
+
"name": "grid-pro-column",
|
|
5567
|
+
"declaration": {
|
|
5568
|
+
"name": "GridProColumn",
|
|
5569
|
+
"module": "src/column/column.ts"
|
|
5570
|
+
}
|
|
5571
|
+
}
|
|
5572
|
+
]
|
|
5573
|
+
},
|
|
5574
|
+
{
|
|
5575
|
+
"kind": "javascript-module",
|
|
5576
|
+
"path": "src/column/index.ts",
|
|
5577
|
+
"declarations": [],
|
|
5578
|
+
"exports": [
|
|
5549
5579
|
{
|
|
5550
5580
|
"kind": "js",
|
|
5551
|
-
"name": "
|
|
5581
|
+
"name": "*",
|
|
5552
5582
|
"declaration": {
|
|
5553
|
-
"name": "
|
|
5554
|
-
"
|
|
5583
|
+
"name": "*",
|
|
5584
|
+
"package": "./column.template"
|
|
5555
5585
|
}
|
|
5556
5586
|
},
|
|
5557
5587
|
{
|
|
5558
5588
|
"kind": "js",
|
|
5559
|
-
"name": "
|
|
5589
|
+
"name": "*",
|
|
5560
5590
|
"declaration": {
|
|
5561
|
-
"name": "
|
|
5562
|
-
"
|
|
5591
|
+
"name": "*",
|
|
5592
|
+
"package": "./column"
|
|
5563
5593
|
}
|
|
5564
5594
|
},
|
|
5565
5595
|
{
|
|
5566
5596
|
"kind": "js",
|
|
5567
|
-
"name": "
|
|
5597
|
+
"name": "*",
|
|
5568
5598
|
"declaration": {
|
|
5569
|
-
"name": "
|
|
5570
|
-
"
|
|
5599
|
+
"name": "*",
|
|
5600
|
+
"package": "./utils"
|
|
5571
5601
|
}
|
|
5572
5602
|
}
|
|
5573
5603
|
]
|
|
5574
5604
|
},
|
|
5575
5605
|
{
|
|
5576
5606
|
"kind": "javascript-module",
|
|
5577
|
-
"path": "src/cell-renderers/
|
|
5607
|
+
"path": "src/cell-renderers/action.renderer.ts",
|
|
5578
5608
|
"declarations": [
|
|
5579
5609
|
{
|
|
5580
5610
|
"kind": "class",
|
|
5581
|
-
"description": "The
|
|
5582
|
-
"name": "
|
|
5611
|
+
"description": "The AG Action Renderer element.",
|
|
5612
|
+
"name": "ActionRenderer",
|
|
5583
5613
|
"members": [
|
|
5584
5614
|
{
|
|
5585
5615
|
"kind": "field",
|
|
5586
5616
|
"name": "params",
|
|
5587
5617
|
"type": {
|
|
5588
|
-
"text": "ICellRendererParams"
|
|
5618
|
+
"text": "ICellRendererParams & ActionRendererParams"
|
|
5619
|
+
},
|
|
5620
|
+
"privacy": "public"
|
|
5621
|
+
},
|
|
5622
|
+
{
|
|
5623
|
+
"kind": "field",
|
|
5624
|
+
"name": "pendingAction",
|
|
5625
|
+
"type": {
|
|
5626
|
+
"text": "boolean"
|
|
5589
5627
|
},
|
|
5590
5628
|
"privacy": "public"
|
|
5591
5629
|
},
|
|
@@ -5597,7 +5635,7 @@
|
|
|
5597
5635
|
{
|
|
5598
5636
|
"name": "params",
|
|
5599
5637
|
"type": {
|
|
5600
|
-
"text": "ICellRendererParams"
|
|
5638
|
+
"text": "ICellRendererParams & ActionRendererParams"
|
|
5601
5639
|
}
|
|
5602
5640
|
}
|
|
5603
5641
|
]
|
|
@@ -5626,21 +5664,273 @@
|
|
|
5626
5664
|
]
|
|
5627
5665
|
},
|
|
5628
5666
|
{
|
|
5629
|
-
"kind": "
|
|
5630
|
-
"name": "
|
|
5631
|
-
"
|
|
5632
|
-
|
|
5667
|
+
"kind": "method",
|
|
5668
|
+
"name": "isDisabled",
|
|
5669
|
+
"privacy": "public",
|
|
5670
|
+
"return": {
|
|
5671
|
+
"type": {
|
|
5672
|
+
"text": "boolean"
|
|
5673
|
+
}
|
|
5633
5674
|
},
|
|
5634
|
-
"
|
|
5635
|
-
|
|
5636
|
-
|
|
5637
|
-
|
|
5638
|
-
|
|
5639
|
-
}
|
|
5675
|
+
"parameters": [
|
|
5676
|
+
{
|
|
5677
|
+
"name": "data"
|
|
5678
|
+
}
|
|
5679
|
+
]
|
|
5640
5680
|
},
|
|
5641
5681
|
{
|
|
5642
|
-
"kind": "
|
|
5643
|
-
"name": "
|
|
5682
|
+
"kind": "method",
|
|
5683
|
+
"name": "clickHandler",
|
|
5684
|
+
"privacy": "public"
|
|
5685
|
+
},
|
|
5686
|
+
{
|
|
5687
|
+
"kind": "field",
|
|
5688
|
+
"name": "dataTestId",
|
|
5689
|
+
"readonly": true
|
|
5690
|
+
},
|
|
5691
|
+
{
|
|
5692
|
+
"kind": "field",
|
|
5693
|
+
"name": "_presentation",
|
|
5694
|
+
"type": {
|
|
5695
|
+
"text": "ComponentPresentation | null | undefined"
|
|
5696
|
+
},
|
|
5697
|
+
"privacy": "private",
|
|
5698
|
+
"default": "void 0",
|
|
5699
|
+
"inheritedFrom": {
|
|
5700
|
+
"name": "FoundationElement",
|
|
5701
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
5702
|
+
}
|
|
5703
|
+
},
|
|
5704
|
+
{
|
|
5705
|
+
"kind": "field",
|
|
5706
|
+
"name": "$presentation",
|
|
5707
|
+
"type": {
|
|
5708
|
+
"text": "ComponentPresentation | null"
|
|
5709
|
+
},
|
|
5710
|
+
"privacy": "public",
|
|
5711
|
+
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
5712
|
+
"inheritedFrom": {
|
|
5713
|
+
"name": "FoundationElement",
|
|
5714
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
5715
|
+
}
|
|
5716
|
+
},
|
|
5717
|
+
{
|
|
5718
|
+
"kind": "field",
|
|
5719
|
+
"name": "template",
|
|
5720
|
+
"type": {
|
|
5721
|
+
"text": "ElementViewTemplate | void | null"
|
|
5722
|
+
},
|
|
5723
|
+
"privacy": "public",
|
|
5724
|
+
"description": "Sets the template of the element instance. When undefined,\nthe element will attempt to resolve the template from\nthe associated presentation or custom element definition.",
|
|
5725
|
+
"inheritedFrom": {
|
|
5726
|
+
"name": "FoundationElement",
|
|
5727
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
5728
|
+
}
|
|
5729
|
+
},
|
|
5730
|
+
{
|
|
5731
|
+
"kind": "method",
|
|
5732
|
+
"name": "templateChanged",
|
|
5733
|
+
"privacy": "protected",
|
|
5734
|
+
"return": {
|
|
5735
|
+
"type": {
|
|
5736
|
+
"text": "void"
|
|
5737
|
+
}
|
|
5738
|
+
},
|
|
5739
|
+
"inheritedFrom": {
|
|
5740
|
+
"name": "FoundationElement",
|
|
5741
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
5742
|
+
}
|
|
5743
|
+
},
|
|
5744
|
+
{
|
|
5745
|
+
"kind": "field",
|
|
5746
|
+
"name": "styles",
|
|
5747
|
+
"type": {
|
|
5748
|
+
"text": "ElementStyles | void | null"
|
|
5749
|
+
},
|
|
5750
|
+
"privacy": "public",
|
|
5751
|
+
"description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
|
|
5752
|
+
"inheritedFrom": {
|
|
5753
|
+
"name": "FoundationElement",
|
|
5754
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
5755
|
+
}
|
|
5756
|
+
},
|
|
5757
|
+
{
|
|
5758
|
+
"kind": "method",
|
|
5759
|
+
"name": "stylesChanged",
|
|
5760
|
+
"privacy": "protected",
|
|
5761
|
+
"return": {
|
|
5762
|
+
"type": {
|
|
5763
|
+
"text": "void"
|
|
5764
|
+
}
|
|
5765
|
+
},
|
|
5766
|
+
"inheritedFrom": {
|
|
5767
|
+
"name": "FoundationElement",
|
|
5768
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
5769
|
+
}
|
|
5770
|
+
},
|
|
5771
|
+
{
|
|
5772
|
+
"kind": "method",
|
|
5773
|
+
"name": "compose",
|
|
5774
|
+
"privacy": "public",
|
|
5775
|
+
"static": true,
|
|
5776
|
+
"return": {
|
|
5777
|
+
"type": {
|
|
5778
|
+
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
5779
|
+
}
|
|
5780
|
+
},
|
|
5781
|
+
"parameters": [
|
|
5782
|
+
{
|
|
5783
|
+
"name": "this",
|
|
5784
|
+
"type": {
|
|
5785
|
+
"text": "K"
|
|
5786
|
+
}
|
|
5787
|
+
},
|
|
5788
|
+
{
|
|
5789
|
+
"name": "elementDefinition",
|
|
5790
|
+
"type": {
|
|
5791
|
+
"text": "T"
|
|
5792
|
+
},
|
|
5793
|
+
"description": "The definition of the element to create the registry\nfunction for."
|
|
5794
|
+
}
|
|
5795
|
+
],
|
|
5796
|
+
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
5797
|
+
"inheritedFrom": {
|
|
5798
|
+
"name": "FoundationElement",
|
|
5799
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
5800
|
+
}
|
|
5801
|
+
}
|
|
5802
|
+
],
|
|
5803
|
+
"superclass": {
|
|
5804
|
+
"name": "FoundationElement",
|
|
5805
|
+
"package": "@microsoft/fast-foundation"
|
|
5806
|
+
},
|
|
5807
|
+
"tagName": "%%prefix%%-grid-pro-action-renderer",
|
|
5808
|
+
"customElement": true
|
|
5809
|
+
},
|
|
5810
|
+
{
|
|
5811
|
+
"kind": "variable",
|
|
5812
|
+
"name": "actionHeightMultiplier",
|
|
5813
|
+
"description": "The base height multiplier for the action renderer.",
|
|
5814
|
+
"privacy": "public"
|
|
5815
|
+
},
|
|
5816
|
+
{
|
|
5817
|
+
"kind": "variable",
|
|
5818
|
+
"name": "agActionRendererStyles",
|
|
5819
|
+
"default": "css`\n .action-container {\n align-items: center;\n display: flex;\n height: 100%;\n justify-content: center;\n }\n .action-renderer {\n align-self: center;\n color: var(--accent-foreground-rest);\n display: flex;\n height: calc(\n (var(--base-height-multiplier) + var(--density)) * var(--design-unit) *\n var(--action-height-multiplier)\n );\n }\n`",
|
|
5820
|
+
"description": "The AG Action Renderer Styles.",
|
|
5821
|
+
"privacy": "public"
|
|
5822
|
+
},
|
|
5823
|
+
{
|
|
5824
|
+
"kind": "variable",
|
|
5825
|
+
"name": "foundationGridProActionRenderer",
|
|
5826
|
+
"description": "A function that returns a Foundation Action Renderer for configuring the component with a DesignSystem.",
|
|
5827
|
+
"privacy": "public"
|
|
5828
|
+
}
|
|
5829
|
+
],
|
|
5830
|
+
"exports": [
|
|
5831
|
+
{
|
|
5832
|
+
"kind": "js",
|
|
5833
|
+
"name": "ActionRenderer",
|
|
5834
|
+
"declaration": {
|
|
5835
|
+
"name": "ActionRenderer",
|
|
5836
|
+
"module": "src/cell-renderers/action.renderer.ts"
|
|
5837
|
+
}
|
|
5838
|
+
},
|
|
5839
|
+
{
|
|
5840
|
+
"kind": "js",
|
|
5841
|
+
"name": "actionHeightMultiplier",
|
|
5842
|
+
"declaration": {
|
|
5843
|
+
"name": "actionHeightMultiplier",
|
|
5844
|
+
"module": "src/cell-renderers/action.renderer.ts"
|
|
5845
|
+
}
|
|
5846
|
+
},
|
|
5847
|
+
{
|
|
5848
|
+
"kind": "js",
|
|
5849
|
+
"name": "agActionRendererStyles",
|
|
5850
|
+
"declaration": {
|
|
5851
|
+
"name": "agActionRendererStyles",
|
|
5852
|
+
"module": "src/cell-renderers/action.renderer.ts"
|
|
5853
|
+
}
|
|
5854
|
+
},
|
|
5855
|
+
{
|
|
5856
|
+
"kind": "js",
|
|
5857
|
+
"name": "foundationGridProActionRenderer",
|
|
5858
|
+
"declaration": {
|
|
5859
|
+
"name": "foundationGridProActionRenderer",
|
|
5860
|
+
"module": "src/cell-renderers/action.renderer.ts"
|
|
5861
|
+
}
|
|
5862
|
+
}
|
|
5863
|
+
]
|
|
5864
|
+
},
|
|
5865
|
+
{
|
|
5866
|
+
"kind": "javascript-module",
|
|
5867
|
+
"path": "src/cell-renderers/actions-menu.renderer.ts",
|
|
5868
|
+
"declarations": [
|
|
5869
|
+
{
|
|
5870
|
+
"kind": "class",
|
|
5871
|
+
"description": "The Actions Menu Renderer element.",
|
|
5872
|
+
"name": "ActionsMenuRenderer",
|
|
5873
|
+
"members": [
|
|
5874
|
+
{
|
|
5875
|
+
"kind": "field",
|
|
5876
|
+
"name": "params",
|
|
5877
|
+
"type": {
|
|
5878
|
+
"text": "ICellRendererParams"
|
|
5879
|
+
},
|
|
5880
|
+
"privacy": "public"
|
|
5881
|
+
},
|
|
5882
|
+
{
|
|
5883
|
+
"kind": "method",
|
|
5884
|
+
"name": "init",
|
|
5885
|
+
"privacy": "public",
|
|
5886
|
+
"parameters": [
|
|
5887
|
+
{
|
|
5888
|
+
"name": "params",
|
|
5889
|
+
"type": {
|
|
5890
|
+
"text": "ICellRendererParams"
|
|
5891
|
+
}
|
|
5892
|
+
}
|
|
5893
|
+
]
|
|
5894
|
+
},
|
|
5895
|
+
{
|
|
5896
|
+
"kind": "method",
|
|
5897
|
+
"name": "getGui",
|
|
5898
|
+
"privacy": "public",
|
|
5899
|
+
"return": {
|
|
5900
|
+
"type": {
|
|
5901
|
+
"text": "HTMLElement"
|
|
5902
|
+
}
|
|
5903
|
+
}
|
|
5904
|
+
},
|
|
5905
|
+
{
|
|
5906
|
+
"kind": "method",
|
|
5907
|
+
"name": "refresh",
|
|
5908
|
+
"privacy": "public",
|
|
5909
|
+
"parameters": [
|
|
5910
|
+
{
|
|
5911
|
+
"name": "params",
|
|
5912
|
+
"type": {
|
|
5913
|
+
"text": "ICellRendererParams"
|
|
5914
|
+
}
|
|
5915
|
+
}
|
|
5916
|
+
]
|
|
5917
|
+
},
|
|
5918
|
+
{
|
|
5919
|
+
"kind": "field",
|
|
5920
|
+
"name": "_presentation",
|
|
5921
|
+
"type": {
|
|
5922
|
+
"text": "ComponentPresentation | null | undefined"
|
|
5923
|
+
},
|
|
5924
|
+
"privacy": "private",
|
|
5925
|
+
"default": "void 0",
|
|
5926
|
+
"inheritedFrom": {
|
|
5927
|
+
"name": "FoundationElement",
|
|
5928
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
5929
|
+
}
|
|
5930
|
+
},
|
|
5931
|
+
{
|
|
5932
|
+
"kind": "field",
|
|
5933
|
+
"name": "$presentation",
|
|
5644
5934
|
"type": {
|
|
5645
5935
|
"text": "ComponentPresentation | null"
|
|
5646
5936
|
},
|
|
@@ -7793,616 +8083,303 @@
|
|
|
7793
8083
|
},
|
|
7794
8084
|
{
|
|
7795
8085
|
"kind": "javascript-module",
|
|
7796
|
-
"path": "src/
|
|
8086
|
+
"path": "src/datasource/base.datasource.ts",
|
|
7797
8087
|
"declarations": [
|
|
7798
8088
|
{
|
|
7799
8089
|
"kind": "variable",
|
|
7800
|
-
"name": "
|
|
7801
|
-
"
|
|
7802
|
-
|
|
8090
|
+
"name": "criteriaDelimiter",
|
|
8091
|
+
"type": {
|
|
8092
|
+
"text": "string"
|
|
8093
|
+
},
|
|
8094
|
+
"default": "';'",
|
|
8095
|
+
"description": "The delimiter for the criteria string.",
|
|
7803
8096
|
"privacy": "public"
|
|
7804
|
-
}
|
|
7805
|
-
],
|
|
7806
|
-
"exports": [
|
|
8097
|
+
},
|
|
7807
8098
|
{
|
|
7808
|
-
"kind": "
|
|
7809
|
-
"name": "
|
|
7810
|
-
"
|
|
7811
|
-
"
|
|
7812
|
-
|
|
7813
|
-
|
|
7814
|
-
|
|
7815
|
-
|
|
7816
|
-
|
|
7817
|
-
{
|
|
7818
|
-
"kind": "javascript-module",
|
|
7819
|
-
"path": "src/column/column.ts",
|
|
7820
|
-
"declarations": [
|
|
8099
|
+
"kind": "variable",
|
|
8100
|
+
"name": "criteriaJoin",
|
|
8101
|
+
"type": {
|
|
8102
|
+
"text": "string"
|
|
8103
|
+
},
|
|
8104
|
+
"default": "' && '",
|
|
8105
|
+
"description": "The join for the criteria string.",
|
|
8106
|
+
"privacy": "public"
|
|
8107
|
+
},
|
|
7821
8108
|
{
|
|
7822
8109
|
"kind": "class",
|
|
7823
|
-
"description": "The
|
|
7824
|
-
"name": "
|
|
8110
|
+
"description": "The base datasource element for the grid-pro element.",
|
|
8111
|
+
"name": "GenesisGridDatasourceElement",
|
|
7825
8112
|
"members": [
|
|
7826
8113
|
{
|
|
7827
8114
|
"kind": "field",
|
|
7828
|
-
"name": "
|
|
8115
|
+
"name": "connect",
|
|
7829
8116
|
"type": {
|
|
7830
|
-
"text": "
|
|
8117
|
+
"text": "Connect"
|
|
8118
|
+
}
|
|
8119
|
+
},
|
|
8120
|
+
{
|
|
8121
|
+
"kind": "field",
|
|
8122
|
+
"name": "datasource",
|
|
8123
|
+
"type": {
|
|
8124
|
+
"text": "Datasource"
|
|
8125
|
+
}
|
|
8126
|
+
},
|
|
8127
|
+
{
|
|
8128
|
+
"kind": "field",
|
|
8129
|
+
"name": "deferredGridOptions",
|
|
8130
|
+
"type": {
|
|
8131
|
+
"text": "GridOptions"
|
|
8132
|
+
}
|
|
8133
|
+
},
|
|
8134
|
+
{
|
|
8135
|
+
"kind": "field",
|
|
8136
|
+
"name": "deferredColumnStates",
|
|
8137
|
+
"type": {
|
|
8138
|
+
"text": "ColumnState[]"
|
|
8139
|
+
}
|
|
8140
|
+
},
|
|
8141
|
+
{
|
|
8142
|
+
"kind": "field",
|
|
8143
|
+
"name": "rowDataMapper",
|
|
8144
|
+
"type": {
|
|
8145
|
+
"text": "Function"
|
|
7831
8146
|
},
|
|
7832
|
-
"
|
|
8147
|
+
"description": "Allows grid data updates to be processed via and external function before applying in grid"
|
|
7833
8148
|
},
|
|
7834
8149
|
{
|
|
7835
8150
|
"kind": "field",
|
|
7836
|
-
"name": "
|
|
8151
|
+
"name": "criteria",
|
|
7837
8152
|
"type": {
|
|
7838
|
-
"text": "
|
|
8153
|
+
"text": "string"
|
|
7839
8154
|
},
|
|
7840
|
-
"
|
|
8155
|
+
"description": "Groovy expression to perform filters on the query server; these remain active for the life of the subscription."
|
|
7841
8156
|
},
|
|
7842
8157
|
{
|
|
7843
|
-
"kind": "
|
|
7844
|
-
"name": "
|
|
7845
|
-
"
|
|
8158
|
+
"kind": "field",
|
|
8159
|
+
"name": "isSnapshot",
|
|
8160
|
+
"type": {
|
|
8161
|
+
"text": "boolean"
|
|
8162
|
+
},
|
|
8163
|
+
"default": "false",
|
|
8164
|
+
"description": "Request a snapshot from the server."
|
|
7846
8165
|
},
|
|
7847
8166
|
{
|
|
7848
|
-
"kind": "
|
|
7849
|
-
"name": "
|
|
7850
|
-
"
|
|
7851
|
-
"
|
|
7852
|
-
"text": "Node"
|
|
7853
|
-
}
|
|
8167
|
+
"kind": "field",
|
|
8168
|
+
"name": "maxRows",
|
|
8169
|
+
"type": {
|
|
8170
|
+
"text": "number"
|
|
7854
8171
|
},
|
|
7855
|
-
"
|
|
7856
|
-
"name": "LifecycleMixin",
|
|
7857
|
-
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
7858
|
-
}
|
|
8172
|
+
"description": "Maximum number of rows to be returned as part of the initial message, and as part of any additional MORE_ROWS messages."
|
|
7859
8173
|
},
|
|
7860
8174
|
{
|
|
7861
|
-
"kind": "
|
|
7862
|
-
"name": "
|
|
7863
|
-
"
|
|
7864
|
-
"
|
|
7865
|
-
"text": "Node"
|
|
7866
|
-
}
|
|
8175
|
+
"kind": "field",
|
|
8176
|
+
"name": "orderBy",
|
|
8177
|
+
"type": {
|
|
8178
|
+
"text": "string"
|
|
7867
8179
|
},
|
|
7868
|
-
"
|
|
7869
|
-
{
|
|
7870
|
-
"name": "deep",
|
|
7871
|
-
"optional": true,
|
|
7872
|
-
"type": {
|
|
7873
|
-
"text": "boolean"
|
|
7874
|
-
}
|
|
7875
|
-
}
|
|
7876
|
-
],
|
|
7877
|
-
"inheritedFrom": {
|
|
7878
|
-
"name": "LifecycleMixin",
|
|
7879
|
-
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
7880
|
-
}
|
|
8180
|
+
"description": "Option to select a Data Server index (defined in the Data Server query), which is especially useful if you want the data to be sorted in a specific way."
|
|
7881
8181
|
},
|
|
7882
8182
|
{
|
|
7883
8183
|
"kind": "field",
|
|
7884
|
-
"name": "
|
|
7885
|
-
"
|
|
7886
|
-
"
|
|
7887
|
-
"text": ""
|
|
7888
|
-
}
|
|
8184
|
+
"name": "resourceName",
|
|
8185
|
+
"type": {
|
|
8186
|
+
"text": "string"
|
|
7889
8187
|
},
|
|
7890
|
-
"
|
|
7891
|
-
"inheritedFrom": {
|
|
7892
|
-
"name": "LifecycleMixin",
|
|
7893
|
-
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
7894
|
-
}
|
|
8188
|
+
"description": "The name of the target Data Server query or Request Server requestReply."
|
|
7895
8189
|
},
|
|
7896
8190
|
{
|
|
7897
8191
|
"kind": "field",
|
|
7898
|
-
"name": "
|
|
7899
|
-
"
|
|
7900
|
-
"
|
|
7901
|
-
"text": ""
|
|
7902
|
-
}
|
|
8192
|
+
"name": "viewNumber",
|
|
8193
|
+
"type": {
|
|
8194
|
+
"text": "number"
|
|
7903
8195
|
},
|
|
7904
|
-
"
|
|
7905
|
-
"inheritedFrom": {
|
|
7906
|
-
"name": "LifecycleMixin",
|
|
7907
|
-
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
7908
|
-
}
|
|
8196
|
+
"description": "The desired view/page you want data from."
|
|
7909
8197
|
},
|
|
7910
8198
|
{
|
|
7911
|
-
"kind": "
|
|
7912
|
-
"name": "
|
|
7913
|
-
"
|
|
7914
|
-
"
|
|
7915
|
-
"text": "boolean"
|
|
7916
|
-
}
|
|
8199
|
+
"kind": "field",
|
|
8200
|
+
"name": "fields",
|
|
8201
|
+
"type": {
|
|
8202
|
+
"text": "string"
|
|
7917
8203
|
},
|
|
7918
|
-
"
|
|
7919
|
-
{
|
|
7920
|
-
"name": "lifecycleType",
|
|
7921
|
-
"type": {
|
|
7922
|
-
"text": "Lifecycletype"
|
|
7923
|
-
}
|
|
7924
|
-
}
|
|
7925
|
-
],
|
|
7926
|
-
"inheritedFrom": {
|
|
7927
|
-
"name": "LifecycleMixin",
|
|
7928
|
-
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
7929
|
-
}
|
|
8204
|
+
"description": "Optional parameter that allows you to select a subset of fields from the query if the client is not interested in receiving all of them."
|
|
7930
8205
|
},
|
|
7931
8206
|
{
|
|
7932
8207
|
"kind": "field",
|
|
7933
|
-
"name": "
|
|
8208
|
+
"name": "maxView",
|
|
7934
8209
|
"type": {
|
|
7935
|
-
"text": "
|
|
8210
|
+
"text": "number"
|
|
7936
8211
|
},
|
|
7937
|
-
"
|
|
7938
|
-
"default": "void 0",
|
|
7939
|
-
"inheritedFrom": {
|
|
7940
|
-
"name": "FoundationElement",
|
|
7941
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
7942
|
-
}
|
|
8212
|
+
"description": "Maximum number of rows to track as part of a client \"view\"."
|
|
7943
8213
|
},
|
|
7944
8214
|
{
|
|
7945
8215
|
"kind": "field",
|
|
7946
|
-
"name": "
|
|
8216
|
+
"name": "movingView",
|
|
7947
8217
|
"type": {
|
|
7948
|
-
"text": "
|
|
8218
|
+
"text": "boolean"
|
|
7949
8219
|
},
|
|
7950
|
-
"
|
|
7951
|
-
"description": "
|
|
7952
|
-
"inheritedFrom": {
|
|
7953
|
-
"name": "FoundationElement",
|
|
7954
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
7955
|
-
}
|
|
8220
|
+
"default": "false",
|
|
8221
|
+
"description": "If true, when the maximum number of rows defined in max-view is reached, the Data Server will start discarding the oldest rows (in terms of timestamp) and sending newer rows."
|
|
7956
8222
|
},
|
|
7957
8223
|
{
|
|
7958
8224
|
"kind": "field",
|
|
7959
|
-
"name": "
|
|
8225
|
+
"name": "reverse",
|
|
7960
8226
|
"type": {
|
|
7961
|
-
"text": "
|
|
8227
|
+
"text": "boolean"
|
|
7962
8228
|
},
|
|
7963
|
-
"
|
|
7964
|
-
"description": "
|
|
7965
|
-
"inheritedFrom": {
|
|
7966
|
-
"name": "FoundationElement",
|
|
7967
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
7968
|
-
}
|
|
8229
|
+
"default": "false",
|
|
8230
|
+
"description": "Option that changes the Data Server index iteration."
|
|
7969
8231
|
},
|
|
7970
8232
|
{
|
|
7971
|
-
"kind": "
|
|
7972
|
-
"name": "
|
|
7973
|
-
"
|
|
7974
|
-
|
|
7975
|
-
"type": {
|
|
7976
|
-
"text": "void"
|
|
7977
|
-
}
|
|
8233
|
+
"kind": "field",
|
|
8234
|
+
"name": "disablePolling",
|
|
8235
|
+
"type": {
|
|
8236
|
+
"text": "boolean"
|
|
7978
8237
|
},
|
|
7979
|
-
"
|
|
7980
|
-
|
|
7981
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
7982
|
-
}
|
|
8238
|
+
"default": "false",
|
|
8239
|
+
"description": "Disables polling if set to true (data updates for the grid will not be fetched automatically)."
|
|
7983
8240
|
},
|
|
7984
8241
|
{
|
|
7985
8242
|
"kind": "field",
|
|
7986
|
-
"name": "
|
|
8243
|
+
"name": "offset",
|
|
7987
8244
|
"type": {
|
|
7988
|
-
"text": "
|
|
8245
|
+
"text": "number"
|
|
7989
8246
|
},
|
|
7990
|
-
"
|
|
7991
|
-
"description": "Sets the default styles for the element instance. When undefined,\nthe element will attempt to resolve default styles from\nthe associated presentation or custom element definition.",
|
|
7992
|
-
"inheritedFrom": {
|
|
7993
|
-
"name": "FoundationElement",
|
|
7994
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
7995
|
-
}
|
|
8247
|
+
"description": "The offset for pagination in REQUEST_SERVER scenarios."
|
|
7996
8248
|
},
|
|
7997
8249
|
{
|
|
7998
|
-
"kind": "
|
|
7999
|
-
"name": "
|
|
8000
|
-
"
|
|
8001
|
-
|
|
8002
|
-
"type": {
|
|
8003
|
-
"text": "void"
|
|
8004
|
-
}
|
|
8250
|
+
"kind": "field",
|
|
8251
|
+
"name": "pollingInterval",
|
|
8252
|
+
"type": {
|
|
8253
|
+
"text": "number"
|
|
8005
8254
|
},
|
|
8006
|
-
"
|
|
8007
|
-
"name": "FoundationElement",
|
|
8008
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
8009
|
-
}
|
|
8255
|
+
"description": "Custom polling frequency (in milliseconds) for a Request Server resource."
|
|
8010
8256
|
},
|
|
8011
|
-
{
|
|
8012
|
-
"kind": "method",
|
|
8013
|
-
"name": "compose",
|
|
8014
|
-
"privacy": "public",
|
|
8015
|
-
"static": true,
|
|
8016
|
-
"return": {
|
|
8017
|
-
"type": {
|
|
8018
|
-
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
8019
|
-
}
|
|
8020
|
-
},
|
|
8021
|
-
"parameters": [
|
|
8022
|
-
{
|
|
8023
|
-
"name": "this",
|
|
8024
|
-
"type": {
|
|
8025
|
-
"text": "K"
|
|
8026
|
-
}
|
|
8027
|
-
},
|
|
8028
|
-
{
|
|
8029
|
-
"name": "elementDefinition",
|
|
8030
|
-
"type": {
|
|
8031
|
-
"text": "T"
|
|
8032
|
-
},
|
|
8033
|
-
"description": "The definition of the element to create the registry\nfunction for."
|
|
8034
|
-
}
|
|
8035
|
-
],
|
|
8036
|
-
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
8037
|
-
"inheritedFrom": {
|
|
8038
|
-
"name": "FoundationElement",
|
|
8039
|
-
"module": "src/foundation-element/foundation-element.ts"
|
|
8040
|
-
}
|
|
8041
|
-
}
|
|
8042
|
-
],
|
|
8043
|
-
"mixins": [
|
|
8044
|
-
{
|
|
8045
|
-
"name": "LifecycleMixin",
|
|
8046
|
-
"package": "@genesislcap/foundation-utils"
|
|
8047
|
-
}
|
|
8048
|
-
],
|
|
8049
|
-
"superclass": {
|
|
8050
|
-
"name": "FoundationElement",
|
|
8051
|
-
"package": "@microsoft/fast-foundation"
|
|
8052
|
-
},
|
|
8053
|
-
"tagName": "grid-pro-column",
|
|
8054
|
-
"customElement": true
|
|
8055
|
-
}
|
|
8056
|
-
],
|
|
8057
|
-
"exports": [
|
|
8058
|
-
{
|
|
8059
|
-
"kind": "js",
|
|
8060
|
-
"name": "GridProColumn",
|
|
8061
|
-
"declaration": {
|
|
8062
|
-
"name": "GridProColumn",
|
|
8063
|
-
"module": "src/column/column.ts"
|
|
8064
|
-
}
|
|
8065
|
-
},
|
|
8066
|
-
{
|
|
8067
|
-
"kind": "custom-element-definition",
|
|
8068
|
-
"name": "grid-pro-column",
|
|
8069
|
-
"declaration": {
|
|
8070
|
-
"name": "GridProColumn",
|
|
8071
|
-
"module": "src/column/column.ts"
|
|
8072
|
-
}
|
|
8073
|
-
}
|
|
8074
|
-
]
|
|
8075
|
-
},
|
|
8076
|
-
{
|
|
8077
|
-
"kind": "javascript-module",
|
|
8078
|
-
"path": "src/column/index.ts",
|
|
8079
|
-
"declarations": [],
|
|
8080
|
-
"exports": [
|
|
8081
|
-
{
|
|
8082
|
-
"kind": "js",
|
|
8083
|
-
"name": "*",
|
|
8084
|
-
"declaration": {
|
|
8085
|
-
"name": "*",
|
|
8086
|
-
"package": "./column.template"
|
|
8087
|
-
}
|
|
8088
|
-
},
|
|
8089
|
-
{
|
|
8090
|
-
"kind": "js",
|
|
8091
|
-
"name": "*",
|
|
8092
|
-
"declaration": {
|
|
8093
|
-
"name": "*",
|
|
8094
|
-
"package": "./column"
|
|
8095
|
-
}
|
|
8096
|
-
},
|
|
8097
|
-
{
|
|
8098
|
-
"kind": "js",
|
|
8099
|
-
"name": "*",
|
|
8100
|
-
"declaration": {
|
|
8101
|
-
"name": "*",
|
|
8102
|
-
"package": "./utils"
|
|
8103
|
-
}
|
|
8104
|
-
}
|
|
8105
|
-
]
|
|
8106
|
-
},
|
|
8107
|
-
{
|
|
8108
|
-
"kind": "javascript-module",
|
|
8109
|
-
"path": "src/datasource/base.datasource.ts",
|
|
8110
|
-
"declarations": [
|
|
8111
|
-
{
|
|
8112
|
-
"kind": "variable",
|
|
8113
|
-
"name": "criteriaDelimiter",
|
|
8114
|
-
"type": {
|
|
8115
|
-
"text": "string"
|
|
8116
|
-
},
|
|
8117
|
-
"default": "';'",
|
|
8118
|
-
"description": "The delimiter for the criteria string.",
|
|
8119
|
-
"privacy": "public"
|
|
8120
|
-
},
|
|
8121
|
-
{
|
|
8122
|
-
"kind": "variable",
|
|
8123
|
-
"name": "criteriaJoin",
|
|
8124
|
-
"type": {
|
|
8125
|
-
"text": "string"
|
|
8126
|
-
},
|
|
8127
|
-
"default": "' && '",
|
|
8128
|
-
"description": "The join for the criteria string.",
|
|
8129
|
-
"privacy": "public"
|
|
8130
|
-
},
|
|
8131
|
-
{
|
|
8132
|
-
"kind": "class",
|
|
8133
|
-
"description": "The base datasource element for the grid-pro element.",
|
|
8134
|
-
"name": "GenesisGridDatasourceElement",
|
|
8135
|
-
"members": [
|
|
8136
8257
|
{
|
|
8137
8258
|
"kind": "field",
|
|
8138
|
-
"name": "
|
|
8259
|
+
"name": "pollTriggerEvents",
|
|
8139
8260
|
"type": {
|
|
8140
|
-
"text": "
|
|
8141
|
-
}
|
|
8261
|
+
"text": "string[]"
|
|
8262
|
+
},
|
|
8263
|
+
"default": "[]",
|
|
8264
|
+
"description": "Array of event names that will trigger a poll when received as commit responses."
|
|
8142
8265
|
},
|
|
8143
8266
|
{
|
|
8144
8267
|
"kind": "field",
|
|
8145
|
-
"name": "
|
|
8268
|
+
"name": "request",
|
|
8146
8269
|
"type": {
|
|
8147
|
-
"text": "
|
|
8148
|
-
}
|
|
8270
|
+
"text": "any"
|
|
8271
|
+
},
|
|
8272
|
+
"description": "Similar to fields but for Request Server scenarios. This optional parameter enables you to specify request fields, which can include wildcards."
|
|
8149
8273
|
},
|
|
8150
8274
|
{
|
|
8151
8275
|
"kind": "field",
|
|
8152
|
-
"name": "
|
|
8276
|
+
"name": "requestAutoSetup",
|
|
8153
8277
|
"type": {
|
|
8154
|
-
"text": "
|
|
8155
|
-
}
|
|
8278
|
+
"text": "boolean"
|
|
8279
|
+
},
|
|
8280
|
+
"default": "true",
|
|
8281
|
+
"description": "Attribute to set whether the REQUEST object should be automatically set up."
|
|
8156
8282
|
},
|
|
8157
8283
|
{
|
|
8158
8284
|
"kind": "field",
|
|
8159
|
-
"name": "
|
|
8160
|
-
"
|
|
8161
|
-
"text": "ColumnState[]"
|
|
8162
|
-
}
|
|
8285
|
+
"name": "rowIdAttr",
|
|
8286
|
+
"description": "Attribute to set an unique identifier for the row.\n\nDefaults to `ROW_REF` or `RECORD_ID` depending on the resource type."
|
|
8163
8287
|
},
|
|
8164
8288
|
{
|
|
8165
8289
|
"kind": "field",
|
|
8166
|
-
"name": "
|
|
8290
|
+
"name": "restartOnReconnection",
|
|
8167
8291
|
"type": {
|
|
8168
|
-
"text": "
|
|
8292
|
+
"text": "boolean"
|
|
8169
8293
|
},
|
|
8170
|
-
"
|
|
8294
|
+
"default": "true",
|
|
8295
|
+
"description": "Attribute to set whether the datasource should restart when it reconnects."
|
|
8171
8296
|
},
|
|
8172
8297
|
{
|
|
8173
8298
|
"kind": "field",
|
|
8174
|
-
"name": "
|
|
8299
|
+
"name": "defaultRowIdByResourceType",
|
|
8175
8300
|
"type": {
|
|
8176
8301
|
"text": "string"
|
|
8177
8302
|
},
|
|
8178
|
-
"
|
|
8303
|
+
"privacy": "protected",
|
|
8304
|
+
"readonly": true
|
|
8179
8305
|
},
|
|
8180
8306
|
{
|
|
8181
8307
|
"kind": "field",
|
|
8182
|
-
"name": "
|
|
8308
|
+
"name": "criteriaFromFilters",
|
|
8183
8309
|
"type": {
|
|
8184
|
-
"text": "
|
|
8310
|
+
"text": "Map<string, string>"
|
|
8185
8311
|
},
|
|
8186
|
-
"
|
|
8187
|
-
"
|
|
8312
|
+
"privacy": "protected",
|
|
8313
|
+
"default": "new Map()"
|
|
8188
8314
|
},
|
|
8189
8315
|
{
|
|
8190
8316
|
"kind": "field",
|
|
8191
|
-
"name": "
|
|
8317
|
+
"name": "update",
|
|
8192
8318
|
"type": {
|
|
8193
|
-
"text": "
|
|
8319
|
+
"text": "BehaviorSubject<Map<string, string>>"
|
|
8194
8320
|
},
|
|
8195
|
-
"
|
|
8321
|
+
"privacy": "protected",
|
|
8322
|
+
"default": "new BehaviorSubject(new Map())"
|
|
8196
8323
|
},
|
|
8197
8324
|
{
|
|
8198
|
-
"kind": "
|
|
8199
|
-
"name": "
|
|
8200
|
-
"
|
|
8201
|
-
|
|
8202
|
-
|
|
8203
|
-
|
|
8325
|
+
"kind": "method",
|
|
8326
|
+
"name": "datasourceOptions",
|
|
8327
|
+
"privacy": "protected",
|
|
8328
|
+
"return": {
|
|
8329
|
+
"type": {
|
|
8330
|
+
"text": "DatasourceOptions"
|
|
8331
|
+
}
|
|
8332
|
+
}
|
|
8204
8333
|
},
|
|
8205
8334
|
{
|
|
8206
|
-
"kind": "
|
|
8207
|
-
"name": "
|
|
8208
|
-
"
|
|
8209
|
-
|
|
8210
|
-
|
|
8211
|
-
|
|
8335
|
+
"kind": "method",
|
|
8336
|
+
"name": "buildCriteria",
|
|
8337
|
+
"privacy": "private",
|
|
8338
|
+
"return": {
|
|
8339
|
+
"type": {
|
|
8340
|
+
"text": "string"
|
|
8341
|
+
}
|
|
8342
|
+
}
|
|
8212
8343
|
},
|
|
8213
8344
|
{
|
|
8214
|
-
"kind": "
|
|
8215
|
-
"name": "
|
|
8216
|
-
"
|
|
8217
|
-
|
|
8218
|
-
|
|
8219
|
-
|
|
8345
|
+
"kind": "method",
|
|
8346
|
+
"name": "setFilter",
|
|
8347
|
+
"privacy": "public",
|
|
8348
|
+
"parameters": [
|
|
8349
|
+
{
|
|
8350
|
+
"name": "fieldName",
|
|
8351
|
+
"type": {
|
|
8352
|
+
"text": "string"
|
|
8353
|
+
}
|
|
8354
|
+
},
|
|
8355
|
+
{
|
|
8356
|
+
"name": "newFilter",
|
|
8357
|
+
"type": {
|
|
8358
|
+
"text": "string"
|
|
8359
|
+
}
|
|
8360
|
+
}
|
|
8361
|
+
]
|
|
8220
8362
|
},
|
|
8221
8363
|
{
|
|
8222
|
-
"kind": "
|
|
8223
|
-
"name": "
|
|
8224
|
-
"
|
|
8225
|
-
|
|
8226
|
-
|
|
8227
|
-
|
|
8364
|
+
"kind": "method",
|
|
8365
|
+
"name": "removeFilter",
|
|
8366
|
+
"privacy": "public",
|
|
8367
|
+
"parameters": [
|
|
8368
|
+
{
|
|
8369
|
+
"name": "fieldName",
|
|
8370
|
+
"type": {
|
|
8371
|
+
"text": "string"
|
|
8372
|
+
}
|
|
8373
|
+
}
|
|
8374
|
+
]
|
|
8228
8375
|
},
|
|
8229
8376
|
{
|
|
8230
8377
|
"kind": "field",
|
|
8231
|
-
"name": "
|
|
8378
|
+
"name": "isRequestServer",
|
|
8232
8379
|
"type": {
|
|
8233
|
-
"text": "
|
|
8380
|
+
"text": "boolean"
|
|
8234
8381
|
},
|
|
8235
|
-
"
|
|
8236
|
-
},
|
|
8237
|
-
{
|
|
8238
|
-
"kind": "field",
|
|
8239
|
-
"name": "movingView",
|
|
8240
|
-
"type": {
|
|
8241
|
-
"text": "boolean"
|
|
8242
|
-
},
|
|
8243
|
-
"default": "false",
|
|
8244
|
-
"description": "If true, when the maximum number of rows defined in max-view is reached, the Data Server will start discarding the oldest rows (in terms of timestamp) and sending newer rows."
|
|
8245
|
-
},
|
|
8246
|
-
{
|
|
8247
|
-
"kind": "field",
|
|
8248
|
-
"name": "reverse",
|
|
8249
|
-
"type": {
|
|
8250
|
-
"text": "boolean"
|
|
8251
|
-
},
|
|
8252
|
-
"default": "false",
|
|
8253
|
-
"description": "Option that changes the Data Server index iteration."
|
|
8254
|
-
},
|
|
8255
|
-
{
|
|
8256
|
-
"kind": "field",
|
|
8257
|
-
"name": "disablePolling",
|
|
8258
|
-
"type": {
|
|
8259
|
-
"text": "boolean"
|
|
8260
|
-
},
|
|
8261
|
-
"default": "false",
|
|
8262
|
-
"description": "Disables polling if set to true (data updates for the grid will not be fetched automatically)."
|
|
8263
|
-
},
|
|
8264
|
-
{
|
|
8265
|
-
"kind": "field",
|
|
8266
|
-
"name": "offset",
|
|
8267
|
-
"type": {
|
|
8268
|
-
"text": "number"
|
|
8269
|
-
},
|
|
8270
|
-
"description": "The offset for pagination in REQUEST_SERVER scenarios."
|
|
8271
|
-
},
|
|
8272
|
-
{
|
|
8273
|
-
"kind": "field",
|
|
8274
|
-
"name": "pollingInterval",
|
|
8275
|
-
"type": {
|
|
8276
|
-
"text": "number"
|
|
8277
|
-
},
|
|
8278
|
-
"description": "Custom polling frequency (in milliseconds) for a Request Server resource."
|
|
8279
|
-
},
|
|
8280
|
-
{
|
|
8281
|
-
"kind": "field",
|
|
8282
|
-
"name": "pollTriggerEvents",
|
|
8283
|
-
"type": {
|
|
8284
|
-
"text": "string[]"
|
|
8285
|
-
},
|
|
8286
|
-
"default": "[]",
|
|
8287
|
-
"description": "Array of event names that will trigger a poll when received as commit responses."
|
|
8288
|
-
},
|
|
8289
|
-
{
|
|
8290
|
-
"kind": "field",
|
|
8291
|
-
"name": "request",
|
|
8292
|
-
"type": {
|
|
8293
|
-
"text": "any"
|
|
8294
|
-
},
|
|
8295
|
-
"description": "Similar to fields but for Request Server scenarios. This optional parameter enables you to specify request fields, which can include wildcards."
|
|
8296
|
-
},
|
|
8297
|
-
{
|
|
8298
|
-
"kind": "field",
|
|
8299
|
-
"name": "requestAutoSetup",
|
|
8300
|
-
"type": {
|
|
8301
|
-
"text": "boolean"
|
|
8302
|
-
},
|
|
8303
|
-
"default": "true",
|
|
8304
|
-
"description": "Attribute to set whether the REQUEST object should be automatically set up."
|
|
8305
|
-
},
|
|
8306
|
-
{
|
|
8307
|
-
"kind": "field",
|
|
8308
|
-
"name": "rowIdAttr",
|
|
8309
|
-
"description": "Attribute to set an unique identifier for the row.\n\nDefaults to `ROW_REF` or `RECORD_ID` depending on the resource type."
|
|
8310
|
-
},
|
|
8311
|
-
{
|
|
8312
|
-
"kind": "field",
|
|
8313
|
-
"name": "restartOnReconnection",
|
|
8314
|
-
"type": {
|
|
8315
|
-
"text": "boolean"
|
|
8316
|
-
},
|
|
8317
|
-
"default": "true",
|
|
8318
|
-
"description": "Attribute to set whether the datasource should restart when it reconnects."
|
|
8319
|
-
},
|
|
8320
|
-
{
|
|
8321
|
-
"kind": "field",
|
|
8322
|
-
"name": "defaultRowIdByResourceType",
|
|
8323
|
-
"type": {
|
|
8324
|
-
"text": "string"
|
|
8325
|
-
},
|
|
8326
|
-
"privacy": "protected",
|
|
8327
|
-
"readonly": true
|
|
8328
|
-
},
|
|
8329
|
-
{
|
|
8330
|
-
"kind": "field",
|
|
8331
|
-
"name": "criteriaFromFilters",
|
|
8332
|
-
"type": {
|
|
8333
|
-
"text": "Map<string, string>"
|
|
8334
|
-
},
|
|
8335
|
-
"privacy": "protected",
|
|
8336
|
-
"default": "new Map()"
|
|
8337
|
-
},
|
|
8338
|
-
{
|
|
8339
|
-
"kind": "field",
|
|
8340
|
-
"name": "update",
|
|
8341
|
-
"type": {
|
|
8342
|
-
"text": "BehaviorSubject<Map<string, string>>"
|
|
8343
|
-
},
|
|
8344
|
-
"privacy": "protected",
|
|
8345
|
-
"default": "new BehaviorSubject(new Map())"
|
|
8346
|
-
},
|
|
8347
|
-
{
|
|
8348
|
-
"kind": "method",
|
|
8349
|
-
"name": "datasourceOptions",
|
|
8350
|
-
"privacy": "protected",
|
|
8351
|
-
"return": {
|
|
8352
|
-
"type": {
|
|
8353
|
-
"text": "DatasourceOptions"
|
|
8354
|
-
}
|
|
8355
|
-
}
|
|
8356
|
-
},
|
|
8357
|
-
{
|
|
8358
|
-
"kind": "method",
|
|
8359
|
-
"name": "buildCriteria",
|
|
8360
|
-
"privacy": "private",
|
|
8361
|
-
"return": {
|
|
8362
|
-
"type": {
|
|
8363
|
-
"text": "string"
|
|
8364
|
-
}
|
|
8365
|
-
}
|
|
8366
|
-
},
|
|
8367
|
-
{
|
|
8368
|
-
"kind": "method",
|
|
8369
|
-
"name": "setFilter",
|
|
8370
|
-
"privacy": "public",
|
|
8371
|
-
"parameters": [
|
|
8372
|
-
{
|
|
8373
|
-
"name": "fieldName",
|
|
8374
|
-
"type": {
|
|
8375
|
-
"text": "string"
|
|
8376
|
-
}
|
|
8377
|
-
},
|
|
8378
|
-
{
|
|
8379
|
-
"name": "newFilter",
|
|
8380
|
-
"type": {
|
|
8381
|
-
"text": "string"
|
|
8382
|
-
}
|
|
8383
|
-
}
|
|
8384
|
-
]
|
|
8385
|
-
},
|
|
8386
|
-
{
|
|
8387
|
-
"kind": "method",
|
|
8388
|
-
"name": "removeFilter",
|
|
8389
|
-
"privacy": "public",
|
|
8390
|
-
"parameters": [
|
|
8391
|
-
{
|
|
8392
|
-
"name": "fieldName",
|
|
8393
|
-
"type": {
|
|
8394
|
-
"text": "string"
|
|
8395
|
-
}
|
|
8396
|
-
}
|
|
8397
|
-
]
|
|
8398
|
-
},
|
|
8399
|
-
{
|
|
8400
|
-
"kind": "field",
|
|
8401
|
-
"name": "isRequestServer",
|
|
8402
|
-
"type": {
|
|
8403
|
-
"text": "boolean"
|
|
8404
|
-
},
|
|
8405
|
-
"readonly": true
|
|
8382
|
+
"readonly": true
|
|
8406
8383
|
},
|
|
8407
8384
|
{
|
|
8408
8385
|
"kind": "method",
|
|
@@ -11790,470 +11767,160 @@
|
|
|
11790
11767
|
"text": ""
|
|
11791
11768
|
}
|
|
11792
11769
|
},
|
|
11793
|
-
"parameters": [
|
|
11794
|
-
{
|
|
11795
|
-
"name": "type",
|
|
11796
|
-
"type": {
|
|
11797
|
-
"text": "string"
|
|
11798
|
-
},
|
|
11799
|
-
"description": "The type of the field/column"
|
|
11800
|
-
}
|
|
11801
|
-
],
|
|
11802
|
-
"description": "Returns a filter type based on the Grid Pro field/column type."
|
|
11803
|
-
},
|
|
11804
|
-
{
|
|
11805
|
-
"kind": "function",
|
|
11806
|
-
"name": "getClientSideFilterParamsByFieldType",
|
|
11807
|
-
"return": {
|
|
11808
|
-
"type": {
|
|
11809
|
-
"text": ""
|
|
11810
|
-
}
|
|
11811
|
-
},
|
|
11812
|
-
"parameters": [
|
|
11813
|
-
{
|
|
11814
|
-
"name": "field",
|
|
11815
|
-
"type": {
|
|
11816
|
-
"text": "FieldMetadata"
|
|
11817
|
-
},
|
|
11818
|
-
"description": "The field metadata"
|
|
11819
|
-
}
|
|
11820
|
-
],
|
|
11821
|
-
"description": "Returns the filter params based on the Grid Pro field/column type."
|
|
11822
|
-
}
|
|
11823
|
-
],
|
|
11824
|
-
"exports": [
|
|
11825
|
-
{
|
|
11826
|
-
"kind": "js",
|
|
11827
|
-
"name": "getFilterByFieldType",
|
|
11828
|
-
"declaration": {
|
|
11829
|
-
"name": "getFilterByFieldType",
|
|
11830
|
-
"module": "src/datasource/client-side.grid-definitions.ts"
|
|
11831
|
-
}
|
|
11832
|
-
},
|
|
11833
|
-
{
|
|
11834
|
-
"kind": "js",
|
|
11835
|
-
"name": "getClientSideFilterParamsByFieldType",
|
|
11836
|
-
"declaration": {
|
|
11837
|
-
"name": "getClientSideFilterParamsByFieldType",
|
|
11838
|
-
"module": "src/datasource/client-side.grid-definitions.ts"
|
|
11839
|
-
}
|
|
11840
|
-
}
|
|
11841
|
-
]
|
|
11842
|
-
},
|
|
11843
|
-
{
|
|
11844
|
-
"kind": "javascript-module",
|
|
11845
|
-
"path": "src/datasource/datasource.types.ts",
|
|
11846
|
-
"declarations": [],
|
|
11847
|
-
"exports": []
|
|
11848
|
-
},
|
|
11849
|
-
{
|
|
11850
|
-
"kind": "javascript-module",
|
|
11851
|
-
"path": "src/datasource/error-handler.dialog.ts",
|
|
11852
|
-
"declarations": [
|
|
11853
|
-
{
|
|
11854
|
-
"kind": "variable",
|
|
11855
|
-
"name": "errorHandlerDialogStyles",
|
|
11856
|
-
"default": "css`\n .overlay {\n position: absolute;\n inset: 0;\n width: 100%;\n height: 100%;\n background-color: var(--datasource-error-background-color, var(--neutral-layer-4));\n opacity: var(--datasource-error-background-opacity, 0.5);\n z-index: 1000;\n pointer-events: auto;\n border-radius: 2px;\n display: flex;\n align-items: center;\n justify-content: center;\n }\n .dialog-container {\n position: absolute;\n left: 50%;\n top: 50%;\n transform: translate(-50%, -50%);\n z-index: 1001;\n max-width: 90vw;\n max-height: 90vh;\n width: 100%;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n opacity: 1 !important;\n filter: none !important;\n box-sizing: border-box;\n }\n .grid-datasource-error-dialog {\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n margin: 0 auto;\n max-width: 600px;\n width: 100%;\n box-sizing: border-box;\n background: var(--dialog-background, #2d2533);\n box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.45);\n overflow: visible;\n min-height: 120px;\n }\n\n .grid-datasource-error-dialog div {\n width: 600px;\n }\n\n .grid-datasource-error-dialog [slot='top'] {\n margin-bottom: 0;\n }\n\n .grid-datasource-error-dialog [slot='bottom'] {\n display: flex;\n justify-content: flex-end;\n width: 100%;\n }\n\n .error-details {\n max-height: 120px;\n overflow: auto;\n width: 100%;\n margin-top: 8px;\n }\n`"
|
|
11857
|
-
},
|
|
11858
|
-
{
|
|
11859
|
-
"kind": "function",
|
|
11860
|
-
"name": "getErrorHandlerDialogTemplate",
|
|
11861
|
-
"parameters": [
|
|
11862
|
-
{
|
|
11863
|
-
"name": "prefix",
|
|
11864
|
-
"type": {
|
|
11865
|
-
"text": "string"
|
|
11866
|
-
}
|
|
11867
|
-
},
|
|
11868
|
-
{
|
|
11869
|
-
"name": "gridErrorItems",
|
|
11870
|
-
"type": {
|
|
11871
|
-
"text": "GridProErrorItem<any>[]"
|
|
11872
|
-
}
|
|
11873
|
-
}
|
|
11874
|
-
]
|
|
11875
|
-
}
|
|
11876
|
-
],
|
|
11877
|
-
"exports": [
|
|
11878
|
-
{
|
|
11879
|
-
"kind": "js",
|
|
11880
|
-
"name": "errorHandlerDialogStyles",
|
|
11881
|
-
"declaration": {
|
|
11882
|
-
"name": "errorHandlerDialogStyles",
|
|
11883
|
-
"module": "src/datasource/error-handler.dialog.ts"
|
|
11884
|
-
}
|
|
11885
|
-
},
|
|
11886
|
-
{
|
|
11887
|
-
"kind": "js",
|
|
11888
|
-
"name": "getErrorHandlerDialogTemplate",
|
|
11889
|
-
"declaration": {
|
|
11890
|
-
"name": "getErrorHandlerDialogTemplate",
|
|
11891
|
-
"module": "src/datasource/error-handler.dialog.ts"
|
|
11892
|
-
}
|
|
11893
|
-
}
|
|
11894
|
-
]
|
|
11895
|
-
},
|
|
11896
|
-
{
|
|
11897
|
-
"kind": "javascript-module",
|
|
11898
|
-
"path": "src/datasource/index.ts",
|
|
11899
|
-
"declarations": [],
|
|
11900
|
-
"exports": [
|
|
11901
|
-
{
|
|
11902
|
-
"kind": "js",
|
|
11903
|
-
"name": "*",
|
|
11904
|
-
"declaration": {
|
|
11905
|
-
"name": "*",
|
|
11906
|
-
"package": "./base.datasource"
|
|
11907
|
-
}
|
|
11908
|
-
},
|
|
11909
|
-
{
|
|
11910
|
-
"kind": "js",
|
|
11911
|
-
"name": "*",
|
|
11912
|
-
"declaration": {
|
|
11913
|
-
"name": "*",
|
|
11914
|
-
"package": "./base.types"
|
|
11915
|
-
}
|
|
11916
|
-
},
|
|
11917
|
-
{
|
|
11918
|
-
"kind": "js",
|
|
11919
|
-
"name": "*",
|
|
11920
|
-
"declaration": {
|
|
11921
|
-
"name": "*",
|
|
11922
|
-
"package": "./client-side.datasource"
|
|
11923
|
-
}
|
|
11924
|
-
},
|
|
11925
|
-
{
|
|
11926
|
-
"kind": "js",
|
|
11927
|
-
"name": "*",
|
|
11928
|
-
"declaration": {
|
|
11929
|
-
"name": "*",
|
|
11930
|
-
"package": "./error-handler.dialog"
|
|
11931
|
-
}
|
|
11932
|
-
},
|
|
11933
|
-
{
|
|
11934
|
-
"kind": "js",
|
|
11935
|
-
"name": "*",
|
|
11936
|
-
"declaration": {
|
|
11937
|
-
"name": "*",
|
|
11938
|
-
"package": "./datasource.types"
|
|
11939
|
-
}
|
|
11940
|
-
},
|
|
11941
|
-
{
|
|
11942
|
-
"kind": "js",
|
|
11943
|
-
"name": "*",
|
|
11944
|
-
"declaration": {
|
|
11945
|
-
"name": "*",
|
|
11946
|
-
"package": "./row-match.types"
|
|
11947
|
-
}
|
|
11948
|
-
},
|
|
11949
|
-
{
|
|
11950
|
-
"kind": "js",
|
|
11951
|
-
"name": "*",
|
|
11952
|
-
"declaration": {
|
|
11953
|
-
"name": "*",
|
|
11954
|
-
"package": "./row-match.tracker"
|
|
11955
|
-
}
|
|
11956
|
-
},
|
|
11957
|
-
{
|
|
11958
|
-
"kind": "js",
|
|
11959
|
-
"name": "*",
|
|
11960
|
-
"declaration": {
|
|
11961
|
-
"name": "*",
|
|
11962
|
-
"package": "./row-match.classes"
|
|
11963
|
-
}
|
|
11964
|
-
},
|
|
11965
|
-
{
|
|
11966
|
-
"kind": "js",
|
|
11967
|
-
"name": "*",
|
|
11968
|
-
"declaration": {
|
|
11969
|
-
"name": "*",
|
|
11970
|
-
"package": "./server-side.datasource"
|
|
11971
|
-
}
|
|
11972
|
-
}
|
|
11973
|
-
]
|
|
11974
|
-
},
|
|
11975
|
-
{
|
|
11976
|
-
"kind": "javascript-module",
|
|
11977
|
-
"path": "src/datasource/row-match.classes.ts",
|
|
11978
|
-
"declarations": [
|
|
11979
|
-
{
|
|
11980
|
-
"kind": "variable",
|
|
11981
|
-
"name": "ROW_MATCH_ALERT_CLASS",
|
|
11982
|
-
"type": {
|
|
11983
|
-
"text": "string"
|
|
11984
|
-
},
|
|
11985
|
-
"default": "'grid-pro-row-alert'",
|
|
11986
|
-
"description": "Class the grid puts on rows satisfying the criteria. The grid's own styles flash it in step\nwith any alerting tab, so a tab that draws you to a grid also shows you which rows caused it.",
|
|
11987
|
-
"privacy": "public"
|
|
11988
|
-
},
|
|
11989
|
-
{
|
|
11990
|
-
"kind": "variable",
|
|
11991
|
-
"name": "ROW_MATCH_ALERT_CELL_CLASS",
|
|
11992
|
-
"type": {
|
|
11993
|
-
"text": "string"
|
|
11994
|
-
},
|
|
11995
|
-
"default": "'grid-pro-row-alert-cell'",
|
|
11996
|
-
"description": "Class the grid puts on just the `flashField` cell of a matching row, for grids that flash a\nsingle column rather than the whole row.",
|
|
11997
|
-
"privacy": "public"
|
|
11998
|
-
},
|
|
11999
|
-
{
|
|
12000
|
-
"kind": "function",
|
|
12001
|
-
"name": "createRowMatchClassRules",
|
|
12002
|
-
"return": {
|
|
12003
|
-
"type": {
|
|
12004
|
-
"text": "Record<string, (params: { data?: unknown }) => boolean>"
|
|
12005
|
-
}
|
|
12006
|
-
},
|
|
12007
|
-
"parameters": [
|
|
12008
|
-
{
|
|
12009
|
-
"name": "criteria",
|
|
12010
|
-
"type": {
|
|
12011
|
-
"text": "RowMatchCriteria"
|
|
12012
|
-
}
|
|
12013
|
-
}
|
|
12014
|
-
],
|
|
12015
|
-
"description": "Row class rules that flag rows meeting RowMatchCriteria, for spreading into\n`gridOptions.rowClassRules`.\n\nPairs with DatasourceRowMatchTracker: the tracker decides whether a tab should flash,\nthese decide which rows made it flash. Both take the same criteria, so the two cannot disagree.\n\n```ts\ngridOptions = { rowClassRules: createRowMatchClassRules(criteria) };\n```",
|
|
12016
|
-
"privacy": "public"
|
|
12017
|
-
},
|
|
12018
|
-
{
|
|
12019
|
-
"kind": "function",
|
|
12020
|
-
"name": "createRowMatchCellClassRules",
|
|
12021
|
-
"return": {
|
|
12022
|
-
"type": {
|
|
12023
|
-
"text": "Record<string, (params: { data?: unknown; colDef: { field?: string } }) => boolean>"
|
|
12024
|
-
}
|
|
12025
|
-
},
|
|
12026
|
-
"parameters": [
|
|
12027
|
-
{
|
|
12028
|
-
"name": "criteria",
|
|
12029
|
-
"type": {
|
|
12030
|
-
"text": "RowMatchCriteria"
|
|
12031
|
-
}
|
|
12032
|
-
}
|
|
12033
|
-
],
|
|
12034
|
-
"description": "Cell class rules that flag only the `flashField` cell of a matching row, for spreading into\n`gridOptions.defaultColDef.cellClassRules`.\n\nThey belong on `defaultColDef` rather than a single column because AG Grid has no grid-level\n`cellClassRules`, and the rule itself checks which column it is running against.",
|
|
12035
|
-
"privacy": "public"
|
|
12036
|
-
}
|
|
12037
|
-
],
|
|
12038
|
-
"exports": [
|
|
12039
|
-
{
|
|
12040
|
-
"kind": "js",
|
|
12041
|
-
"name": "ROW_MATCH_ALERT_CLASS",
|
|
12042
|
-
"declaration": {
|
|
12043
|
-
"name": "ROW_MATCH_ALERT_CLASS",
|
|
12044
|
-
"module": "src/datasource/row-match.classes.ts"
|
|
12045
|
-
}
|
|
12046
|
-
},
|
|
12047
|
-
{
|
|
12048
|
-
"kind": "js",
|
|
12049
|
-
"name": "ROW_MATCH_ALERT_CELL_CLASS",
|
|
12050
|
-
"declaration": {
|
|
12051
|
-
"name": "ROW_MATCH_ALERT_CELL_CLASS",
|
|
12052
|
-
"module": "src/datasource/row-match.classes.ts"
|
|
12053
|
-
}
|
|
12054
|
-
},
|
|
12055
|
-
{
|
|
12056
|
-
"kind": "js",
|
|
12057
|
-
"name": "createRowMatchClassRules",
|
|
12058
|
-
"declaration": {
|
|
12059
|
-
"name": "createRowMatchClassRules",
|
|
12060
|
-
"module": "src/datasource/row-match.classes.ts"
|
|
12061
|
-
}
|
|
12062
|
-
},
|
|
12063
|
-
{
|
|
12064
|
-
"kind": "js",
|
|
12065
|
-
"name": "createRowMatchCellClassRules",
|
|
12066
|
-
"declaration": {
|
|
12067
|
-
"name": "createRowMatchCellClassRules",
|
|
12068
|
-
"module": "src/datasource/row-match.classes.ts"
|
|
12069
|
-
}
|
|
12070
|
-
}
|
|
12071
|
-
]
|
|
12072
|
-
},
|
|
12073
|
-
{
|
|
12074
|
-
"kind": "javascript-module",
|
|
12075
|
-
"path": "src/datasource/row-match.tracker.ts",
|
|
12076
|
-
"declarations": [
|
|
12077
|
-
{
|
|
12078
|
-
"kind": "class",
|
|
12079
|
-
"description": "Tracks which datasource rows satisfy RowMatchCriteria as stream updates arrive,\nand reports whether any currently do.\n\nRows are tracked incrementally from `add` / `update` / `remove` deltas rather than by\nrescanning the grid, so cost is proportional to the update rather than to the row count.\n\nThe typical consumer flags a tab while a background grid still holds rows needing\nattention:\n\n```ts\nconst tracker = new DatasourceRowMatchTracker(\n { rowIdField: 'ORDER_ID', stateField: 'ORDER_STATE', stateValue: 'PENDING' },\n (active) => { tab.alert = active; },\n);\nconst stop = tracker.observe(datasourceElement);\n```\n\nFrameworks that surface the datasource events as props can feed the tracker directly with\nDatasourceRowMatchTracker.handleDataChanged and\nDatasourceRowMatchTracker.handleDataCleared instead of calling `observe`.\n\nPassing the same criteria to `createRowMatchClassRules` flashes the matching rows themselves, so\na tab that says there is work to do leads to a grid that shows which rows it meant.\n\nCriteria are fixed for the tracker's life. To watch for something else, build a new tracker and\nreload the datasource, so rows already delivered are replayed against the new rules.",
|
|
12080
|
-
"name": "DatasourceRowMatchTracker",
|
|
12081
|
-
"members": [
|
|
12082
|
-
{
|
|
12083
|
-
"kind": "field",
|
|
12084
|
-
"name": "matchedRowIds",
|
|
12085
|
-
"privacy": "private",
|
|
12086
|
-
"readonly": true,
|
|
12087
|
-
"default": "new Set<string>()"
|
|
12088
|
-
},
|
|
12089
|
-
{
|
|
12090
|
-
"kind": "field",
|
|
12091
|
-
"name": "lastReportedActive",
|
|
12092
|
-
"type": {
|
|
12093
|
-
"text": "boolean"
|
|
12094
|
-
},
|
|
12095
|
-
"privacy": "private",
|
|
12096
|
-
"default": "false"
|
|
12097
|
-
},
|
|
12098
|
-
{
|
|
12099
|
-
"kind": "field",
|
|
12100
|
-
"name": "active",
|
|
12101
|
-
"type": {
|
|
12102
|
-
"text": "boolean"
|
|
12103
|
-
},
|
|
12104
|
-
"description": "True while at least one tracked row matches.",
|
|
12105
|
-
"readonly": true
|
|
12106
|
-
},
|
|
12107
|
-
{
|
|
12108
|
-
"kind": "field",
|
|
12109
|
-
"name": "matchCount",
|
|
12110
|
-
"type": {
|
|
12111
|
-
"text": "number"
|
|
12112
|
-
},
|
|
12113
|
-
"description": "How many tracked rows currently match.",
|
|
12114
|
-
"readonly": true
|
|
12115
|
-
},
|
|
12116
|
-
{
|
|
12117
|
-
"kind": "method",
|
|
12118
|
-
"name": "reset",
|
|
12119
|
-
"return": {
|
|
12120
|
-
"type": {
|
|
12121
|
-
"text": "void"
|
|
12122
|
-
}
|
|
12123
|
-
},
|
|
12124
|
-
"description": "Forgets every tracked row. Call when the grid's filter or search criteria change, so a\nstale alert does not survive into a result set that no longer contains those rows."
|
|
12125
|
-
},
|
|
12126
|
-
{
|
|
12127
|
-
"kind": "method",
|
|
12128
|
-
"name": "handleDataChanged",
|
|
12129
|
-
"return": {
|
|
12130
|
-
"type": {
|
|
12131
|
-
"text": "void"
|
|
12132
|
-
}
|
|
12133
|
-
},
|
|
12134
|
-
"parameters": [
|
|
12135
|
-
{
|
|
12136
|
-
"name": "detail",
|
|
12137
|
-
"type": {
|
|
12138
|
-
"text": "DataChangedEventDetail | undefined"
|
|
12139
|
-
}
|
|
12140
|
-
}
|
|
12141
|
-
],
|
|
12142
|
-
"description": "Applies a `datasource-data-changed` detail."
|
|
12143
|
-
},
|
|
12144
|
-
{
|
|
12145
|
-
"kind": "method",
|
|
12146
|
-
"name": "handleDataCleared",
|
|
12147
|
-
"return": {
|
|
12148
|
-
"type": {
|
|
12149
|
-
"text": "void"
|
|
12150
|
-
}
|
|
12151
|
-
},
|
|
12152
|
-
"description": "Applies a `datasource-data-cleared` event."
|
|
12153
|
-
},
|
|
12154
|
-
{
|
|
12155
|
-
"kind": "method",
|
|
12156
|
-
"name": "observe",
|
|
12157
|
-
"return": {
|
|
12158
|
-
"type": {
|
|
12159
|
-
"text": ""
|
|
12160
|
-
}
|
|
12161
|
-
},
|
|
12162
|
-
"parameters": [
|
|
12163
|
-
{
|
|
12164
|
-
"name": "target",
|
|
12165
|
-
"type": {
|
|
12166
|
-
"text": "EventTarget"
|
|
12167
|
-
}
|
|
12168
|
-
}
|
|
12169
|
-
],
|
|
12170
|
-
"description": "Subscribes to the datasource events on `target`."
|
|
12171
|
-
},
|
|
11770
|
+
"parameters": [
|
|
12172
11771
|
{
|
|
12173
|
-
"
|
|
12174
|
-
"
|
|
12175
|
-
|
|
12176
|
-
"return": {
|
|
12177
|
-
"type": {
|
|
12178
|
-
"text": "void"
|
|
12179
|
-
}
|
|
11772
|
+
"name": "type",
|
|
11773
|
+
"type": {
|
|
11774
|
+
"text": "string"
|
|
12180
11775
|
},
|
|
12181
|
-
"
|
|
12182
|
-
|
|
12183
|
-
|
|
12184
|
-
|
|
12185
|
-
|
|
12186
|
-
|
|
12187
|
-
|
|
12188
|
-
|
|
12189
|
-
|
|
12190
|
-
|
|
12191
|
-
|
|
12192
|
-
|
|
12193
|
-
|
|
12194
|
-
|
|
12195
|
-
},
|
|
11776
|
+
"description": "The type of the field/column"
|
|
11777
|
+
}
|
|
11778
|
+
],
|
|
11779
|
+
"description": "Returns a filter type based on the Grid Pro field/column type."
|
|
11780
|
+
},
|
|
11781
|
+
{
|
|
11782
|
+
"kind": "function",
|
|
11783
|
+
"name": "getClientSideFilterParamsByFieldType",
|
|
11784
|
+
"return": {
|
|
11785
|
+
"type": {
|
|
11786
|
+
"text": ""
|
|
11787
|
+
}
|
|
11788
|
+
},
|
|
11789
|
+
"parameters": [
|
|
12196
11790
|
{
|
|
12197
|
-
"
|
|
12198
|
-
"
|
|
12199
|
-
|
|
12200
|
-
|
|
12201
|
-
|
|
12202
|
-
"text": "void"
|
|
12203
|
-
}
|
|
12204
|
-
}
|
|
11791
|
+
"name": "field",
|
|
11792
|
+
"type": {
|
|
11793
|
+
"text": "FieldMetadata"
|
|
11794
|
+
},
|
|
11795
|
+
"description": "The field metadata"
|
|
12205
11796
|
}
|
|
12206
|
-
]
|
|
11797
|
+
],
|
|
11798
|
+
"description": "Returns the filter params based on the Grid Pro field/column type."
|
|
12207
11799
|
}
|
|
12208
11800
|
],
|
|
12209
11801
|
"exports": [
|
|
12210
11802
|
{
|
|
12211
11803
|
"kind": "js",
|
|
12212
|
-
"name": "
|
|
11804
|
+
"name": "getFilterByFieldType",
|
|
11805
|
+
"declaration": {
|
|
11806
|
+
"name": "getFilterByFieldType",
|
|
11807
|
+
"module": "src/datasource/client-side.grid-definitions.ts"
|
|
11808
|
+
}
|
|
11809
|
+
},
|
|
11810
|
+
{
|
|
11811
|
+
"kind": "js",
|
|
11812
|
+
"name": "getClientSideFilterParamsByFieldType",
|
|
12213
11813
|
"declaration": {
|
|
12214
|
-
"name": "
|
|
12215
|
-
"module": "src/datasource/
|
|
11814
|
+
"name": "getClientSideFilterParamsByFieldType",
|
|
11815
|
+
"module": "src/datasource/client-side.grid-definitions.ts"
|
|
12216
11816
|
}
|
|
12217
11817
|
}
|
|
12218
11818
|
]
|
|
12219
11819
|
},
|
|
12220
11820
|
{
|
|
12221
11821
|
"kind": "javascript-module",
|
|
12222
|
-
"path": "src/datasource/
|
|
11822
|
+
"path": "src/datasource/datasource.types.ts",
|
|
11823
|
+
"declarations": [],
|
|
11824
|
+
"exports": []
|
|
11825
|
+
},
|
|
11826
|
+
{
|
|
11827
|
+
"kind": "javascript-module",
|
|
11828
|
+
"path": "src/datasource/error-handler.dialog.ts",
|
|
12223
11829
|
"declarations": [
|
|
11830
|
+
{
|
|
11831
|
+
"kind": "variable",
|
|
11832
|
+
"name": "errorHandlerDialogStyles",
|
|
11833
|
+
"default": "css`\n .overlay {\n position: absolute;\n inset: 0;\n width: 100%;\n height: 100%;\n background-color: var(--datasource-error-background-color, var(--neutral-layer-4));\n opacity: var(--datasource-error-background-opacity, 0.5);\n z-index: 1000;\n pointer-events: auto;\n border-radius: 2px;\n display: flex;\n align-items: center;\n justify-content: center;\n }\n .dialog-container {\n position: absolute;\n left: 50%;\n top: 50%;\n transform: translate(-50%, -50%);\n z-index: 1001;\n max-width: 90vw;\n max-height: 90vh;\n width: 100%;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n opacity: 1 !important;\n filter: none !important;\n box-sizing: border-box;\n }\n .grid-datasource-error-dialog {\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n margin: 0 auto;\n max-width: 600px;\n width: 100%;\n box-sizing: border-box;\n background: var(--dialog-background, #2d2533);\n box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.45);\n overflow: visible;\n min-height: 120px;\n }\n\n .grid-datasource-error-dialog div {\n width: 600px;\n }\n\n .grid-datasource-error-dialog [slot='top'] {\n margin-bottom: 0;\n }\n\n .grid-datasource-error-dialog [slot='bottom'] {\n display: flex;\n justify-content: flex-end;\n width: 100%;\n }\n\n .error-details {\n max-height: 120px;\n overflow: auto;\n width: 100%;\n margin-top: 8px;\n }\n`"
|
|
11834
|
+
},
|
|
12224
11835
|
{
|
|
12225
11836
|
"kind": "function",
|
|
12226
|
-
"name": "
|
|
12227
|
-
"return": {
|
|
12228
|
-
"type": {
|
|
12229
|
-
"text": "boolean"
|
|
12230
|
-
}
|
|
12231
|
-
},
|
|
11837
|
+
"name": "getErrorHandlerDialogTemplate",
|
|
12232
11838
|
"parameters": [
|
|
12233
11839
|
{
|
|
12234
|
-
"name": "
|
|
11840
|
+
"name": "prefix",
|
|
12235
11841
|
"type": {
|
|
12236
|
-
"text": "
|
|
11842
|
+
"text": "string"
|
|
12237
11843
|
}
|
|
12238
11844
|
},
|
|
12239
11845
|
{
|
|
12240
|
-
"name": "
|
|
11846
|
+
"name": "gridErrorItems",
|
|
12241
11847
|
"type": {
|
|
12242
|
-
"text": "
|
|
11848
|
+
"text": "GridProErrorItem<any>[]"
|
|
12243
11849
|
}
|
|
12244
11850
|
}
|
|
12245
|
-
]
|
|
12246
|
-
"description": "True when the row satisfies any resolved AND-group.",
|
|
12247
|
-
"privacy": "public"
|
|
11851
|
+
]
|
|
12248
11852
|
}
|
|
12249
11853
|
],
|
|
12250
11854
|
"exports": [
|
|
12251
11855
|
{
|
|
12252
11856
|
"kind": "js",
|
|
12253
|
-
"name": "
|
|
11857
|
+
"name": "errorHandlerDialogStyles",
|
|
11858
|
+
"declaration": {
|
|
11859
|
+
"name": "errorHandlerDialogStyles",
|
|
11860
|
+
"module": "src/datasource/error-handler.dialog.ts"
|
|
11861
|
+
}
|
|
11862
|
+
},
|
|
11863
|
+
{
|
|
11864
|
+
"kind": "js",
|
|
11865
|
+
"name": "getErrorHandlerDialogTemplate",
|
|
11866
|
+
"declaration": {
|
|
11867
|
+
"name": "getErrorHandlerDialogTemplate",
|
|
11868
|
+
"module": "src/datasource/error-handler.dialog.ts"
|
|
11869
|
+
}
|
|
11870
|
+
}
|
|
11871
|
+
]
|
|
11872
|
+
},
|
|
11873
|
+
{
|
|
11874
|
+
"kind": "javascript-module",
|
|
11875
|
+
"path": "src/datasource/index.ts",
|
|
11876
|
+
"declarations": [],
|
|
11877
|
+
"exports": [
|
|
11878
|
+
{
|
|
11879
|
+
"kind": "js",
|
|
11880
|
+
"name": "*",
|
|
11881
|
+
"declaration": {
|
|
11882
|
+
"name": "*",
|
|
11883
|
+
"package": "./base.datasource"
|
|
11884
|
+
}
|
|
11885
|
+
},
|
|
11886
|
+
{
|
|
11887
|
+
"kind": "js",
|
|
11888
|
+
"name": "*",
|
|
11889
|
+
"declaration": {
|
|
11890
|
+
"name": "*",
|
|
11891
|
+
"package": "./base.types"
|
|
11892
|
+
}
|
|
11893
|
+
},
|
|
11894
|
+
{
|
|
11895
|
+
"kind": "js",
|
|
11896
|
+
"name": "*",
|
|
11897
|
+
"declaration": {
|
|
11898
|
+
"name": "*",
|
|
11899
|
+
"package": "./client-side.datasource"
|
|
11900
|
+
}
|
|
11901
|
+
},
|
|
11902
|
+
{
|
|
11903
|
+
"kind": "js",
|
|
11904
|
+
"name": "*",
|
|
11905
|
+
"declaration": {
|
|
11906
|
+
"name": "*",
|
|
11907
|
+
"package": "./error-handler.dialog"
|
|
11908
|
+
}
|
|
11909
|
+
},
|
|
11910
|
+
{
|
|
11911
|
+
"kind": "js",
|
|
11912
|
+
"name": "*",
|
|
11913
|
+
"declaration": {
|
|
11914
|
+
"name": "*",
|
|
11915
|
+
"package": "./datasource.types"
|
|
11916
|
+
}
|
|
11917
|
+
},
|
|
11918
|
+
{
|
|
11919
|
+
"kind": "js",
|
|
11920
|
+
"name": "*",
|
|
12254
11921
|
"declaration": {
|
|
12255
|
-
"name": "
|
|
12256
|
-
"
|
|
11922
|
+
"name": "*",
|
|
11923
|
+
"package": "./server-side.datasource"
|
|
12257
11924
|
}
|
|
12258
11925
|
}
|
|
12259
11926
|
]
|
|
@@ -18929,220 +18596,75 @@
|
|
|
18929
18596
|
},
|
|
18930
18597
|
"description": "The key used as the value sent to the server",
|
|
18931
18598
|
"fieldName": "valueKey"
|
|
18932
|
-
},
|
|
18933
|
-
{
|
|
18934
|
-
"name": "label-key",
|
|
18935
|
-
"type": {
|
|
18936
|
-
"text": "string"
|
|
18937
|
-
},
|
|
18938
|
-
"description": "The key used as the label displayed in the UI",
|
|
18939
|
-
"fieldName": "labelKey"
|
|
18940
|
-
},
|
|
18941
|
-
{
|
|
18942
|
-
"name": "dropdown-placement",
|
|
18943
|
-
"type": {
|
|
18944
|
-
"text": "'bottom-right' | 'bottom-left' | 'top-right' | 'top-left'"
|
|
18945
|
-
},
|
|
18946
|
-
"description": "Position of the dropdown panel relative to the control.\n- `'bottom-right'` – default; opens below and aligns to the right edge of the control\n- `'bottom-left'` – opens below and extends to the left\n- `'top-right'` – opens above and aligns to the right edge of the control\n- `'top-left'` – opens above and extends to the left",
|
|
18947
|
-
"fieldName": "dropdownPlacement"
|
|
18948
|
-
},
|
|
18949
|
-
{
|
|
18950
|
-
"name": "dropdownWidth",
|
|
18951
|
-
"type": {
|
|
18952
|
-
"text": "number"
|
|
18953
|
-
},
|
|
18954
|
-
"description": "Optionally specifies the width of the dropdown",
|
|
18955
|
-
"fieldName": "dropdownWidth"
|
|
18956
|
-
}
|
|
18957
|
-
],
|
|
18958
|
-
"mixins": [
|
|
18959
|
-
{
|
|
18960
|
-
"name": "LifecycleMixin",
|
|
18961
|
-
"package": "@genesislcap/foundation-utils"
|
|
18962
|
-
}
|
|
18963
|
-
],
|
|
18964
|
-
"superclass": {
|
|
18965
|
-
"name": "FoundationElement",
|
|
18966
|
-
"package": "@microsoft/fast-foundation"
|
|
18967
|
-
},
|
|
18968
|
-
"tagName": "%%prefix%%-multicolumn-dropdown",
|
|
18969
|
-
"customElement": true
|
|
18970
|
-
},
|
|
18971
|
-
{
|
|
18972
|
-
"kind": "variable",
|
|
18973
|
-
"name": "foundationMulticolumnDropdown",
|
|
18974
|
-
"description": "A function that returns a Multicolumn Dropdown registration for configuring the component with a DesignSystem.",
|
|
18975
|
-
"privacy": "public"
|
|
18976
|
-
}
|
|
18977
|
-
],
|
|
18978
|
-
"exports": [
|
|
18979
|
-
{
|
|
18980
|
-
"kind": "js",
|
|
18981
|
-
"name": "wasClickOutsideElement",
|
|
18982
|
-
"declaration": {
|
|
18983
|
-
"name": "wasClickOutsideElement",
|
|
18984
|
-
"module": "src/multicolumn-dropdown/multicolumn-dropdown.ts"
|
|
18985
|
-
}
|
|
18986
|
-
},
|
|
18987
|
-
{
|
|
18988
|
-
"kind": "js",
|
|
18989
|
-
"name": "MulticolumnDropdown",
|
|
18990
|
-
"declaration": {
|
|
18991
|
-
"name": "MulticolumnDropdown",
|
|
18992
|
-
"module": "src/multicolumn-dropdown/multicolumn-dropdown.ts"
|
|
18993
|
-
}
|
|
18994
|
-
},
|
|
18995
|
-
{
|
|
18996
|
-
"kind": "js",
|
|
18997
|
-
"name": "foundationMulticolumnDropdown",
|
|
18998
|
-
"declaration": {
|
|
18999
|
-
"name": "foundationMulticolumnDropdown",
|
|
19000
|
-
"module": "src/multicolumn-dropdown/multicolumn-dropdown.ts"
|
|
19001
|
-
}
|
|
19002
|
-
}
|
|
19003
|
-
]
|
|
19004
|
-
},
|
|
19005
|
-
{
|
|
19006
|
-
"kind": "javascript-module",
|
|
19007
|
-
"path": "src/row-alert/index.ts",
|
|
19008
|
-
"declarations": [],
|
|
19009
|
-
"exports": [
|
|
19010
|
-
{
|
|
19011
|
-
"kind": "js",
|
|
19012
|
-
"name": "*",
|
|
19013
|
-
"declaration": {
|
|
19014
|
-
"name": "*",
|
|
19015
|
-
"package": "./row-alert"
|
|
19016
|
-
}
|
|
19017
|
-
},
|
|
19018
|
-
{
|
|
19019
|
-
"kind": "js",
|
|
19020
|
-
"name": "*",
|
|
19021
|
-
"declaration": {
|
|
19022
|
-
"name": "*",
|
|
19023
|
-
"package": "./row-alert.types"
|
|
19024
|
-
}
|
|
19025
|
-
}
|
|
19026
|
-
]
|
|
19027
|
-
},
|
|
19028
|
-
{
|
|
19029
|
-
"kind": "javascript-module",
|
|
19030
|
-
"path": "src/row-alert/row-alert.ts",
|
|
19031
|
-
"declarations": [
|
|
19032
|
-
{
|
|
19033
|
-
"kind": "function",
|
|
19034
|
-
"name": "createRowAlert",
|
|
19035
|
-
"return": {
|
|
19036
|
-
"type": {
|
|
19037
|
-
"text": "RowAlert"
|
|
19038
|
-
}
|
|
19039
|
-
},
|
|
19040
|
-
"parameters": [
|
|
18599
|
+
},
|
|
19041
18600
|
{
|
|
19042
|
-
"name": "
|
|
18601
|
+
"name": "label-key",
|
|
19043
18602
|
"type": {
|
|
19044
|
-
"text": "
|
|
19045
|
-
}
|
|
18603
|
+
"text": "string"
|
|
18604
|
+
},
|
|
18605
|
+
"description": "The key used as the label displayed in the UI",
|
|
18606
|
+
"fieldName": "labelKey"
|
|
19046
18607
|
},
|
|
19047
18608
|
{
|
|
19048
|
-
"name": "
|
|
19049
|
-
"default": "{}",
|
|
18609
|
+
"name": "dropdown-placement",
|
|
19050
18610
|
"type": {
|
|
19051
|
-
"text": "
|
|
19052
|
-
}
|
|
18611
|
+
"text": "'bottom-right' | 'bottom-left' | 'top-right' | 'top-left'"
|
|
18612
|
+
},
|
|
18613
|
+
"description": "Position of the dropdown panel relative to the control.\n- `'bottom-right'` – default; opens below and aligns to the right edge of the control\n- `'bottom-left'` – opens below and extends to the left\n- `'top-right'` – opens above and aligns to the right edge of the control\n- `'top-left'` – opens above and extends to the left",
|
|
18614
|
+
"fieldName": "dropdownPlacement"
|
|
18615
|
+
},
|
|
18616
|
+
{
|
|
18617
|
+
"name": "dropdownWidth",
|
|
18618
|
+
"type": {
|
|
18619
|
+
"text": "number"
|
|
18620
|
+
},
|
|
18621
|
+
"description": "Optionally specifies the width of the dropdown",
|
|
18622
|
+
"fieldName": "dropdownWidth"
|
|
19053
18623
|
}
|
|
19054
18624
|
],
|
|
19055
|
-
"
|
|
19056
|
-
|
|
19057
|
-
|
|
19058
|
-
|
|
19059
|
-
|
|
19060
|
-
|
|
19061
|
-
"
|
|
19062
|
-
|
|
19063
|
-
|
|
19064
|
-
"name": "createRowAlert",
|
|
19065
|
-
"module": "src/row-alert/row-alert.ts"
|
|
19066
|
-
}
|
|
19067
|
-
}
|
|
19068
|
-
]
|
|
19069
|
-
},
|
|
19070
|
-
{
|
|
19071
|
-
"kind": "javascript-module",
|
|
19072
|
-
"path": "src/row-alert/row-alert.types.ts",
|
|
19073
|
-
"declarations": [
|
|
19074
|
-
{
|
|
19075
|
-
"kind": "variable",
|
|
19076
|
-
"name": "defaultRowAlertColorPresets",
|
|
19077
|
-
"type": {
|
|
19078
|
-
"text": "[\n { id: 'error', label: 'Error', value: 'var(--error-fill-rest, #c62828)' },\n { id: 'warning', label: 'Warning', value: 'var(--warning-fill-rest, #ef6c00)' },\n { id: 'success', label: 'Success', value: 'var(--success-fill-rest, #2e7d32)' },\n { id: 'accent', label: 'Accent', value: 'var(--accent-fill-rest, #1565c0)' },\n { id: 'neutral', label: 'Neutral', value: 'var(--neutral-fill-rest, #546e7a)' },\n]"
|
|
19079
|
-
},
|
|
19080
|
-
"default": "[\n { id: 'error', label: 'Error', value: 'var(--error-fill-rest, #c62828)' },\n { id: 'warning', label: 'Warning', value: 'var(--warning-fill-rest, #ef6c00)' },\n { id: 'success', label: 'Success', value: 'var(--success-fill-rest, #2e7d32)' },\n { id: 'accent', label: 'Accent', value: 'var(--accent-fill-rest, #1565c0)' },\n { id: 'neutral', label: 'Neutral', value: 'var(--neutral-fill-rest, #546e7a)' },\n]",
|
|
19081
|
-
"description": "Colors offered by default. Each resolves a design token so the menu follows the host\napplication's theme, falling back to a fixed color for design systems that lack the token.",
|
|
19082
|
-
"privacy": "public"
|
|
19083
|
-
},
|
|
19084
|
-
{
|
|
19085
|
-
"kind": "variable",
|
|
19086
|
-
"name": "defaultRowAlertRatePresets",
|
|
19087
|
-
"type": {
|
|
19088
|
-
"text": "[\n { id: 'slow', label: 'Slow', value: 1400 },\n { id: 'normal', label: 'Normal', value: 1000 },\n { id: 'fast', label: 'Fast', value: 500 },\n]"
|
|
19089
|
-
},
|
|
19090
|
-
"default": "[\n { id: 'slow', label: 'Slow', value: 1400 },\n { id: 'normal', label: 'Normal', value: 1000 },\n { id: 'fast', label: 'Fast', value: 500 },\n]",
|
|
19091
|
-
"description": "Flash rates offered by default.",
|
|
19092
|
-
"privacy": "public"
|
|
19093
|
-
},
|
|
19094
|
-
{
|
|
19095
|
-
"kind": "variable",
|
|
19096
|
-
"name": "defaultRowAlertScopePresets",
|
|
19097
|
-
"type": {
|
|
19098
|
-
"text": "[\n { id: 'row', label: 'Whole row', value: 'row' },\n { id: 'cell', label: 'Alert field cell', value: 'cell' },\n]"
|
|
18625
|
+
"mixins": [
|
|
18626
|
+
{
|
|
18627
|
+
"name": "LifecycleMixin",
|
|
18628
|
+
"package": "@genesislcap/foundation-utils"
|
|
18629
|
+
}
|
|
18630
|
+
],
|
|
18631
|
+
"superclass": {
|
|
18632
|
+
"name": "FoundationElement",
|
|
18633
|
+
"package": "@microsoft/fast-foundation"
|
|
19099
18634
|
},
|
|
19100
|
-
"
|
|
19101
|
-
"
|
|
19102
|
-
"privacy": "public"
|
|
18635
|
+
"tagName": "%%prefix%%-multicolumn-dropdown",
|
|
18636
|
+
"customElement": true
|
|
19103
18637
|
},
|
|
19104
18638
|
{
|
|
19105
18639
|
"kind": "variable",
|
|
19106
|
-
"name": "
|
|
19107
|
-
"
|
|
19108
|
-
"text": "RowAlertPreferences"
|
|
19109
|
-
},
|
|
19110
|
-
"default": "{\n color: defaultRowAlertColorPresets[0].value,\n durationMs: defaultRowAlertRatePresets[1].value,\n scope: 'row',\n}",
|
|
19111
|
-
"description": "Where preferences start before a user changes anything.",
|
|
18640
|
+
"name": "foundationMulticolumnDropdown",
|
|
18641
|
+
"description": "A function that returns a Multicolumn Dropdown registration for configuring the component with a DesignSystem.",
|
|
19112
18642
|
"privacy": "public"
|
|
19113
18643
|
}
|
|
19114
18644
|
],
|
|
19115
18645
|
"exports": [
|
|
19116
18646
|
{
|
|
19117
18647
|
"kind": "js",
|
|
19118
|
-
"name": "
|
|
19119
|
-
"declaration": {
|
|
19120
|
-
"name": "defaultRowAlertColorPresets",
|
|
19121
|
-
"module": "src/row-alert/row-alert.types.ts"
|
|
19122
|
-
}
|
|
19123
|
-
},
|
|
19124
|
-
{
|
|
19125
|
-
"kind": "js",
|
|
19126
|
-
"name": "defaultRowAlertRatePresets",
|
|
18648
|
+
"name": "wasClickOutsideElement",
|
|
19127
18649
|
"declaration": {
|
|
19128
|
-
"name": "
|
|
19129
|
-
"module": "src/
|
|
18650
|
+
"name": "wasClickOutsideElement",
|
|
18651
|
+
"module": "src/multicolumn-dropdown/multicolumn-dropdown.ts"
|
|
19130
18652
|
}
|
|
19131
18653
|
},
|
|
19132
18654
|
{
|
|
19133
18655
|
"kind": "js",
|
|
19134
|
-
"name": "
|
|
18656
|
+
"name": "MulticolumnDropdown",
|
|
19135
18657
|
"declaration": {
|
|
19136
|
-
"name": "
|
|
19137
|
-
"module": "src/
|
|
18658
|
+
"name": "MulticolumnDropdown",
|
|
18659
|
+
"module": "src/multicolumn-dropdown/multicolumn-dropdown.ts"
|
|
19138
18660
|
}
|
|
19139
18661
|
},
|
|
19140
18662
|
{
|
|
19141
18663
|
"kind": "js",
|
|
19142
|
-
"name": "
|
|
18664
|
+
"name": "foundationMulticolumnDropdown",
|
|
19143
18665
|
"declaration": {
|
|
19144
|
-
"name": "
|
|
19145
|
-
"module": "src/
|
|
18666
|
+
"name": "foundationMulticolumnDropdown",
|
|
18667
|
+
"module": "src/multicolumn-dropdown/multicolumn-dropdown.ts"
|
|
19146
18668
|
}
|
|
19147
18669
|
}
|
|
19148
18670
|
]
|
|
@@ -19315,46 +18837,6 @@
|
|
|
19315
18837
|
}
|
|
19316
18838
|
}
|
|
19317
18839
|
]
|
|
19318
|
-
},
|
|
19319
|
-
{
|
|
19320
|
-
"kind": "method",
|
|
19321
|
-
"name": "getRowAlertPreferences",
|
|
19322
|
-
"return": {
|
|
19323
|
-
"type": {
|
|
19324
|
-
"text": "Promise<Partial<RowAlertPreferences>>"
|
|
19325
|
-
}
|
|
19326
|
-
},
|
|
19327
|
-
"parameters": [
|
|
19328
|
-
{
|
|
19329
|
-
"name": "persistRowAlertKey",
|
|
19330
|
-
"type": {
|
|
19331
|
-
"text": "string"
|
|
19332
|
-
}
|
|
19333
|
-
}
|
|
19334
|
-
]
|
|
19335
|
-
},
|
|
19336
|
-
{
|
|
19337
|
-
"kind": "method",
|
|
19338
|
-
"name": "saveRowAlertPreferences",
|
|
19339
|
-
"return": {
|
|
19340
|
-
"type": {
|
|
19341
|
-
"text": "Promise<void>"
|
|
19342
|
-
}
|
|
19343
|
-
},
|
|
19344
|
-
"parameters": [
|
|
19345
|
-
{
|
|
19346
|
-
"name": "persistRowAlertKey",
|
|
19347
|
-
"type": {
|
|
19348
|
-
"text": "string"
|
|
19349
|
-
}
|
|
19350
|
-
},
|
|
19351
|
-
{
|
|
19352
|
-
"name": "preferences",
|
|
19353
|
-
"type": {
|
|
19354
|
-
"text": "RowAlertPreferences"
|
|
19355
|
-
}
|
|
19356
|
-
}
|
|
19357
|
-
]
|
|
19358
18840
|
}
|
|
19359
18841
|
]
|
|
19360
18842
|
}
|
|
@@ -19482,46 +18964,6 @@
|
|
|
19482
18964
|
}
|
|
19483
18965
|
}
|
|
19484
18966
|
]
|
|
19485
|
-
},
|
|
19486
|
-
{
|
|
19487
|
-
"kind": "method",
|
|
19488
|
-
"name": "getRowAlertPreferences",
|
|
19489
|
-
"return": {
|
|
19490
|
-
"type": {
|
|
19491
|
-
"text": "Promise<Partial<RowAlertPreferences>>"
|
|
19492
|
-
}
|
|
19493
|
-
},
|
|
19494
|
-
"parameters": [
|
|
19495
|
-
{
|
|
19496
|
-
"name": "persistRowAlertKey",
|
|
19497
|
-
"type": {
|
|
19498
|
-
"text": "string"
|
|
19499
|
-
}
|
|
19500
|
-
}
|
|
19501
|
-
]
|
|
19502
|
-
},
|
|
19503
|
-
{
|
|
19504
|
-
"kind": "method",
|
|
19505
|
-
"name": "saveRowAlertPreferences",
|
|
19506
|
-
"return": {
|
|
19507
|
-
"type": {
|
|
19508
|
-
"text": "Promise<void>"
|
|
19509
|
-
}
|
|
19510
|
-
},
|
|
19511
|
-
"parameters": [
|
|
19512
|
-
{
|
|
19513
|
-
"name": "persistRowAlertKey",
|
|
19514
|
-
"type": {
|
|
19515
|
-
"text": "string"
|
|
19516
|
-
}
|
|
19517
|
-
},
|
|
19518
|
-
{
|
|
19519
|
-
"name": "preferences",
|
|
19520
|
-
"type": {
|
|
19521
|
-
"text": "RowAlertPreferences"
|
|
19522
|
-
}
|
|
19523
|
-
}
|
|
19524
|
-
]
|
|
19525
18967
|
}
|
|
19526
18968
|
]
|
|
19527
18969
|
}
|
|
@@ -20534,60 +19976,6 @@
|
|
|
20534
19976
|
}
|
|
20535
19977
|
]
|
|
20536
19978
|
},
|
|
20537
|
-
{
|
|
20538
|
-
"kind": "javascript-module",
|
|
20539
|
-
"path": "src/cell-renderers/utils/accessor.ts",
|
|
20540
|
-
"declarations": [
|
|
20541
|
-
{
|
|
20542
|
-
"kind": "function",
|
|
20543
|
-
"name": "setValueWithAccessor",
|
|
20544
|
-
"return": {
|
|
20545
|
-
"type": {
|
|
20546
|
-
"text": "string"
|
|
20547
|
-
}
|
|
20548
|
-
},
|
|
20549
|
-
"parameters": [
|
|
20550
|
-
{
|
|
20551
|
-
"name": "data",
|
|
20552
|
-
"type": {
|
|
20553
|
-
"text": "any"
|
|
20554
|
-
}
|
|
20555
|
-
},
|
|
20556
|
-
{
|
|
20557
|
-
"name": "accessor",
|
|
20558
|
-
"type": {
|
|
20559
|
-
"text": "string"
|
|
20560
|
-
}
|
|
20561
|
-
}
|
|
20562
|
-
]
|
|
20563
|
-
}
|
|
20564
|
-
],
|
|
20565
|
-
"exports": [
|
|
20566
|
-
{
|
|
20567
|
-
"kind": "js",
|
|
20568
|
-
"name": "setValueWithAccessor",
|
|
20569
|
-
"declaration": {
|
|
20570
|
-
"name": "setValueWithAccessor",
|
|
20571
|
-
"module": "src/cell-renderers/utils/accessor.ts"
|
|
20572
|
-
}
|
|
20573
|
-
}
|
|
20574
|
-
]
|
|
20575
|
-
},
|
|
20576
|
-
{
|
|
20577
|
-
"kind": "javascript-module",
|
|
20578
|
-
"path": "src/cell-renderers/utils/index.ts",
|
|
20579
|
-
"declarations": [],
|
|
20580
|
-
"exports": [
|
|
20581
|
-
{
|
|
20582
|
-
"kind": "js",
|
|
20583
|
-
"name": "*",
|
|
20584
|
-
"declaration": {
|
|
20585
|
-
"name": "*",
|
|
20586
|
-
"package": "./accessor"
|
|
20587
|
-
}
|
|
20588
|
-
}
|
|
20589
|
-
]
|
|
20590
|
-
},
|
|
20591
19979
|
{
|
|
20592
19980
|
"kind": "javascript-module",
|
|
20593
19981
|
"path": "src/column/utils/grid-pro-columns.ts",
|
|
@@ -20681,6 +20069,60 @@
|
|
|
20681
20069
|
}
|
|
20682
20070
|
}
|
|
20683
20071
|
]
|
|
20072
|
+
},
|
|
20073
|
+
{
|
|
20074
|
+
"kind": "javascript-module",
|
|
20075
|
+
"path": "src/cell-renderers/utils/accessor.ts",
|
|
20076
|
+
"declarations": [
|
|
20077
|
+
{
|
|
20078
|
+
"kind": "function",
|
|
20079
|
+
"name": "setValueWithAccessor",
|
|
20080
|
+
"return": {
|
|
20081
|
+
"type": {
|
|
20082
|
+
"text": "string"
|
|
20083
|
+
}
|
|
20084
|
+
},
|
|
20085
|
+
"parameters": [
|
|
20086
|
+
{
|
|
20087
|
+
"name": "data",
|
|
20088
|
+
"type": {
|
|
20089
|
+
"text": "any"
|
|
20090
|
+
}
|
|
20091
|
+
},
|
|
20092
|
+
{
|
|
20093
|
+
"name": "accessor",
|
|
20094
|
+
"type": {
|
|
20095
|
+
"text": "string"
|
|
20096
|
+
}
|
|
20097
|
+
}
|
|
20098
|
+
]
|
|
20099
|
+
}
|
|
20100
|
+
],
|
|
20101
|
+
"exports": [
|
|
20102
|
+
{
|
|
20103
|
+
"kind": "js",
|
|
20104
|
+
"name": "setValueWithAccessor",
|
|
20105
|
+
"declaration": {
|
|
20106
|
+
"name": "setValueWithAccessor",
|
|
20107
|
+
"module": "src/cell-renderers/utils/accessor.ts"
|
|
20108
|
+
}
|
|
20109
|
+
}
|
|
20110
|
+
]
|
|
20111
|
+
},
|
|
20112
|
+
{
|
|
20113
|
+
"kind": "javascript-module",
|
|
20114
|
+
"path": "src/cell-renderers/utils/index.ts",
|
|
20115
|
+
"declarations": [],
|
|
20116
|
+
"exports": [
|
|
20117
|
+
{
|
|
20118
|
+
"kind": "js",
|
|
20119
|
+
"name": "*",
|
|
20120
|
+
"declaration": {
|
|
20121
|
+
"name": "*",
|
|
20122
|
+
"package": "./accessor"
|
|
20123
|
+
}
|
|
20124
|
+
}
|
|
20125
|
+
]
|
|
20684
20126
|
}
|
|
20685
20127
|
]
|
|
20686
20128
|
}
|