@genesislcap/grid-pro 14.409.0-FUI-2495.8 → 14.409.0-FUI-2495.10
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 +1621 -1621
- package/package.json +14 -14
|
@@ -15339,533 +15339,503 @@
|
|
|
15339
15339
|
},
|
|
15340
15340
|
{
|
|
15341
15341
|
"kind": "javascript-module",
|
|
15342
|
-
"path": "src/
|
|
15342
|
+
"path": "src/multicolumn-dropdown/index.ts",
|
|
15343
|
+
"declarations": [],
|
|
15344
|
+
"exports": [
|
|
15345
|
+
{
|
|
15346
|
+
"kind": "js",
|
|
15347
|
+
"name": "*",
|
|
15348
|
+
"declaration": {
|
|
15349
|
+
"name": "*",
|
|
15350
|
+
"package": "./multicolumn-dropdown"
|
|
15351
|
+
}
|
|
15352
|
+
},
|
|
15353
|
+
{
|
|
15354
|
+
"kind": "js",
|
|
15355
|
+
"name": "*",
|
|
15356
|
+
"declaration": {
|
|
15357
|
+
"name": "*",
|
|
15358
|
+
"package": "./multicolumn-dropdown.styles"
|
|
15359
|
+
}
|
|
15360
|
+
},
|
|
15361
|
+
{
|
|
15362
|
+
"kind": "js",
|
|
15363
|
+
"name": "*",
|
|
15364
|
+
"declaration": {
|
|
15365
|
+
"name": "*",
|
|
15366
|
+
"package": "./multicolumn-dropdown.template"
|
|
15367
|
+
}
|
|
15368
|
+
}
|
|
15369
|
+
]
|
|
15370
|
+
},
|
|
15371
|
+
{
|
|
15372
|
+
"kind": "javascript-module",
|
|
15373
|
+
"path": "src/multicolumn-dropdown/multicolumn-dropdown.styles.ts",
|
|
15343
15374
|
"declarations": [
|
|
15344
15375
|
{
|
|
15345
15376
|
"kind": "variable",
|
|
15346
|
-
"name": "
|
|
15377
|
+
"name": "dropdownWidthVar",
|
|
15347
15378
|
"type": {
|
|
15348
|
-
"text": "
|
|
15379
|
+
"text": "string"
|
|
15349
15380
|
},
|
|
15350
|
-
"default": "
|
|
15351
|
-
"description": "
|
|
15381
|
+
"default": "'--dropdown-width'",
|
|
15382
|
+
"description": "The CSS variable to use for specifying the dropdown's width"
|
|
15383
|
+
},
|
|
15384
|
+
{
|
|
15385
|
+
"kind": "variable",
|
|
15386
|
+
"name": "optionsClass",
|
|
15387
|
+
"type": {
|
|
15388
|
+
"text": "string"
|
|
15389
|
+
},
|
|
15390
|
+
"default": "'options'",
|
|
15391
|
+
"description": "The CSS class to use for the options element's class in the dropdown"
|
|
15392
|
+
},
|
|
15393
|
+
{
|
|
15394
|
+
"kind": "variable",
|
|
15395
|
+
"name": "DISPLAY_NONE_CLASS",
|
|
15396
|
+
"type": {
|
|
15397
|
+
"text": "string"
|
|
15398
|
+
},
|
|
15399
|
+
"default": "'dnone'",
|
|
15400
|
+
"description": "Class name used to hide elements with display:none"
|
|
15401
|
+
},
|
|
15402
|
+
{
|
|
15403
|
+
"kind": "variable",
|
|
15404
|
+
"name": "multicolumnDropdownStyles",
|
|
15405
|
+
"default": "css`\n label {\n color: var(--neutral-foreground-hint, rgb(135 155 166));\n font-style: normal;\n margin: calc(var(--design-unit) * 2px) 0;\n display: block;\n cursor: pointer;\n font-size: var(--type-ramp-base-font-size);\n line-height: var(--type-ramp-base-line-height);\n }\n\n .${DISPLAY_NONE_CLASS} {\n display: none !important;\n }\n\n .root {\n position: relative;\n width: inherit;\n min-width: 250px;\n ${dropdownWidthVar}: 350px;\n }\n\n .control {\n cursor: pointer;\n position: relative;\n display: flex;\n align-items: center;\n width: 100%;\n border-radius: calc(var(--control-corner-radius) * 1px);\n }\n\n #display-field {\n width: 100%;\n cursor: pointer;\n color: inherit;\n min-height: 40px;\n padding-left: calc(var(--design-unit) * 2.25px);\n padding-right: 52px;\n border-width: 0;\n background: var(--neutral-fill-input-rest);\n border-radius: calc(var(--control-corner-radius) * 1px);\n text-overflow: ellipsis;\n font-size: var(--type-ramp-base-font-size);\n font-family: var(--body-font);\n }\n\n #display-field[disabled] {\n cursor: not-allowed;\n opacity: var(--disabled-opacity);\n }\n\n #display-field:focus {\n outline: 1px solid var(--accent-fill-rest);\n background: var(--neutral-fill-input-rest);\n border-style: none;\n box-shadow: none;\n }\n\n #display-field:hover:not(:focus):not([disabled]) {\n outline: 1px solid var(--neutral-stroke-hover, rgb(231 232 232));\n }\n\n button {\n pointer-events: none;\n }\n\n #arrow-icon {\n display: inline-block;\n width: 16px;\n color: currentColor;\n position: absolute;\n left: calc(100% - 26px);\n padding: 0;\n cursor: pointer;\n transform: rotate(0deg);\n transition: transform 0.2s linear 0s;\n }\n\n #arrow-icon.flipped {\n transform: rotate(180deg);\n }\n\n .cross-icon {\n display: inline-block;\n width: 12px;\n color: currentColor;\n position: absolute;\n left: calc(100% - 46px);\n padding: 0;\n cursor: pointer;\n visibility: hidden;\n }\n\n .cross-icon:hover {\n color: var(--error-color);\n }\n\n .disabled-icon {\n pointer-events: none;\n opacity: var(--disabled-opacity);\n }\n\n .${optionsClass} {\n min-width: 100%;\n width: var(${dropdownWidthVar});\n display: flex;\n flex-direction: column;\n position: absolute;\n height: max-content;\n overflow-y: hidden;\n margin: 5px 0;\n background: var(--neutral-fill-input-rest);\n visibility: hidden;\n z-index: 999;\n }\n\n .dropdown-above {\n bottom: 100%;\n }\n\n .dropdown-left {\n right: 0;\n }\n\n .grid-container {\n height: 300px;\n width: 100%;\n }\n\n #filter-search {\n padding: 5px;\n }\n\n .visible {\n visibility: visible;\n }\n`",
|
|
15406
|
+
"description": "Multicolumn Dropdown styles.",
|
|
15407
|
+
"privacy": "public"
|
|
15352
15408
|
}
|
|
15353
15409
|
],
|
|
15354
15410
|
"exports": [
|
|
15355
15411
|
{
|
|
15356
15412
|
"kind": "js",
|
|
15357
|
-
"name": "
|
|
15413
|
+
"name": "dropdownWidthVar",
|
|
15358
15414
|
"declaration": {
|
|
15359
|
-
"name": "
|
|
15360
|
-
"module": "src/
|
|
15415
|
+
"name": "dropdownWidthVar",
|
|
15416
|
+
"module": "src/multicolumn-dropdown/multicolumn-dropdown.styles.ts"
|
|
15417
|
+
}
|
|
15418
|
+
},
|
|
15419
|
+
{
|
|
15420
|
+
"kind": "js",
|
|
15421
|
+
"name": "optionsClass",
|
|
15422
|
+
"declaration": {
|
|
15423
|
+
"name": "optionsClass",
|
|
15424
|
+
"module": "src/multicolumn-dropdown/multicolumn-dropdown.styles.ts"
|
|
15425
|
+
}
|
|
15426
|
+
},
|
|
15427
|
+
{
|
|
15428
|
+
"kind": "js",
|
|
15429
|
+
"name": "DISPLAY_NONE_CLASS",
|
|
15430
|
+
"declaration": {
|
|
15431
|
+
"name": "DISPLAY_NONE_CLASS",
|
|
15432
|
+
"module": "src/multicolumn-dropdown/multicolumn-dropdown.styles.ts"
|
|
15433
|
+
}
|
|
15434
|
+
},
|
|
15435
|
+
{
|
|
15436
|
+
"kind": "js",
|
|
15437
|
+
"name": "multicolumnDropdownStyles",
|
|
15438
|
+
"declaration": {
|
|
15439
|
+
"name": "multicolumnDropdownStyles",
|
|
15440
|
+
"module": "src/multicolumn-dropdown/multicolumn-dropdown.styles.ts"
|
|
15361
15441
|
}
|
|
15362
15442
|
}
|
|
15363
15443
|
]
|
|
15364
15444
|
},
|
|
15365
15445
|
{
|
|
15366
15446
|
"kind": "javascript-module",
|
|
15367
|
-
"path": "src/
|
|
15447
|
+
"path": "src/multicolumn-dropdown/multicolumn-dropdown.template.ts",
|
|
15368
15448
|
"declarations": [
|
|
15369
15449
|
{
|
|
15370
|
-
"kind": "
|
|
15371
|
-
"
|
|
15372
|
-
"
|
|
15373
|
-
"members": [
|
|
15450
|
+
"kind": "function",
|
|
15451
|
+
"name": "getMulticolumnDropdownTemplate",
|
|
15452
|
+
"parameters": [
|
|
15374
15453
|
{
|
|
15375
|
-
"
|
|
15376
|
-
"
|
|
15377
|
-
"
|
|
15378
|
-
|
|
15379
|
-
|
|
15380
|
-
|
|
15381
|
-
|
|
15382
|
-
|
|
15454
|
+
"name": "designSystem",
|
|
15455
|
+
"default": "'foundation'",
|
|
15456
|
+
"description": "The design system prefix to use. Defaults to 'foundation'."
|
|
15457
|
+
}
|
|
15458
|
+
],
|
|
15459
|
+
"description": "Get a Design System prefixed Multicolumn Dropdown template.",
|
|
15460
|
+
"return": {
|
|
15461
|
+
"type": {
|
|
15462
|
+
"text": ""
|
|
15463
|
+
}
|
|
15464
|
+
},
|
|
15465
|
+
"privacy": "public"
|
|
15466
|
+
},
|
|
15467
|
+
{
|
|
15468
|
+
"kind": "variable",
|
|
15469
|
+
"name": "multicolumnDropdownTemplate",
|
|
15470
|
+
"description": "The default Multicolumn Dropdown template using the 'foundation' design system prefix.",
|
|
15471
|
+
"privacy": "public"
|
|
15472
|
+
}
|
|
15473
|
+
],
|
|
15474
|
+
"exports": [
|
|
15475
|
+
{
|
|
15476
|
+
"kind": "js",
|
|
15477
|
+
"name": "getMulticolumnDropdownTemplate",
|
|
15478
|
+
"declaration": {
|
|
15479
|
+
"name": "getMulticolumnDropdownTemplate",
|
|
15480
|
+
"module": "src/multicolumn-dropdown/multicolumn-dropdown.template.ts"
|
|
15481
|
+
}
|
|
15482
|
+
},
|
|
15483
|
+
{
|
|
15484
|
+
"kind": "js",
|
|
15485
|
+
"name": "multicolumnDropdownTemplate",
|
|
15486
|
+
"declaration": {
|
|
15487
|
+
"name": "multicolumnDropdownTemplate",
|
|
15488
|
+
"module": "src/multicolumn-dropdown/multicolumn-dropdown.template.ts"
|
|
15489
|
+
}
|
|
15490
|
+
}
|
|
15491
|
+
]
|
|
15492
|
+
},
|
|
15493
|
+
{
|
|
15494
|
+
"kind": "javascript-module",
|
|
15495
|
+
"path": "src/multicolumn-dropdown/multicolumn-dropdown.ts",
|
|
15496
|
+
"declarations": [
|
|
15497
|
+
{
|
|
15498
|
+
"kind": "function",
|
|
15499
|
+
"name": "wasClickOutsideElement",
|
|
15500
|
+
"parameters": [
|
|
15383
15501
|
{
|
|
15384
|
-
"
|
|
15385
|
-
"name": "transactionData",
|
|
15502
|
+
"name": "event",
|
|
15386
15503
|
"type": {
|
|
15387
|
-
"text": "
|
|
15388
|
-
},
|
|
15389
|
-
"privacy": "protected",
|
|
15390
|
-
"default": "{\n add: [],\n remove: [],\n update: [],\n addIndex: 0,\n }",
|
|
15391
|
-
"inheritedFrom": {
|
|
15392
|
-
"name": "GridProBaseDatasource",
|
|
15393
|
-
"module": "src/datasource/base.datasource.ts"
|
|
15504
|
+
"text": "MouseEvent"
|
|
15394
15505
|
}
|
|
15395
15506
|
},
|
|
15396
15507
|
{
|
|
15397
|
-
"
|
|
15398
|
-
"
|
|
15399
|
-
|
|
15400
|
-
|
|
15401
|
-
|
|
15402
|
-
|
|
15403
|
-
|
|
15404
|
-
|
|
15405
|
-
|
|
15406
|
-
|
|
15407
|
-
|
|
15408
|
-
|
|
15409
|
-
|
|
15410
|
-
|
|
15411
|
-
}
|
|
15412
|
-
]
|
|
15413
|
-
},
|
|
15414
|
-
{
|
|
15415
|
-
"kind": "method",
|
|
15416
|
-
"name": "requestChanged",
|
|
15417
|
-
"parameters": [
|
|
15418
|
-
{
|
|
15419
|
-
"name": "oldRequest",
|
|
15420
|
-
"type": {
|
|
15421
|
-
"text": "string"
|
|
15422
|
-
}
|
|
15423
|
-
},
|
|
15424
|
-
{
|
|
15425
|
-
"name": "newRequest",
|
|
15426
|
-
"type": {
|
|
15427
|
-
"text": "string"
|
|
15428
|
-
}
|
|
15429
|
-
}
|
|
15430
|
-
]
|
|
15431
|
-
},
|
|
15432
|
-
{
|
|
15433
|
-
"kind": "method",
|
|
15434
|
-
"name": "resourceNameChanged",
|
|
15435
|
-
"parameters": [
|
|
15436
|
-
{
|
|
15437
|
-
"name": "oldValue",
|
|
15438
|
-
"type": {
|
|
15439
|
-
"text": "string"
|
|
15440
|
-
}
|
|
15441
|
-
},
|
|
15442
|
-
{
|
|
15443
|
-
"name": "newValue",
|
|
15444
|
-
"type": {
|
|
15445
|
-
"text": "string"
|
|
15446
|
-
}
|
|
15447
|
-
}
|
|
15448
|
-
]
|
|
15449
|
-
},
|
|
15508
|
+
"name": "target",
|
|
15509
|
+
"type": {
|
|
15510
|
+
"text": "EventTarget"
|
|
15511
|
+
}
|
|
15512
|
+
}
|
|
15513
|
+
],
|
|
15514
|
+
"description": "Checks if the given mouse event occurred outside the target element.",
|
|
15515
|
+
"privacy": "public"
|
|
15516
|
+
},
|
|
15517
|
+
{
|
|
15518
|
+
"kind": "class",
|
|
15519
|
+
"description": "",
|
|
15520
|
+
"name": "MulticolumnDropdown",
|
|
15521
|
+
"members": [
|
|
15450
15522
|
{
|
|
15451
15523
|
"kind": "field",
|
|
15452
|
-
"name": "
|
|
15524
|
+
"name": "optionsElement",
|
|
15453
15525
|
"type": {
|
|
15454
|
-
"text": "
|
|
15455
|
-
},
|
|
15456
|
-
"privacy": "public",
|
|
15457
|
-
"default": "false",
|
|
15458
|
-
"inheritedFrom": {
|
|
15459
|
-
"name": "GridProBaseDatasource",
|
|
15460
|
-
"module": "src/datasource/base.datasource.ts"
|
|
15526
|
+
"text": "HTMLElement"
|
|
15461
15527
|
}
|
|
15462
15528
|
},
|
|
15463
15529
|
{
|
|
15464
15530
|
"kind": "field",
|
|
15465
|
-
"name": "
|
|
15531
|
+
"name": "lastRequest",
|
|
15466
15532
|
"type": {
|
|
15467
|
-
"text": "
|
|
15533
|
+
"text": "object"
|
|
15468
15534
|
},
|
|
15469
15535
|
"privacy": "private"
|
|
15470
15536
|
},
|
|
15471
15537
|
{
|
|
15472
15538
|
"kind": "field",
|
|
15473
|
-
"name": "
|
|
15539
|
+
"name": "connectOverride",
|
|
15474
15540
|
"type": {
|
|
15475
|
-
"text": "
|
|
15541
|
+
"text": "Connect"
|
|
15476
15542
|
},
|
|
15477
15543
|
"privacy": "private"
|
|
15478
15544
|
},
|
|
15479
15545
|
{
|
|
15480
15546
|
"kind": "field",
|
|
15481
|
-
"name": "
|
|
15547
|
+
"name": "_connectDI",
|
|
15482
15548
|
"type": {
|
|
15483
|
-
"text": "
|
|
15549
|
+
"text": "Connect"
|
|
15484
15550
|
},
|
|
15485
|
-
"privacy": "private"
|
|
15486
|
-
"default": "true"
|
|
15551
|
+
"privacy": "private"
|
|
15487
15552
|
},
|
|
15488
15553
|
{
|
|
15489
15554
|
"kind": "field",
|
|
15490
|
-
"name": "
|
|
15555
|
+
"name": "connect",
|
|
15556
|
+
"type": {
|
|
15557
|
+
"text": "Connect"
|
|
15558
|
+
},
|
|
15559
|
+
"description": "The connect service - uses DI by default, but can be manually set for dynamic element creation"
|
|
15560
|
+
},
|
|
15561
|
+
{
|
|
15562
|
+
"kind": "field",
|
|
15563
|
+
"name": "disabled",
|
|
15491
15564
|
"type": {
|
|
15492
15565
|
"text": "boolean"
|
|
15493
15566
|
},
|
|
15494
|
-
"privacy": "
|
|
15495
|
-
"
|
|
15567
|
+
"privacy": "public",
|
|
15568
|
+
"description": "Whether to disable control of the component"
|
|
15496
15569
|
},
|
|
15497
15570
|
{
|
|
15498
15571
|
"kind": "field",
|
|
15499
|
-
"name": "
|
|
15572
|
+
"name": "resourceName",
|
|
15573
|
+
"type": {
|
|
15574
|
+
"text": "string"
|
|
15575
|
+
},
|
|
15576
|
+
"privacy": "public",
|
|
15577
|
+
"description": "The name of the reqrep to get the options from"
|
|
15578
|
+
},
|
|
15579
|
+
{
|
|
15580
|
+
"kind": "field",
|
|
15581
|
+
"name": "searchKey",
|
|
15582
|
+
"type": {
|
|
15583
|
+
"text": "string | string[] | undefined"
|
|
15584
|
+
},
|
|
15585
|
+
"privacy": "public",
|
|
15586
|
+
"description": "The key(s) to search by. Use comma-separated values for multiple keys (e.g. search-key=\"NAME,ID\")."
|
|
15587
|
+
},
|
|
15588
|
+
{
|
|
15589
|
+
"kind": "field",
|
|
15590
|
+
"name": "requestSupportsAdvancedSearch",
|
|
15500
15591
|
"type": {
|
|
15501
15592
|
"text": "boolean"
|
|
15502
15593
|
},
|
|
15503
|
-
"privacy": "
|
|
15504
|
-
"default": "false"
|
|
15594
|
+
"privacy": "public",
|
|
15595
|
+
"default": "false",
|
|
15596
|
+
"description": "Tells whether a given request supports lookup by Groovy Expressions."
|
|
15505
15597
|
},
|
|
15506
15598
|
{
|
|
15507
15599
|
"kind": "field",
|
|
15508
|
-
"name": "
|
|
15600
|
+
"name": "valueKey",
|
|
15509
15601
|
"type": {
|
|
15510
15602
|
"text": "string"
|
|
15511
15603
|
},
|
|
15512
|
-
"privacy": "
|
|
15604
|
+
"privacy": "public",
|
|
15605
|
+
"description": "The key used as the value sent to the server"
|
|
15513
15606
|
},
|
|
15514
15607
|
{
|
|
15515
15608
|
"kind": "field",
|
|
15516
|
-
"name": "
|
|
15609
|
+
"name": "labelKey",
|
|
15517
15610
|
"type": {
|
|
15518
|
-
"text": "
|
|
15611
|
+
"text": "string"
|
|
15519
15612
|
},
|
|
15520
|
-
"privacy": "
|
|
15521
|
-
"
|
|
15613
|
+
"privacy": "public",
|
|
15614
|
+
"description": "The key used as the label displayed in the UI"
|
|
15522
15615
|
},
|
|
15523
15616
|
{
|
|
15524
15617
|
"kind": "field",
|
|
15525
|
-
"name": "
|
|
15618
|
+
"name": "dropdownPlacement",
|
|
15619
|
+
"type": {
|
|
15620
|
+
"text": "'bottom-right' | 'bottom-left' | 'top-right' | 'top-left'"
|
|
15621
|
+
},
|
|
15622
|
+
"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"
|
|
15623
|
+
},
|
|
15624
|
+
{
|
|
15625
|
+
"kind": "field",
|
|
15626
|
+
"name": "dropdownWidth",
|
|
15526
15627
|
"type": {
|
|
15527
15628
|
"text": "number"
|
|
15528
15629
|
},
|
|
15529
|
-
"privacy": "
|
|
15530
|
-
"
|
|
15630
|
+
"privacy": "public",
|
|
15631
|
+
"description": "Optionally specifies the width of the dropdown"
|
|
15531
15632
|
},
|
|
15532
15633
|
{
|
|
15533
|
-
"kind": "
|
|
15534
|
-
"name": "
|
|
15535
|
-
"
|
|
15536
|
-
"
|
|
15537
|
-
"text": "Node"
|
|
15538
|
-
}
|
|
15634
|
+
"kind": "field",
|
|
15635
|
+
"name": "request",
|
|
15636
|
+
"type": {
|
|
15637
|
+
"text": "object"
|
|
15539
15638
|
},
|
|
15540
|
-
"
|
|
15541
|
-
|
|
15542
|
-
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
15543
|
-
}
|
|
15639
|
+
"privacy": "public",
|
|
15640
|
+
"description": "A request object to pass in the reqrep"
|
|
15544
15641
|
},
|
|
15545
15642
|
{
|
|
15546
|
-
"kind": "
|
|
15547
|
-
"name": "
|
|
15548
|
-
"
|
|
15549
|
-
|
|
15550
|
-
"type": {
|
|
15551
|
-
"text": "ColDef[]"
|
|
15552
|
-
}
|
|
15643
|
+
"kind": "field",
|
|
15644
|
+
"name": "columnDefinitions",
|
|
15645
|
+
"type": {
|
|
15646
|
+
"text": "ColDef[]"
|
|
15553
15647
|
},
|
|
15554
|
-
"
|
|
15555
|
-
|
|
15556
|
-
"name": "key",
|
|
15557
|
-
"type": {
|
|
15558
|
-
"text": "string"
|
|
15559
|
-
}
|
|
15560
|
-
},
|
|
15561
|
-
{
|
|
15562
|
-
"name": "copy",
|
|
15563
|
-
"type": {
|
|
15564
|
-
"text": "any"
|
|
15565
|
-
}
|
|
15566
|
-
}
|
|
15567
|
-
]
|
|
15648
|
+
"privacy": "public",
|
|
15649
|
+
"description": "An array of AG Grid column definitions to use in the grid to display the data"
|
|
15568
15650
|
},
|
|
15569
15651
|
{
|
|
15570
|
-
"kind": "
|
|
15571
|
-
"name": "
|
|
15572
|
-
"
|
|
15573
|
-
|
|
15574
|
-
|
|
15575
|
-
|
|
15576
|
-
|
|
15577
|
-
"text": "boolean"
|
|
15578
|
-
}
|
|
15579
|
-
},
|
|
15580
|
-
{
|
|
15581
|
-
"description": "Optionally set the `gridOptions` up with column definitions",
|
|
15582
|
-
"name": "columnDefinitions"
|
|
15583
|
-
},
|
|
15584
|
-
{
|
|
15585
|
-
"description": "Optionally set the grid up with column state",
|
|
15586
|
-
"name": "columnStates"
|
|
15587
|
-
}
|
|
15588
|
-
],
|
|
15589
|
-
"description": "Initializes the datasource.",
|
|
15590
|
-
"privacy": "public"
|
|
15652
|
+
"kind": "field",
|
|
15653
|
+
"name": "baseCriteria",
|
|
15654
|
+
"type": {
|
|
15655
|
+
"text": "string | undefined"
|
|
15656
|
+
},
|
|
15657
|
+
"privacy": "public",
|
|
15658
|
+
"description": "Base criteria that is always applied to requests combined with search criteria via AND.\nUse this to pre-filter results."
|
|
15591
15659
|
},
|
|
15592
15660
|
{
|
|
15593
|
-
"kind": "
|
|
15594
|
-
"name": "
|
|
15595
|
-
"
|
|
15661
|
+
"kind": "field",
|
|
15662
|
+
"name": "defaultSlottedNodes",
|
|
15663
|
+
"type": {
|
|
15664
|
+
"text": "Node[]"
|
|
15665
|
+
},
|
|
15596
15666
|
"privacy": "public",
|
|
15597
|
-
"
|
|
15598
|
-
"name": "GridProBaseDatasource",
|
|
15599
|
-
"module": "src/datasource/base.datasource.ts"
|
|
15600
|
-
}
|
|
15667
|
+
"default": "[]"
|
|
15601
15668
|
},
|
|
15602
15669
|
{
|
|
15603
|
-
"kind": "
|
|
15604
|
-
"name": "
|
|
15605
|
-
"
|
|
15606
|
-
|
|
15670
|
+
"kind": "field",
|
|
15671
|
+
"name": "grid",
|
|
15672
|
+
"type": {
|
|
15673
|
+
"text": "GridPro"
|
|
15674
|
+
},
|
|
15607
15675
|
"privacy": "public"
|
|
15608
15676
|
},
|
|
15609
15677
|
{
|
|
15610
|
-
"kind": "
|
|
15611
|
-
"name": "
|
|
15612
|
-
"
|
|
15613
|
-
|
|
15614
|
-
|
|
15678
|
+
"kind": "field",
|
|
15679
|
+
"name": "_value",
|
|
15680
|
+
"type": {
|
|
15681
|
+
"text": "string"
|
|
15682
|
+
},
|
|
15683
|
+
"privacy": "private"
|
|
15615
15684
|
},
|
|
15616
15685
|
{
|
|
15617
|
-
"kind": "
|
|
15618
|
-
"name": "
|
|
15619
|
-
"
|
|
15620
|
-
|
|
15621
|
-
"inheritedFrom": {
|
|
15622
|
-
"name": "GridProBaseDatasource",
|
|
15623
|
-
"module": "src/datasource/base.datasource.ts"
|
|
15686
|
+
"kind": "field",
|
|
15687
|
+
"name": "value",
|
|
15688
|
+
"type": {
|
|
15689
|
+
"text": "string"
|
|
15624
15690
|
}
|
|
15625
15691
|
},
|
|
15626
15692
|
{
|
|
15627
|
-
"kind": "
|
|
15628
|
-
"name": "
|
|
15629
|
-
"
|
|
15693
|
+
"kind": "field",
|
|
15694
|
+
"name": "filterSearch",
|
|
15695
|
+
"type": {
|
|
15696
|
+
"text": "string"
|
|
15697
|
+
},
|
|
15698
|
+
"privacy": "public",
|
|
15699
|
+
"description": "The criteria to search by"
|
|
15630
15700
|
},
|
|
15631
15701
|
{
|
|
15632
|
-
"kind": "
|
|
15633
|
-
"name": "
|
|
15702
|
+
"kind": "field",
|
|
15703
|
+
"name": "open",
|
|
15704
|
+
"type": {
|
|
15705
|
+
"text": "boolean"
|
|
15706
|
+
},
|
|
15634
15707
|
"privacy": "public",
|
|
15635
|
-
"
|
|
15636
|
-
|
|
15637
|
-
|
|
15638
|
-
|
|
15708
|
+
"description": "Whether the dropdown is open or not"
|
|
15709
|
+
},
|
|
15710
|
+
{
|
|
15711
|
+
"kind": "field",
|
|
15712
|
+
"name": "selectedRow",
|
|
15713
|
+
"type": {
|
|
15714
|
+
"text": "object"
|
|
15639
15715
|
},
|
|
15640
|
-
"description": "
|
|
15641
|
-
|
|
15642
|
-
|
|
15643
|
-
|
|
15644
|
-
|
|
15716
|
+
"description": "Data for the selected row"
|
|
15717
|
+
},
|
|
15718
|
+
{
|
|
15719
|
+
"kind": "field",
|
|
15720
|
+
"name": "displayValue",
|
|
15721
|
+
"description": "Value to display in the form field",
|
|
15722
|
+
"readonly": true
|
|
15723
|
+
},
|
|
15724
|
+
{
|
|
15725
|
+
"kind": "field",
|
|
15726
|
+
"name": "hasSearchKey",
|
|
15727
|
+
"type": {
|
|
15728
|
+
"text": "boolean"
|
|
15729
|
+
},
|
|
15730
|
+
"readonly": true
|
|
15731
|
+
},
|
|
15732
|
+
{
|
|
15733
|
+
"kind": "field",
|
|
15734
|
+
"name": "hasSlottedContent",
|
|
15735
|
+
"type": {
|
|
15736
|
+
"text": "boolean"
|
|
15737
|
+
},
|
|
15738
|
+
"readonly": true
|
|
15645
15739
|
},
|
|
15646
15740
|
{
|
|
15647
15741
|
"kind": "method",
|
|
15648
|
-
"name": "
|
|
15742
|
+
"name": "setGridRowData",
|
|
15649
15743
|
"privacy": "private",
|
|
15650
15744
|
"parameters": [
|
|
15651
15745
|
{
|
|
15652
|
-
"name": "
|
|
15746
|
+
"name": "rows",
|
|
15747
|
+
"type": {
|
|
15748
|
+
"text": "any[]"
|
|
15749
|
+
}
|
|
15653
15750
|
}
|
|
15654
|
-
]
|
|
15751
|
+
],
|
|
15752
|
+
"description": "Sets row data on the grid in a version-safe way.\nAG Grid v32+ removed `setRowData` in favour of `updateGridOptions`."
|
|
15655
15753
|
},
|
|
15656
15754
|
{
|
|
15657
15755
|
"kind": "method",
|
|
15658
|
-
"name": "
|
|
15756
|
+
"name": "setGridColumnDefs",
|
|
15659
15757
|
"privacy": "private",
|
|
15660
15758
|
"parameters": [
|
|
15661
15759
|
{
|
|
15662
|
-
"name": "
|
|
15760
|
+
"name": "colDefs",
|
|
15663
15761
|
"type": {
|
|
15664
|
-
"text": "
|
|
15762
|
+
"text": "ColDef[]"
|
|
15665
15763
|
}
|
|
15666
15764
|
}
|
|
15667
|
-
]
|
|
15765
|
+
],
|
|
15766
|
+
"description": "Sets column defs on the grid in a version-safe way.\nAG Grid v32+ removed `setColumnDefs` in favour of `updateGridOptions`."
|
|
15668
15767
|
},
|
|
15669
15768
|
{
|
|
15670
15769
|
"kind": "method",
|
|
15671
|
-
"name": "
|
|
15770
|
+
"name": "emitValue",
|
|
15672
15771
|
"privacy": "private",
|
|
15673
15772
|
"parameters": [
|
|
15674
15773
|
{
|
|
15675
|
-
"name": "
|
|
15676
|
-
"type": {
|
|
15677
|
-
"text": "boolean"
|
|
15678
|
-
},
|
|
15679
|
-
"description": "Whether more rows are available"
|
|
15680
|
-
},
|
|
15681
|
-
{
|
|
15682
|
-
"name": "sourceRef",
|
|
15774
|
+
"name": "value",
|
|
15683
15775
|
"type": {
|
|
15684
15776
|
"text": "string"
|
|
15685
|
-
}
|
|
15686
|
-
"description": "The source reference"
|
|
15687
|
-
},
|
|
15688
|
-
{
|
|
15689
|
-
"description": "The total number of rows",
|
|
15690
|
-
"name": "rowsCount"
|
|
15777
|
+
}
|
|
15691
15778
|
}
|
|
15692
15779
|
],
|
|
15693
|
-
"description": "
|
|
15780
|
+
"description": "Emits 'change' and 'input' events so that the `sync` directive and forms work correctly."
|
|
15694
15781
|
},
|
|
15695
15782
|
{
|
|
15696
15783
|
"kind": "method",
|
|
15697
|
-
"name": "
|
|
15698
|
-
"privacy": "
|
|
15699
|
-
"parameters": [
|
|
15700
|
-
{
|
|
15701
|
-
"name": "requestServerResult",
|
|
15702
|
-
"type": {
|
|
15703
|
-
"text": "RequestServerResult"
|
|
15704
|
-
}
|
|
15705
|
-
}
|
|
15706
|
-
]
|
|
15784
|
+
"name": "toggle",
|
|
15785
|
+
"privacy": "public"
|
|
15707
15786
|
},
|
|
15708
15787
|
{
|
|
15709
15788
|
"kind": "method",
|
|
15710
|
-
"name": "
|
|
15711
|
-
"privacy": "private"
|
|
15712
|
-
"parameters": [
|
|
15713
|
-
{
|
|
15714
|
-
"name": "dataServerResult",
|
|
15715
|
-
"type": {
|
|
15716
|
-
"text": "FilteredDataServerResult"
|
|
15717
|
-
}
|
|
15718
|
-
}
|
|
15719
|
-
]
|
|
15789
|
+
"name": "getAndSetRows",
|
|
15790
|
+
"privacy": "private"
|
|
15720
15791
|
},
|
|
15721
15792
|
{
|
|
15722
|
-
"kind": "
|
|
15723
|
-
"name": "
|
|
15724
|
-
"privacy": "private"
|
|
15725
|
-
"parameters": [
|
|
15726
|
-
{
|
|
15727
|
-
"name": "fieldsMetadata",
|
|
15728
|
-
"type": {
|
|
15729
|
-
"text": "FieldMetadata[]"
|
|
15730
|
-
}
|
|
15731
|
-
}
|
|
15732
|
-
]
|
|
15793
|
+
"kind": "field",
|
|
15794
|
+
"name": "getAndSetRowsDebounce",
|
|
15795
|
+
"privacy": "private"
|
|
15733
15796
|
},
|
|
15734
15797
|
{
|
|
15735
15798
|
"kind": "method",
|
|
15736
|
-
"name": "
|
|
15737
|
-
"privacy": "public"
|
|
15738
|
-
"parameters": [
|
|
15739
|
-
{
|
|
15740
|
-
"name": "fieldName",
|
|
15741
|
-
"type": {
|
|
15742
|
-
"text": "string"
|
|
15743
|
-
}
|
|
15744
|
-
},
|
|
15745
|
-
{
|
|
15746
|
-
"name": "newFilter",
|
|
15747
|
-
"type": {
|
|
15748
|
-
"text": "string"
|
|
15749
|
-
}
|
|
15750
|
-
}
|
|
15751
|
-
],
|
|
15752
|
-
"inheritedFrom": {
|
|
15753
|
-
"name": "GenesisGridDatasourceElement",
|
|
15754
|
-
"module": "src/datasource/base.datasource.ts"
|
|
15755
|
-
}
|
|
15799
|
+
"name": "filterSearchChanged",
|
|
15800
|
+
"privacy": "public"
|
|
15756
15801
|
},
|
|
15757
15802
|
{
|
|
15758
15803
|
"kind": "method",
|
|
15759
|
-
"name": "
|
|
15760
|
-
"privacy": "public"
|
|
15761
|
-
"parameters": [
|
|
15762
|
-
{
|
|
15763
|
-
"name": "fieldName",
|
|
15764
|
-
"type": {
|
|
15765
|
-
"text": "string"
|
|
15766
|
-
}
|
|
15767
|
-
}
|
|
15768
|
-
],
|
|
15769
|
-
"inheritedFrom": {
|
|
15770
|
-
"name": "GenesisGridDatasourceElement",
|
|
15771
|
-
"module": "src/datasource/base.datasource.ts"
|
|
15772
|
-
}
|
|
15804
|
+
"name": "requestChanged",
|
|
15805
|
+
"privacy": "public"
|
|
15773
15806
|
},
|
|
15774
15807
|
{
|
|
15775
15808
|
"kind": "method",
|
|
15776
|
-
"name": "
|
|
15777
|
-
"privacy": "
|
|
15778
|
-
"return": {
|
|
15779
|
-
"type": {
|
|
15780
|
-
"text": "any"
|
|
15781
|
-
}
|
|
15782
|
-
},
|
|
15783
|
-
"parameters": [
|
|
15784
|
-
{
|
|
15785
|
-
"name": "transaction",
|
|
15786
|
-
"type": {
|
|
15787
|
-
"text": "any"
|
|
15788
|
-
}
|
|
15789
|
-
}
|
|
15790
|
-
],
|
|
15791
|
-
"inheritedFrom": {
|
|
15792
|
-
"name": "GridProBaseDatasource",
|
|
15793
|
-
"module": "src/datasource/base.datasource.ts"
|
|
15794
|
-
}
|
|
15809
|
+
"name": "columnDefinitionsChanged",
|
|
15810
|
+
"privacy": "public"
|
|
15795
15811
|
},
|
|
15796
15812
|
{
|
|
15797
|
-
"kind": "
|
|
15798
|
-
"name": "
|
|
15799
|
-
"privacy": "private"
|
|
15800
|
-
"parameters": [
|
|
15801
|
-
{
|
|
15802
|
-
"name": "oldSize",
|
|
15803
|
-
"type": {
|
|
15804
|
-
"text": "number"
|
|
15805
|
-
}
|
|
15806
|
-
},
|
|
15807
|
-
{
|
|
15808
|
-
"name": "newSize",
|
|
15809
|
-
"type": {
|
|
15810
|
-
"text": "number"
|
|
15811
|
-
}
|
|
15812
|
-
}
|
|
15813
|
-
]
|
|
15813
|
+
"kind": "field",
|
|
15814
|
+
"name": "handleClickOutside",
|
|
15815
|
+
"privacy": "private"
|
|
15814
15816
|
},
|
|
15815
15817
|
{
|
|
15816
15818
|
"kind": "method",
|
|
15817
|
-
"name": "
|
|
15818
|
-
"privacy": "
|
|
15819
|
-
"parameters": [
|
|
15820
|
-
{
|
|
15821
|
-
"name": "inserts",
|
|
15822
|
-
"default": "[]"
|
|
15823
|
-
}
|
|
15824
|
-
],
|
|
15825
|
-
"inheritedFrom": {
|
|
15826
|
-
"name": "GridProBaseDatasource",
|
|
15827
|
-
"module": "src/datasource/base.datasource.ts"
|
|
15828
|
-
}
|
|
15819
|
+
"name": "openChanged",
|
|
15820
|
+
"privacy": "public"
|
|
15829
15821
|
},
|
|
15830
15822
|
{
|
|
15831
15823
|
"kind": "method",
|
|
15832
|
-
"name": "
|
|
15833
|
-
"privacy": "
|
|
15834
|
-
"parameters": [
|
|
15835
|
-
{
|
|
15836
|
-
"name": "updates",
|
|
15837
|
-
"default": "[]"
|
|
15838
|
-
}
|
|
15839
|
-
],
|
|
15840
|
-
"inheritedFrom": {
|
|
15841
|
-
"name": "GridProBaseDatasource",
|
|
15842
|
-
"module": "src/datasource/base.datasource.ts"
|
|
15843
|
-
}
|
|
15824
|
+
"name": "dropdownWidthChanged",
|
|
15825
|
+
"privacy": "public"
|
|
15844
15826
|
},
|
|
15845
15827
|
{
|
|
15846
15828
|
"kind": "method",
|
|
15847
|
-
"name": "
|
|
15848
|
-
"privacy": "
|
|
15829
|
+
"name": "changeHandler",
|
|
15830
|
+
"privacy": "public",
|
|
15849
15831
|
"parameters": [
|
|
15850
15832
|
{
|
|
15851
|
-
"name": "
|
|
15852
|
-
"
|
|
15853
|
-
|
|
15833
|
+
"name": "event",
|
|
15834
|
+
"type": {
|
|
15835
|
+
"text": "Event"
|
|
15836
|
+
}
|
|
15854
15837
|
}
|
|
15855
|
-
]
|
|
15856
|
-
"description": "Handles stream deletes by removing records from the grid.",
|
|
15857
|
-
"inheritedFrom": {
|
|
15858
|
-
"name": "GridProBaseDatasource",
|
|
15859
|
-
"module": "src/datasource/base.datasource.ts"
|
|
15860
|
-
}
|
|
15861
|
-
},
|
|
15862
|
-
{
|
|
15863
|
-
"kind": "method",
|
|
15864
|
-
"name": "loadMore",
|
|
15865
|
-
"inheritedFrom": {
|
|
15866
|
-
"name": "GridProBaseDatasource",
|
|
15867
|
-
"module": "src/datasource/base.datasource.ts"
|
|
15868
|
-
}
|
|
15838
|
+
]
|
|
15869
15839
|
},
|
|
15870
15840
|
{
|
|
15871
15841
|
"kind": "method",
|
|
@@ -15889,6 +15859,19 @@
|
|
|
15889
15859
|
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
15890
15860
|
}
|
|
15891
15861
|
},
|
|
15862
|
+
{
|
|
15863
|
+
"kind": "method",
|
|
15864
|
+
"name": "deepClone",
|
|
15865
|
+
"return": {
|
|
15866
|
+
"type": {
|
|
15867
|
+
"text": "Node"
|
|
15868
|
+
}
|
|
15869
|
+
},
|
|
15870
|
+
"inheritedFrom": {
|
|
15871
|
+
"name": "LifecycleMixin",
|
|
15872
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
15873
|
+
}
|
|
15874
|
+
},
|
|
15892
15875
|
{
|
|
15893
15876
|
"kind": "field",
|
|
15894
15877
|
"name": "shouldRunDisconnect",
|
|
@@ -15940,1623 +15923,1483 @@
|
|
|
15940
15923
|
},
|
|
15941
15924
|
{
|
|
15942
15925
|
"kind": "field",
|
|
15943
|
-
"name": "
|
|
15926
|
+
"name": "_presentation",
|
|
15944
15927
|
"type": {
|
|
15945
|
-
"text": "
|
|
15928
|
+
"text": "ComponentPresentation | null | undefined"
|
|
15946
15929
|
},
|
|
15947
|
-
"privacy": "
|
|
15948
|
-
"default": "
|
|
15930
|
+
"privacy": "private",
|
|
15931
|
+
"default": "void 0",
|
|
15949
15932
|
"inheritedFrom": {
|
|
15950
|
-
"name": "
|
|
15951
|
-
"module": "src/
|
|
15933
|
+
"name": "FoundationElement",
|
|
15934
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
15952
15935
|
}
|
|
15953
15936
|
},
|
|
15954
15937
|
{
|
|
15955
15938
|
"kind": "field",
|
|
15956
|
-
"name": "
|
|
15939
|
+
"name": "$presentation",
|
|
15957
15940
|
"type": {
|
|
15958
|
-
"text": "
|
|
15941
|
+
"text": "ComponentPresentation | null"
|
|
15959
15942
|
},
|
|
15960
|
-
"
|
|
15943
|
+
"privacy": "public",
|
|
15944
|
+
"description": "A property which resolves the ComponentPresentation instance\nfor the current component.",
|
|
15961
15945
|
"inheritedFrom": {
|
|
15962
|
-
"name": "
|
|
15963
|
-
"module": "src/
|
|
15946
|
+
"name": "FoundationElement",
|
|
15947
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
15964
15948
|
}
|
|
15965
15949
|
},
|
|
15966
15950
|
{
|
|
15967
15951
|
"kind": "field",
|
|
15968
|
-
"name": "
|
|
15952
|
+
"name": "template",
|
|
15969
15953
|
"type": {
|
|
15970
|
-
"text": "
|
|
15954
|
+
"text": "ElementViewTemplate | void | null"
|
|
15971
15955
|
},
|
|
15972
|
-
"privacy": "
|
|
15956
|
+
"privacy": "public",
|
|
15957
|
+
"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.",
|
|
15973
15958
|
"inheritedFrom": {
|
|
15974
|
-
"name": "
|
|
15975
|
-
"module": "src/
|
|
15959
|
+
"name": "FoundationElement",
|
|
15960
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
15976
15961
|
}
|
|
15977
15962
|
},
|
|
15978
15963
|
{
|
|
15979
15964
|
"kind": "method",
|
|
15980
|
-
"name": "
|
|
15965
|
+
"name": "templateChanged",
|
|
15981
15966
|
"privacy": "protected",
|
|
15967
|
+
"return": {
|
|
15968
|
+
"type": {
|
|
15969
|
+
"text": "void"
|
|
15970
|
+
}
|
|
15971
|
+
},
|
|
15982
15972
|
"inheritedFrom": {
|
|
15983
|
-
"name": "
|
|
15984
|
-
"module": "src/
|
|
15985
|
-
}
|
|
15986
|
-
},
|
|
15987
|
-
{
|
|
15988
|
-
"kind": "method",
|
|
15989
|
-
"name": "unsubscribeFromConnection",
|
|
15990
|
-
"privacy": "protected",
|
|
15991
|
-
"inheritedFrom": {
|
|
15992
|
-
"name": "GridProBaseDatasource",
|
|
15993
|
-
"module": "src/datasource/base.datasource.ts"
|
|
15994
|
-
}
|
|
15995
|
-
},
|
|
15996
|
-
{
|
|
15997
|
-
"kind": "method",
|
|
15998
|
-
"name": "generateColumnDefsFromMetadata",
|
|
15999
|
-
"privacy": "protected",
|
|
16000
|
-
"return": {
|
|
16001
|
-
"type": {
|
|
16002
|
-
"text": "ColDef[]"
|
|
16003
|
-
}
|
|
16004
|
-
},
|
|
16005
|
-
"parameters": [
|
|
16006
|
-
{
|
|
16007
|
-
"name": "fieldsMetadata",
|
|
16008
|
-
"type": {
|
|
16009
|
-
"text": "FieldMetadata[]"
|
|
16010
|
-
}
|
|
16011
|
-
},
|
|
16012
|
-
{
|
|
16013
|
-
"name": "getFilterParamsByFieldType",
|
|
16014
|
-
"type": {
|
|
16015
|
-
"text": "(field: FieldMetadata) => ColDef['filterParams'] | any"
|
|
16016
|
-
}
|
|
16017
|
-
},
|
|
16018
|
-
{
|
|
16019
|
-
"name": "getFilterByFieldType",
|
|
16020
|
-
"type": {
|
|
16021
|
-
"text": "(type: FieldTypeEnum) => string"
|
|
16022
|
-
}
|
|
16023
|
-
}
|
|
16024
|
-
],
|
|
16025
|
-
"inheritedFrom": {
|
|
16026
|
-
"name": "GridProBaseDatasource",
|
|
16027
|
-
"module": "src/datasource/base.datasource.ts"
|
|
16028
|
-
}
|
|
16029
|
-
},
|
|
16030
|
-
{
|
|
16031
|
-
"kind": "method",
|
|
16032
|
-
"name": "applyAllTransactions",
|
|
16033
|
-
"privacy": "protected",
|
|
16034
|
-
"inheritedFrom": {
|
|
16035
|
-
"name": "GridProBaseDatasource",
|
|
16036
|
-
"module": "src/datasource/base.datasource.ts"
|
|
16037
|
-
}
|
|
16038
|
-
},
|
|
16039
|
-
{
|
|
16040
|
-
"kind": "method",
|
|
16041
|
-
"name": "applyMappedTransaction",
|
|
16042
|
-
"privacy": "private",
|
|
16043
|
-
"parameters": [
|
|
16044
|
-
{
|
|
16045
|
-
"name": "transaction",
|
|
16046
|
-
"type": {
|
|
16047
|
-
"text": "TransactionData"
|
|
16048
|
-
}
|
|
16049
|
-
},
|
|
16050
|
-
{
|
|
16051
|
-
"name": "operation",
|
|
16052
|
-
"type": {
|
|
16053
|
-
"text": "OperationType"
|
|
16054
|
-
}
|
|
16055
|
-
}
|
|
16056
|
-
],
|
|
16057
|
-
"inheritedFrom": {
|
|
16058
|
-
"name": "GridProBaseDatasource",
|
|
16059
|
-
"module": "src/datasource/base.datasource.ts"
|
|
16060
|
-
}
|
|
16061
|
-
},
|
|
16062
|
-
{
|
|
16063
|
-
"kind": "method",
|
|
16064
|
-
"name": "mapTransaction",
|
|
16065
|
-
"privacy": "private",
|
|
16066
|
-
"parameters": [
|
|
16067
|
-
{
|
|
16068
|
-
"name": "transaction",
|
|
16069
|
-
"type": {
|
|
16070
|
-
"text": "TransactionData"
|
|
16071
|
-
},
|
|
16072
|
-
"description": "The transaction data to be mapped."
|
|
16073
|
-
},
|
|
16074
|
-
{
|
|
16075
|
-
"name": "operations",
|
|
16076
|
-
"default": "Object.values(OperationType)",
|
|
16077
|
-
"type": {
|
|
16078
|
-
"text": "OperationType[]"
|
|
16079
|
-
},
|
|
16080
|
-
"description": "The operations to be mapped. Can be 'add', 'update' or 'remove'."
|
|
16081
|
-
}
|
|
16082
|
-
],
|
|
16083
|
-
"description": "Maps the transaction data to the row data mapper function, if it exists.",
|
|
16084
|
-
"return": {
|
|
16085
|
-
"type": {
|
|
16086
|
-
"text": ""
|
|
16087
|
-
}
|
|
16088
|
-
},
|
|
16089
|
-
"inheritedFrom": {
|
|
16090
|
-
"name": "GridProBaseDatasource",
|
|
16091
|
-
"module": "src/datasource/base.datasource.ts"
|
|
16092
|
-
}
|
|
16093
|
-
},
|
|
16094
|
-
{
|
|
16095
|
-
"kind": "field",
|
|
16096
|
-
"name": "pagination",
|
|
16097
|
-
"type": {
|
|
16098
|
-
"text": "boolean"
|
|
16099
|
-
},
|
|
16100
|
-
"privacy": "protected",
|
|
16101
|
-
"inheritedFrom": {
|
|
16102
|
-
"name": "GridProBaseDatasource",
|
|
16103
|
-
"module": "src/datasource/base.datasource.ts"
|
|
15973
|
+
"name": "FoundationElement",
|
|
15974
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
16104
15975
|
}
|
|
16105
15976
|
},
|
|
16106
15977
|
{
|
|
16107
15978
|
"kind": "field",
|
|
16108
|
-
"name": "
|
|
15979
|
+
"name": "styles",
|
|
16109
15980
|
"type": {
|
|
16110
|
-
"text": "
|
|
15981
|
+
"text": "ElementStyles | void | null"
|
|
16111
15982
|
},
|
|
16112
|
-
"privacy": "private",
|
|
16113
|
-
"default": "false",
|
|
16114
|
-
"inheritedFrom": {
|
|
16115
|
-
"name": "GridProBaseDatasource",
|
|
16116
|
-
"module": "src/datasource/base.datasource.ts"
|
|
16117
|
-
}
|
|
16118
|
-
},
|
|
16119
|
-
{
|
|
16120
|
-
"kind": "method",
|
|
16121
|
-
"name": "setDisconnected",
|
|
16122
15983
|
"privacy": "public",
|
|
16123
|
-
"
|
|
16124
|
-
{
|
|
16125
|
-
"name": "disconnected",
|
|
16126
|
-
"type": {
|
|
16127
|
-
"text": "boolean"
|
|
16128
|
-
},
|
|
16129
|
-
"description": "true to set, false to remove"
|
|
16130
|
-
}
|
|
16131
|
-
],
|
|
16132
|
-
"description": "Sets the disconnected state and emits appropriate events.",
|
|
15984
|
+
"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.",
|
|
16133
15985
|
"inheritedFrom": {
|
|
16134
|
-
"name": "
|
|
16135
|
-
"module": "src/
|
|
15986
|
+
"name": "FoundationElement",
|
|
15987
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
16136
15988
|
}
|
|
16137
15989
|
},
|
|
16138
15990
|
{
|
|
16139
15991
|
"kind": "method",
|
|
16140
|
-
"name": "
|
|
16141
|
-
"privacy": "
|
|
15992
|
+
"name": "stylesChanged",
|
|
15993
|
+
"privacy": "protected",
|
|
16142
15994
|
"return": {
|
|
16143
15995
|
"type": {
|
|
16144
|
-
"text": "
|
|
15996
|
+
"text": "void"
|
|
16145
15997
|
}
|
|
16146
15998
|
},
|
|
16147
|
-
"description": "Returns true if the datasource is disconnected.",
|
|
16148
15999
|
"inheritedFrom": {
|
|
16149
|
-
"name": "
|
|
16150
|
-
"module": "src/
|
|
16000
|
+
"name": "FoundationElement",
|
|
16001
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
16151
16002
|
}
|
|
16152
16003
|
},
|
|
16153
16004
|
{
|
|
16154
16005
|
"kind": "method",
|
|
16155
|
-
"name": "
|
|
16006
|
+
"name": "compose",
|
|
16156
16007
|
"privacy": "public",
|
|
16008
|
+
"static": true,
|
|
16157
16009
|
"return": {
|
|
16158
16010
|
"type": {
|
|
16159
|
-
"text": "
|
|
16011
|
+
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
16160
16012
|
}
|
|
16161
16013
|
},
|
|
16162
16014
|
"parameters": [
|
|
16163
16015
|
{
|
|
16164
|
-
"name": "
|
|
16016
|
+
"name": "this",
|
|
16165
16017
|
"type": {
|
|
16166
|
-
"text": "
|
|
16018
|
+
"text": "K"
|
|
16167
16019
|
}
|
|
16168
16020
|
},
|
|
16169
16021
|
{
|
|
16170
|
-
"name": "
|
|
16022
|
+
"name": "elementDefinition",
|
|
16171
16023
|
"type": {
|
|
16172
|
-
"text": "
|
|
16173
|
-
}
|
|
16024
|
+
"text": "T"
|
|
16025
|
+
},
|
|
16026
|
+
"description": "The definition of the element to create the registry\nfunction for."
|
|
16174
16027
|
}
|
|
16175
16028
|
],
|
|
16176
|
-
"description": "
|
|
16029
|
+
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
16177
16030
|
"inheritedFrom": {
|
|
16178
|
-
"name": "
|
|
16179
|
-
"module": "src/
|
|
16031
|
+
"name": "FoundationElement",
|
|
16032
|
+
"module": "src/foundation-element/foundation-element.ts"
|
|
16180
16033
|
}
|
|
16181
|
-
}
|
|
16034
|
+
}
|
|
16035
|
+
],
|
|
16036
|
+
"attributes": [
|
|
16182
16037
|
{
|
|
16183
|
-
"kind": "field",
|
|
16184
|
-
"name": "connect",
|
|
16185
16038
|
"type": {
|
|
16186
|
-
"text": "
|
|
16039
|
+
"text": "boolean"
|
|
16187
16040
|
},
|
|
16188
|
-
"
|
|
16189
|
-
|
|
16190
|
-
"module": "src/datasource/base.datasource.ts"
|
|
16191
|
-
}
|
|
16041
|
+
"description": "Whether to disable control of the component",
|
|
16042
|
+
"fieldName": "disabled"
|
|
16192
16043
|
},
|
|
16193
16044
|
{
|
|
16194
|
-
"
|
|
16195
|
-
"name": "datasource",
|
|
16045
|
+
"name": "resource-name",
|
|
16196
16046
|
"type": {
|
|
16197
|
-
"text": "
|
|
16047
|
+
"text": "string"
|
|
16198
16048
|
},
|
|
16199
|
-
"
|
|
16200
|
-
|
|
16201
|
-
"module": "src/datasource/base.datasource.ts"
|
|
16202
|
-
}
|
|
16049
|
+
"description": "The name of the reqrep to get the options from",
|
|
16050
|
+
"fieldName": "resourceName"
|
|
16203
16051
|
},
|
|
16204
16052
|
{
|
|
16205
|
-
"
|
|
16206
|
-
"name": "deferredGridOptions",
|
|
16053
|
+
"name": "search-key",
|
|
16207
16054
|
"type": {
|
|
16208
|
-
"text": "
|
|
16055
|
+
"text": "string | string[] | undefined"
|
|
16209
16056
|
},
|
|
16210
|
-
"
|
|
16211
|
-
|
|
16212
|
-
"module": "src/datasource/base.datasource.ts"
|
|
16213
|
-
}
|
|
16057
|
+
"description": "The key(s) to search by. Use comma-separated values for multiple keys (e.g. search-key=\"NAME,ID\").",
|
|
16058
|
+
"fieldName": "searchKey"
|
|
16214
16059
|
},
|
|
16215
16060
|
{
|
|
16216
|
-
"
|
|
16217
|
-
"name": "deferredColumnStates",
|
|
16061
|
+
"name": "advanced-search-req",
|
|
16218
16062
|
"type": {
|
|
16219
|
-
"text": "
|
|
16063
|
+
"text": "boolean"
|
|
16220
16064
|
},
|
|
16221
|
-
"
|
|
16222
|
-
|
|
16223
|
-
|
|
16224
|
-
}
|
|
16065
|
+
"default": "false",
|
|
16066
|
+
"description": "Tells whether a given request supports lookup by Groovy Expressions.",
|
|
16067
|
+
"fieldName": "requestSupportsAdvancedSearch"
|
|
16225
16068
|
},
|
|
16226
16069
|
{
|
|
16227
|
-
"
|
|
16228
|
-
"name": "rowDataMapper",
|
|
16070
|
+
"name": "value-key",
|
|
16229
16071
|
"type": {
|
|
16230
|
-
"text": "
|
|
16072
|
+
"text": "string"
|
|
16231
16073
|
},
|
|
16232
|
-
"description": "
|
|
16233
|
-
"
|
|
16234
|
-
"name": "GenesisGridDatasourceElement",
|
|
16235
|
-
"module": "src/datasource/base.datasource.ts"
|
|
16236
|
-
}
|
|
16074
|
+
"description": "The key used as the value sent to the server",
|
|
16075
|
+
"fieldName": "valueKey"
|
|
16237
16076
|
},
|
|
16238
16077
|
{
|
|
16239
|
-
"
|
|
16240
|
-
"name": "criteria",
|
|
16078
|
+
"name": "label-key",
|
|
16241
16079
|
"type": {
|
|
16242
16080
|
"text": "string"
|
|
16243
16081
|
},
|
|
16244
|
-
"description": "
|
|
16245
|
-
"
|
|
16246
|
-
"name": "GenesisGridDatasourceElement",
|
|
16247
|
-
"module": "src/datasource/base.datasource.ts"
|
|
16248
|
-
}
|
|
16082
|
+
"description": "The key used as the label displayed in the UI",
|
|
16083
|
+
"fieldName": "labelKey"
|
|
16249
16084
|
},
|
|
16250
16085
|
{
|
|
16251
|
-
"
|
|
16252
|
-
"name": "isSnapshot",
|
|
16086
|
+
"name": "dropdown-placement",
|
|
16253
16087
|
"type": {
|
|
16254
|
-
"text": "
|
|
16088
|
+
"text": "'bottom-right' | 'bottom-left' | 'top-right' | 'top-left'"
|
|
16255
16089
|
},
|
|
16256
|
-
"
|
|
16257
|
-
"
|
|
16258
|
-
"inheritedFrom": {
|
|
16259
|
-
"name": "GenesisGridDatasourceElement",
|
|
16260
|
-
"module": "src/datasource/base.datasource.ts"
|
|
16261
|
-
}
|
|
16090
|
+
"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",
|
|
16091
|
+
"fieldName": "dropdownPlacement"
|
|
16262
16092
|
},
|
|
16263
16093
|
{
|
|
16264
|
-
"
|
|
16265
|
-
"name": "maxRows",
|
|
16094
|
+
"name": "dropdownWidth",
|
|
16266
16095
|
"type": {
|
|
16267
16096
|
"text": "number"
|
|
16268
16097
|
},
|
|
16269
|
-
"description": "
|
|
16270
|
-
"
|
|
16271
|
-
|
|
16272
|
-
|
|
16273
|
-
|
|
16274
|
-
|
|
16098
|
+
"description": "Optionally specifies the width of the dropdown",
|
|
16099
|
+
"fieldName": "dropdownWidth"
|
|
16100
|
+
}
|
|
16101
|
+
],
|
|
16102
|
+
"mixins": [
|
|
16103
|
+
{
|
|
16104
|
+
"name": "LifecycleMixin",
|
|
16105
|
+
"package": "@genesislcap/foundation-utils"
|
|
16106
|
+
}
|
|
16107
|
+
],
|
|
16108
|
+
"superclass": {
|
|
16109
|
+
"name": "FoundationElement",
|
|
16110
|
+
"package": "@microsoft/fast-foundation"
|
|
16111
|
+
},
|
|
16112
|
+
"tagName": "%%prefix%%-multicolumn-dropdown",
|
|
16113
|
+
"customElement": true
|
|
16114
|
+
},
|
|
16115
|
+
{
|
|
16116
|
+
"kind": "variable",
|
|
16117
|
+
"name": "foundationMulticolumnDropdown",
|
|
16118
|
+
"description": "A function that returns a Multicolumn Dropdown registration for configuring the component with a DesignSystem.",
|
|
16119
|
+
"privacy": "public"
|
|
16120
|
+
}
|
|
16121
|
+
],
|
|
16122
|
+
"exports": [
|
|
16123
|
+
{
|
|
16124
|
+
"kind": "js",
|
|
16125
|
+
"name": "wasClickOutsideElement",
|
|
16126
|
+
"declaration": {
|
|
16127
|
+
"name": "wasClickOutsideElement",
|
|
16128
|
+
"module": "src/multicolumn-dropdown/multicolumn-dropdown.ts"
|
|
16129
|
+
}
|
|
16130
|
+
},
|
|
16131
|
+
{
|
|
16132
|
+
"kind": "js",
|
|
16133
|
+
"name": "MulticolumnDropdown",
|
|
16134
|
+
"declaration": {
|
|
16135
|
+
"name": "MulticolumnDropdown",
|
|
16136
|
+
"module": "src/multicolumn-dropdown/multicolumn-dropdown.ts"
|
|
16137
|
+
}
|
|
16138
|
+
},
|
|
16139
|
+
{
|
|
16140
|
+
"kind": "js",
|
|
16141
|
+
"name": "foundationMulticolumnDropdown",
|
|
16142
|
+
"declaration": {
|
|
16143
|
+
"name": "foundationMulticolumnDropdown",
|
|
16144
|
+
"module": "src/multicolumn-dropdown/multicolumn-dropdown.ts"
|
|
16145
|
+
}
|
|
16146
|
+
}
|
|
16147
|
+
]
|
|
16148
|
+
},
|
|
16149
|
+
{
|
|
16150
|
+
"kind": "javascript-module",
|
|
16151
|
+
"path": "src/grid-pro-genesis-datasource/datasource-events.types.ts",
|
|
16152
|
+
"declarations": [
|
|
16153
|
+
{
|
|
16154
|
+
"kind": "variable",
|
|
16155
|
+
"name": "datasourceEventNames",
|
|
16156
|
+
"type": {
|
|
16157
|
+
"text": "{\n // Initialization events\n initialize: 'datasource-initialize',\n ready: 'datasource-ready',\n\n // Data events\n dataLoaded: 'datasource-data-loaded',\n dataChanged: 'datasource-data-changed',\n dataCleared: 'datasource-data-cleared',\n\n // Schema events\n schemaUpdated: 'datasource-schema-updated',\n\n // Status events\n loadingStarted: 'datasource-loading-started',\n loadingFinished: 'datasource-loading-finished',\n noDataAvailable: 'datasource-no-data-available',\n moreDataAvailable: 'datasource-more-data-available',\n\n // Filter events\n filtersRestored: 'datasource-filters-restored',\n\n // Error events\n error: 'datasource-error',\n\n // Destroy datasource events\n destroy: 'datasource-destroy',\n\n // Size events\n sizeChanged: 'datasource-size-changed',\n\n // Server-side specific events\n cacheFilterConfig: 'cache-filter-config',\n refreshServerSide: 'refresh-server-side',\n setServerSideDatasource: 'set-server-side-datasource',\n addGridCssClass: 'add-grid-css-class',\n removeGridCssClass: 'remove-grid-css-class',\n applyServerSideTransaction: 'apply-server-side-transaction',\n}"
|
|
16158
|
+
},
|
|
16159
|
+
"default": "{\n // Initialization events\n initialize: 'datasource-initialize',\n ready: 'datasource-ready',\n\n // Data events\n dataLoaded: 'datasource-data-loaded',\n dataChanged: 'datasource-data-changed',\n dataCleared: 'datasource-data-cleared',\n\n // Schema events\n schemaUpdated: 'datasource-schema-updated',\n\n // Status events\n loadingStarted: 'datasource-loading-started',\n loadingFinished: 'datasource-loading-finished',\n noDataAvailable: 'datasource-no-data-available',\n moreDataAvailable: 'datasource-more-data-available',\n\n // Filter events\n filtersRestored: 'datasource-filters-restored',\n\n // Error events\n error: 'datasource-error',\n\n // Destroy datasource events\n destroy: 'datasource-destroy',\n\n // Size events\n sizeChanged: 'datasource-size-changed',\n\n // Server-side specific events\n cacheFilterConfig: 'cache-filter-config',\n refreshServerSide: 'refresh-server-side',\n setServerSideDatasource: 'set-server-side-datasource',\n addGridCssClass: 'add-grid-css-class',\n removeGridCssClass: 'remove-grid-css-class',\n applyServerSideTransaction: 'apply-server-side-transaction',\n}",
|
|
16160
|
+
"description": "Event names for datasource-grid communication\nThese represent datasource operations, not grid-specific actions"
|
|
16161
|
+
}
|
|
16162
|
+
],
|
|
16163
|
+
"exports": [
|
|
16164
|
+
{
|
|
16165
|
+
"kind": "js",
|
|
16166
|
+
"name": "datasourceEventNames",
|
|
16167
|
+
"declaration": {
|
|
16168
|
+
"name": "datasourceEventNames",
|
|
16169
|
+
"module": "src/grid-pro-genesis-datasource/datasource-events.types.ts"
|
|
16170
|
+
}
|
|
16171
|
+
}
|
|
16172
|
+
]
|
|
16173
|
+
},
|
|
16174
|
+
{
|
|
16175
|
+
"kind": "javascript-module",
|
|
16176
|
+
"path": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts",
|
|
16177
|
+
"declarations": [
|
|
16178
|
+
{
|
|
16179
|
+
"kind": "class",
|
|
16180
|
+
"description": "The Genesis Datasource element, for CSRM-compatible data fetching and used exclusively by the GridPro element.",
|
|
16181
|
+
"name": "GridProGenesisDatasource",
|
|
16182
|
+
"members": [
|
|
16275
16183
|
{
|
|
16276
16184
|
"kind": "field",
|
|
16277
|
-
"name": "
|
|
16185
|
+
"name": "cachedRowArray",
|
|
16278
16186
|
"type": {
|
|
16279
|
-
"text": "
|
|
16187
|
+
"text": "any[]"
|
|
16280
16188
|
},
|
|
16281
|
-
"
|
|
16282
|
-
"
|
|
16283
|
-
"name": "GenesisGridDatasourceElement",
|
|
16284
|
-
"module": "src/datasource/base.datasource.ts"
|
|
16285
|
-
}
|
|
16189
|
+
"privacy": "private",
|
|
16190
|
+
"default": "[]"
|
|
16286
16191
|
},
|
|
16287
16192
|
{
|
|
16288
16193
|
"kind": "field",
|
|
16289
|
-
"name": "
|
|
16194
|
+
"name": "transactionData",
|
|
16290
16195
|
"type": {
|
|
16291
|
-
"text": "
|
|
16196
|
+
"text": "TransactionData"
|
|
16292
16197
|
},
|
|
16293
|
-
"
|
|
16198
|
+
"privacy": "protected",
|
|
16199
|
+
"default": "{\n add: [],\n remove: [],\n update: [],\n addIndex: 0,\n }",
|
|
16294
16200
|
"inheritedFrom": {
|
|
16295
|
-
"name": "
|
|
16201
|
+
"name": "GridProBaseDatasource",
|
|
16296
16202
|
"module": "src/datasource/base.datasource.ts"
|
|
16297
16203
|
}
|
|
16298
16204
|
},
|
|
16205
|
+
{
|
|
16206
|
+
"kind": "method",
|
|
16207
|
+
"name": "criteriaChanged",
|
|
16208
|
+
"parameters": [
|
|
16209
|
+
{
|
|
16210
|
+
"name": "oldCriteria",
|
|
16211
|
+
"type": {
|
|
16212
|
+
"text": "string"
|
|
16213
|
+
}
|
|
16214
|
+
},
|
|
16215
|
+
{
|
|
16216
|
+
"name": "newCriteria",
|
|
16217
|
+
"type": {
|
|
16218
|
+
"text": "string"
|
|
16219
|
+
}
|
|
16220
|
+
}
|
|
16221
|
+
]
|
|
16222
|
+
},
|
|
16223
|
+
{
|
|
16224
|
+
"kind": "method",
|
|
16225
|
+
"name": "requestChanged",
|
|
16226
|
+
"parameters": [
|
|
16227
|
+
{
|
|
16228
|
+
"name": "oldRequest",
|
|
16229
|
+
"type": {
|
|
16230
|
+
"text": "string"
|
|
16231
|
+
}
|
|
16232
|
+
},
|
|
16233
|
+
{
|
|
16234
|
+
"name": "newRequest",
|
|
16235
|
+
"type": {
|
|
16236
|
+
"text": "string"
|
|
16237
|
+
}
|
|
16238
|
+
}
|
|
16239
|
+
]
|
|
16240
|
+
},
|
|
16241
|
+
{
|
|
16242
|
+
"kind": "method",
|
|
16243
|
+
"name": "resourceNameChanged",
|
|
16244
|
+
"parameters": [
|
|
16245
|
+
{
|
|
16246
|
+
"name": "oldValue",
|
|
16247
|
+
"type": {
|
|
16248
|
+
"text": "string"
|
|
16249
|
+
}
|
|
16250
|
+
},
|
|
16251
|
+
{
|
|
16252
|
+
"name": "newValue",
|
|
16253
|
+
"type": {
|
|
16254
|
+
"text": "string"
|
|
16255
|
+
}
|
|
16256
|
+
}
|
|
16257
|
+
]
|
|
16258
|
+
},
|
|
16299
16259
|
{
|
|
16300
16260
|
"kind": "field",
|
|
16301
|
-
"name": "
|
|
16261
|
+
"name": "keepColDefsOnClearRowData",
|
|
16302
16262
|
"type": {
|
|
16303
|
-
"text": "
|
|
16263
|
+
"text": "boolean"
|
|
16304
16264
|
},
|
|
16305
|
-
"
|
|
16265
|
+
"privacy": "public",
|
|
16266
|
+
"default": "false",
|
|
16306
16267
|
"inheritedFrom": {
|
|
16307
|
-
"name": "
|
|
16268
|
+
"name": "GridProBaseDatasource",
|
|
16308
16269
|
"module": "src/datasource/base.datasource.ts"
|
|
16309
16270
|
}
|
|
16310
16271
|
},
|
|
16311
16272
|
{
|
|
16312
16273
|
"kind": "field",
|
|
16313
|
-
"name": "
|
|
16274
|
+
"name": "dataSub",
|
|
16314
16275
|
"type": {
|
|
16315
|
-
"text": "
|
|
16276
|
+
"text": "Subscription"
|
|
16316
16277
|
},
|
|
16317
|
-
"
|
|
16318
|
-
"inheritedFrom": {
|
|
16319
|
-
"name": "GenesisGridDatasourceElement",
|
|
16320
|
-
"module": "src/datasource/base.datasource.ts"
|
|
16321
|
-
}
|
|
16278
|
+
"privacy": "private"
|
|
16322
16279
|
},
|
|
16323
16280
|
{
|
|
16324
16281
|
"kind": "field",
|
|
16325
|
-
"name": "
|
|
16282
|
+
"name": "updateSub",
|
|
16326
16283
|
"type": {
|
|
16327
|
-
"text": "
|
|
16284
|
+
"text": "Subscription"
|
|
16328
16285
|
},
|
|
16329
|
-
"
|
|
16330
|
-
"inheritedFrom": {
|
|
16331
|
-
"name": "GenesisGridDatasourceElement",
|
|
16332
|
-
"module": "src/datasource/base.datasource.ts"
|
|
16333
|
-
}
|
|
16286
|
+
"privacy": "private"
|
|
16334
16287
|
},
|
|
16335
16288
|
{
|
|
16336
16289
|
"kind": "field",
|
|
16337
|
-
"name": "
|
|
16290
|
+
"name": "requiresFullRowDataAndColDefs",
|
|
16338
16291
|
"type": {
|
|
16339
16292
|
"text": "boolean"
|
|
16340
16293
|
},
|
|
16341
|
-
"
|
|
16342
|
-
"
|
|
16343
|
-
"inheritedFrom": {
|
|
16344
|
-
"name": "GenesisGridDatasourceElement",
|
|
16345
|
-
"module": "src/datasource/base.datasource.ts"
|
|
16346
|
-
}
|
|
16294
|
+
"privacy": "private",
|
|
16295
|
+
"default": "true"
|
|
16347
16296
|
},
|
|
16348
16297
|
{
|
|
16349
16298
|
"kind": "field",
|
|
16350
|
-
"name": "
|
|
16299
|
+
"name": "_lastMoreRows",
|
|
16351
16300
|
"type": {
|
|
16352
16301
|
"text": "boolean"
|
|
16353
16302
|
},
|
|
16354
|
-
"
|
|
16355
|
-
"
|
|
16356
|
-
"inheritedFrom": {
|
|
16357
|
-
"name": "GenesisGridDatasourceElement",
|
|
16358
|
-
"module": "src/datasource/base.datasource.ts"
|
|
16359
|
-
}
|
|
16303
|
+
"privacy": "private",
|
|
16304
|
+
"default": "false"
|
|
16360
16305
|
},
|
|
16361
16306
|
{
|
|
16362
16307
|
"kind": "field",
|
|
16363
|
-
"name": "
|
|
16308
|
+
"name": "_isMoreRowsResult",
|
|
16364
16309
|
"type": {
|
|
16365
16310
|
"text": "boolean"
|
|
16366
16311
|
},
|
|
16367
|
-
"
|
|
16368
|
-
"
|
|
16369
|
-
"inheritedFrom": {
|
|
16370
|
-
"name": "GenesisGridDatasourceElement",
|
|
16371
|
-
"module": "src/datasource/base.datasource.ts"
|
|
16372
|
-
}
|
|
16312
|
+
"privacy": "private",
|
|
16313
|
+
"default": "false"
|
|
16373
16314
|
},
|
|
16374
16315
|
{
|
|
16375
16316
|
"kind": "field",
|
|
16376
|
-
"name": "
|
|
16317
|
+
"name": "_sourceRef",
|
|
16377
16318
|
"type": {
|
|
16378
|
-
"text": "
|
|
16319
|
+
"text": "string"
|
|
16379
16320
|
},
|
|
16380
|
-
"
|
|
16381
|
-
"inheritedFrom": {
|
|
16382
|
-
"name": "GenesisGridDatasourceElement",
|
|
16383
|
-
"module": "src/datasource/base.datasource.ts"
|
|
16384
|
-
}
|
|
16321
|
+
"privacy": "private"
|
|
16385
16322
|
},
|
|
16386
16323
|
{
|
|
16387
16324
|
"kind": "field",
|
|
16388
|
-
"name": "
|
|
16325
|
+
"name": "_nextOffset",
|
|
16389
16326
|
"type": {
|
|
16390
16327
|
"text": "number"
|
|
16391
16328
|
},
|
|
16392
|
-
"
|
|
16393
|
-
"
|
|
16394
|
-
"name": "GenesisGridDatasourceElement",
|
|
16395
|
-
"module": "src/datasource/base.datasource.ts"
|
|
16396
|
-
}
|
|
16329
|
+
"privacy": "private",
|
|
16330
|
+
"default": "0"
|
|
16397
16331
|
},
|
|
16398
16332
|
{
|
|
16399
16333
|
"kind": "field",
|
|
16400
|
-
"name": "
|
|
16334
|
+
"name": "_loadMoreCount",
|
|
16401
16335
|
"type": {
|
|
16402
|
-
"text": "
|
|
16336
|
+
"text": "number"
|
|
16403
16337
|
},
|
|
16404
|
-
"
|
|
16405
|
-
"
|
|
16406
|
-
"inheritedFrom": {
|
|
16407
|
-
"name": "GenesisGridDatasourceElement",
|
|
16408
|
-
"module": "src/datasource/base.datasource.ts"
|
|
16409
|
-
}
|
|
16338
|
+
"privacy": "private",
|
|
16339
|
+
"default": "0"
|
|
16410
16340
|
},
|
|
16411
16341
|
{
|
|
16412
|
-
"kind": "
|
|
16413
|
-
"name": "
|
|
16414
|
-
"
|
|
16415
|
-
"
|
|
16342
|
+
"kind": "method",
|
|
16343
|
+
"name": "deepClone",
|
|
16344
|
+
"return": {
|
|
16345
|
+
"type": {
|
|
16346
|
+
"text": "Node"
|
|
16347
|
+
}
|
|
16416
16348
|
},
|
|
16417
|
-
"description": "Similar to fields but for Request Server scenarios. This optional parameter enables you to specify request fields, which can include wildcards.",
|
|
16418
16349
|
"inheritedFrom": {
|
|
16419
|
-
"name": "
|
|
16420
|
-
"module": "src/
|
|
16350
|
+
"name": "LifecycleMixin",
|
|
16351
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
16421
16352
|
}
|
|
16422
16353
|
},
|
|
16423
16354
|
{
|
|
16424
|
-
"kind": "
|
|
16425
|
-
"name": "
|
|
16426
|
-
"
|
|
16427
|
-
|
|
16355
|
+
"kind": "method",
|
|
16356
|
+
"name": "colDefsDeepClone",
|
|
16357
|
+
"privacy": "private",
|
|
16358
|
+
"return": {
|
|
16359
|
+
"type": {
|
|
16360
|
+
"text": "ColDef[]"
|
|
16361
|
+
}
|
|
16428
16362
|
},
|
|
16429
|
-
"
|
|
16430
|
-
|
|
16431
|
-
|
|
16432
|
-
|
|
16433
|
-
|
|
16434
|
-
|
|
16363
|
+
"parameters": [
|
|
16364
|
+
{
|
|
16365
|
+
"name": "key",
|
|
16366
|
+
"type": {
|
|
16367
|
+
"text": "string"
|
|
16368
|
+
}
|
|
16369
|
+
},
|
|
16370
|
+
{
|
|
16371
|
+
"name": "copy",
|
|
16372
|
+
"type": {
|
|
16373
|
+
"text": "any"
|
|
16374
|
+
}
|
|
16375
|
+
}
|
|
16376
|
+
]
|
|
16435
16377
|
},
|
|
16436
16378
|
{
|
|
16437
|
-
"kind": "
|
|
16438
|
-
"name": "
|
|
16439
|
-
"
|
|
16440
|
-
|
|
16441
|
-
|
|
16442
|
-
|
|
16443
|
-
|
|
16379
|
+
"kind": "method",
|
|
16380
|
+
"name": "init",
|
|
16381
|
+
"parameters": [
|
|
16382
|
+
{
|
|
16383
|
+
"name": "keepColDefsOnClearRowData",
|
|
16384
|
+
"optional": true,
|
|
16385
|
+
"type": {
|
|
16386
|
+
"text": "boolean"
|
|
16387
|
+
}
|
|
16388
|
+
},
|
|
16389
|
+
{
|
|
16390
|
+
"description": "Optionally set the `gridOptions` up with column definitions",
|
|
16391
|
+
"name": "columnDefinitions"
|
|
16392
|
+
},
|
|
16393
|
+
{
|
|
16394
|
+
"description": "Optionally set the grid up with column state",
|
|
16395
|
+
"name": "columnStates"
|
|
16396
|
+
}
|
|
16397
|
+
],
|
|
16398
|
+
"description": "Initializes the datasource.",
|
|
16399
|
+
"privacy": "public"
|
|
16444
16400
|
},
|
|
16445
16401
|
{
|
|
16446
|
-
"kind": "
|
|
16447
|
-
"name": "
|
|
16448
|
-
"
|
|
16449
|
-
|
|
16450
|
-
},
|
|
16451
|
-
"default": "true",
|
|
16452
|
-
"description": "Attribute to set whether the datasource should restart when it reconnects.",
|
|
16402
|
+
"kind": "method",
|
|
16403
|
+
"name": "destroy",
|
|
16404
|
+
"description": "Destroys the datasource, resetting it to its initial state.",
|
|
16405
|
+
"privacy": "public",
|
|
16453
16406
|
"inheritedFrom": {
|
|
16454
|
-
"name": "
|
|
16407
|
+
"name": "GridProBaseDatasource",
|
|
16455
16408
|
"module": "src/datasource/base.datasource.ts"
|
|
16456
16409
|
}
|
|
16457
16410
|
},
|
|
16458
16411
|
{
|
|
16459
|
-
"kind": "
|
|
16460
|
-
"name": "
|
|
16461
|
-
"
|
|
16462
|
-
|
|
16463
|
-
|
|
16464
|
-
"privacy": "protected",
|
|
16465
|
-
"readonly": true,
|
|
16466
|
-
"inheritedFrom": {
|
|
16467
|
-
"name": "GenesisGridDatasourceElement",
|
|
16468
|
-
"module": "src/datasource/base.datasource.ts"
|
|
16469
|
-
}
|
|
16412
|
+
"kind": "method",
|
|
16413
|
+
"name": "deinit",
|
|
16414
|
+
"description": "Deinitialises the datasource, resetting it to its initial state.",
|
|
16415
|
+
"deprecated": "Use `destroy` instead",
|
|
16416
|
+
"privacy": "public"
|
|
16470
16417
|
},
|
|
16471
16418
|
{
|
|
16472
|
-
"kind": "
|
|
16473
|
-
"name": "
|
|
16474
|
-
"
|
|
16475
|
-
|
|
16476
|
-
|
|
16477
|
-
"privacy": "protected",
|
|
16478
|
-
"default": "new Map()",
|
|
16479
|
-
"inheritedFrom": {
|
|
16480
|
-
"name": "GenesisGridDatasourceElement",
|
|
16481
|
-
"module": "src/datasource/base.datasource.ts"
|
|
16482
|
-
}
|
|
16419
|
+
"kind": "method",
|
|
16420
|
+
"name": "reset",
|
|
16421
|
+
"description": "Resets the datasource to its initial state.",
|
|
16422
|
+
"privacy": "public",
|
|
16423
|
+
"deprecated": "Use `destroy` instead"
|
|
16483
16424
|
},
|
|
16484
16425
|
{
|
|
16485
|
-
"kind": "
|
|
16486
|
-
"name": "
|
|
16487
|
-
"
|
|
16488
|
-
|
|
16489
|
-
},
|
|
16490
|
-
"privacy": "protected",
|
|
16491
|
-
"default": "new BehaviorSubject(new Map())",
|
|
16426
|
+
"kind": "method",
|
|
16427
|
+
"name": "restart",
|
|
16428
|
+
"description": "Restarts the datasource, uses `destroy` and `init` in sequence.",
|
|
16429
|
+
"privacy": "public",
|
|
16492
16430
|
"inheritedFrom": {
|
|
16493
|
-
"name": "
|
|
16431
|
+
"name": "GridProBaseDatasource",
|
|
16494
16432
|
"module": "src/datasource/base.datasource.ts"
|
|
16495
16433
|
}
|
|
16496
16434
|
},
|
|
16497
16435
|
{
|
|
16498
16436
|
"kind": "method",
|
|
16499
|
-
"name": "
|
|
16500
|
-
"
|
|
16501
|
-
"return": {
|
|
16502
|
-
"type": {
|
|
16503
|
-
"text": "DatasourceOptions"
|
|
16504
|
-
}
|
|
16505
|
-
},
|
|
16506
|
-
"inheritedFrom": {
|
|
16507
|
-
"name": "GenesisGridDatasourceElement",
|
|
16508
|
-
"module": "src/datasource/base.datasource.ts"
|
|
16509
|
-
}
|
|
16437
|
+
"name": "refreshRows",
|
|
16438
|
+
"description": "Force the grid to redispatch the current rows"
|
|
16510
16439
|
},
|
|
16511
16440
|
{
|
|
16512
16441
|
"kind": "method",
|
|
16513
|
-
"name": "
|
|
16514
|
-
"privacy": "
|
|
16442
|
+
"name": "reloadResourceData",
|
|
16443
|
+
"privacy": "public",
|
|
16515
16444
|
"return": {
|
|
16516
16445
|
"type": {
|
|
16517
|
-
"text": "
|
|
16446
|
+
"text": "Promise<void>"
|
|
16518
16447
|
}
|
|
16519
16448
|
},
|
|
16449
|
+
"description": "Resets the grid data while keeping columnDefs and sends a DATA_LOGOFF message if it's a stream.\nLoads resource data without full initialization (no metadata fetch).",
|
|
16520
16450
|
"inheritedFrom": {
|
|
16521
|
-
"name": "
|
|
16451
|
+
"name": "GridProBaseDatasource",
|
|
16522
16452
|
"module": "src/datasource/base.datasource.ts"
|
|
16523
16453
|
}
|
|
16524
16454
|
},
|
|
16525
16455
|
{
|
|
16526
|
-
"kind": "
|
|
16527
|
-
"name": "
|
|
16528
|
-
"
|
|
16529
|
-
|
|
16530
|
-
|
|
16531
|
-
|
|
16532
|
-
|
|
16533
|
-
|
|
16534
|
-
"module": "src/datasource/base.datasource.ts"
|
|
16535
|
-
}
|
|
16456
|
+
"kind": "method",
|
|
16457
|
+
"name": "handleSnapshot",
|
|
16458
|
+
"privacy": "private",
|
|
16459
|
+
"parameters": [
|
|
16460
|
+
{
|
|
16461
|
+
"name": "result"
|
|
16462
|
+
}
|
|
16463
|
+
]
|
|
16536
16464
|
},
|
|
16537
16465
|
{
|
|
16538
16466
|
"kind": "method",
|
|
16539
|
-
"name": "
|
|
16467
|
+
"name": "handleStreamResult",
|
|
16468
|
+
"privacy": "private",
|
|
16540
16469
|
"parameters": [
|
|
16541
16470
|
{
|
|
16542
|
-
"name": "
|
|
16543
|
-
"type": {
|
|
16544
|
-
"text": "DatasourceStatus"
|
|
16545
|
-
}
|
|
16546
|
-
},
|
|
16547
|
-
{
|
|
16548
|
-
"name": "next",
|
|
16471
|
+
"name": "result",
|
|
16549
16472
|
"type": {
|
|
16550
|
-
"text": "
|
|
16473
|
+
"text": "FilteredDataServerResult | RequestServerResult"
|
|
16551
16474
|
}
|
|
16552
16475
|
}
|
|
16553
|
-
]
|
|
16554
|
-
"inheritedFrom": {
|
|
16555
|
-
"name": "GenesisGridDatasourceElement",
|
|
16556
|
-
"module": "src/datasource/base.datasource.ts"
|
|
16557
|
-
}
|
|
16476
|
+
]
|
|
16558
16477
|
},
|
|
16559
16478
|
{
|
|
16560
16479
|
"kind": "method",
|
|
16561
|
-
"name": "
|
|
16480
|
+
"name": "updateLoadMoreStatus",
|
|
16481
|
+
"privacy": "private",
|
|
16562
16482
|
"parameters": [
|
|
16563
16483
|
{
|
|
16564
|
-
"name": "
|
|
16484
|
+
"name": "moreRows",
|
|
16565
16485
|
"type": {
|
|
16566
|
-
"text": "
|
|
16486
|
+
"text": "boolean"
|
|
16567
16487
|
},
|
|
16568
|
-
"description": "
|
|
16488
|
+
"description": "Whether more rows are available"
|
|
16569
16489
|
},
|
|
16570
16490
|
{
|
|
16571
|
-
"name": "
|
|
16572
|
-
"default": "'unknown'",
|
|
16491
|
+
"name": "sourceRef",
|
|
16573
16492
|
"type": {
|
|
16574
|
-
"text": "
|
|
16493
|
+
"text": "string"
|
|
16575
16494
|
},
|
|
16576
|
-
"description": "The
|
|
16495
|
+
"description": "The source reference"
|
|
16496
|
+
},
|
|
16497
|
+
{
|
|
16498
|
+
"description": "The total number of rows",
|
|
16499
|
+
"name": "rowsCount"
|
|
16577
16500
|
}
|
|
16578
16501
|
],
|
|
16579
|
-
"description": "
|
|
16580
|
-
"privacy": "public",
|
|
16581
|
-
"inheritedFrom": {
|
|
16582
|
-
"name": "GenesisGridDatasourceElement",
|
|
16583
|
-
"module": "src/datasource/base.datasource.ts"
|
|
16584
|
-
}
|
|
16502
|
+
"description": "Updates the status bar based on more rows status"
|
|
16585
16503
|
},
|
|
16586
16504
|
{
|
|
16587
16505
|
"kind": "method",
|
|
16588
|
-
"name": "
|
|
16589
|
-
"description": "Clears error state and emits connected event.",
|
|
16590
|
-
"privacy": "public",
|
|
16591
|
-
"inheritedFrom": {
|
|
16592
|
-
"name": "GenesisGridDatasourceElement",
|
|
16593
|
-
"module": "src/datasource/base.datasource.ts"
|
|
16594
|
-
}
|
|
16595
|
-
},
|
|
16596
|
-
{
|
|
16597
|
-
"kind": "field",
|
|
16598
|
-
"name": "_presentation",
|
|
16599
|
-
"type": {
|
|
16600
|
-
"text": "ComponentPresentation | null | undefined"
|
|
16601
|
-
},
|
|
16506
|
+
"name": "applyRequestServerData",
|
|
16602
16507
|
"privacy": "private",
|
|
16603
|
-
"
|
|
16604
|
-
|
|
16605
|
-
|
|
16606
|
-
|
|
16607
|
-
|
|
16508
|
+
"parameters": [
|
|
16509
|
+
{
|
|
16510
|
+
"name": "requestServerResult",
|
|
16511
|
+
"type": {
|
|
16512
|
+
"text": "RequestServerResult"
|
|
16513
|
+
}
|
|
16514
|
+
}
|
|
16515
|
+
]
|
|
16608
16516
|
},
|
|
16609
16517
|
{
|
|
16610
|
-
"kind": "
|
|
16611
|
-
"name": "
|
|
16612
|
-
"
|
|
16613
|
-
|
|
16614
|
-
|
|
16615
|
-
|
|
16616
|
-
|
|
16617
|
-
|
|
16618
|
-
|
|
16619
|
-
|
|
16620
|
-
|
|
16518
|
+
"kind": "method",
|
|
16519
|
+
"name": "applyDataserverData",
|
|
16520
|
+
"privacy": "private",
|
|
16521
|
+
"parameters": [
|
|
16522
|
+
{
|
|
16523
|
+
"name": "dataServerResult",
|
|
16524
|
+
"type": {
|
|
16525
|
+
"text": "FilteredDataServerResult"
|
|
16526
|
+
}
|
|
16527
|
+
}
|
|
16528
|
+
]
|
|
16621
16529
|
},
|
|
16622
16530
|
{
|
|
16623
|
-
"kind": "
|
|
16624
|
-
"name": "
|
|
16625
|
-
"
|
|
16626
|
-
|
|
16627
|
-
|
|
16628
|
-
|
|
16629
|
-
|
|
16630
|
-
|
|
16631
|
-
|
|
16632
|
-
|
|
16633
|
-
|
|
16531
|
+
"kind": "method",
|
|
16532
|
+
"name": "getAgColumnDefs",
|
|
16533
|
+
"privacy": "private",
|
|
16534
|
+
"parameters": [
|
|
16535
|
+
{
|
|
16536
|
+
"name": "fieldsMetadata",
|
|
16537
|
+
"type": {
|
|
16538
|
+
"text": "FieldMetadata[]"
|
|
16539
|
+
}
|
|
16540
|
+
}
|
|
16541
|
+
]
|
|
16634
16542
|
},
|
|
16635
16543
|
{
|
|
16636
16544
|
"kind": "method",
|
|
16637
|
-
"name": "
|
|
16638
|
-
"privacy": "
|
|
16639
|
-
"
|
|
16640
|
-
|
|
16641
|
-
"
|
|
16545
|
+
"name": "setFilter",
|
|
16546
|
+
"privacy": "public",
|
|
16547
|
+
"parameters": [
|
|
16548
|
+
{
|
|
16549
|
+
"name": "fieldName",
|
|
16550
|
+
"type": {
|
|
16551
|
+
"text": "string"
|
|
16552
|
+
}
|
|
16553
|
+
},
|
|
16554
|
+
{
|
|
16555
|
+
"name": "newFilter",
|
|
16556
|
+
"type": {
|
|
16557
|
+
"text": "string"
|
|
16558
|
+
}
|
|
16642
16559
|
}
|
|
16643
|
-
|
|
16560
|
+
],
|
|
16644
16561
|
"inheritedFrom": {
|
|
16645
|
-
"name": "
|
|
16646
|
-
"module": "src/
|
|
16562
|
+
"name": "GenesisGridDatasourceElement",
|
|
16563
|
+
"module": "src/datasource/base.datasource.ts"
|
|
16647
16564
|
}
|
|
16648
16565
|
},
|
|
16649
16566
|
{
|
|
16650
|
-
"kind": "
|
|
16651
|
-
"name": "
|
|
16652
|
-
"type": {
|
|
16653
|
-
"text": "ElementStyles | void | null"
|
|
16654
|
-
},
|
|
16567
|
+
"kind": "method",
|
|
16568
|
+
"name": "removeFilter",
|
|
16655
16569
|
"privacy": "public",
|
|
16656
|
-
"
|
|
16570
|
+
"parameters": [
|
|
16571
|
+
{
|
|
16572
|
+
"name": "fieldName",
|
|
16573
|
+
"type": {
|
|
16574
|
+
"text": "string"
|
|
16575
|
+
}
|
|
16576
|
+
}
|
|
16577
|
+
],
|
|
16657
16578
|
"inheritedFrom": {
|
|
16658
|
-
"name": "
|
|
16659
|
-
"module": "src/
|
|
16579
|
+
"name": "GenesisGridDatasourceElement",
|
|
16580
|
+
"module": "src/datasource/base.datasource.ts"
|
|
16660
16581
|
}
|
|
16661
16582
|
},
|
|
16662
16583
|
{
|
|
16663
16584
|
"kind": "method",
|
|
16664
|
-
"name": "
|
|
16585
|
+
"name": "applyTransaction",
|
|
16665
16586
|
"privacy": "protected",
|
|
16666
16587
|
"return": {
|
|
16667
16588
|
"type": {
|
|
16668
|
-
"text": "
|
|
16589
|
+
"text": "any"
|
|
16669
16590
|
}
|
|
16670
16591
|
},
|
|
16592
|
+
"parameters": [
|
|
16593
|
+
{
|
|
16594
|
+
"name": "transaction",
|
|
16595
|
+
"type": {
|
|
16596
|
+
"text": "any"
|
|
16597
|
+
}
|
|
16598
|
+
}
|
|
16599
|
+
],
|
|
16671
16600
|
"inheritedFrom": {
|
|
16672
|
-
"name": "
|
|
16673
|
-
"module": "src/
|
|
16601
|
+
"name": "GridProBaseDatasource",
|
|
16602
|
+
"module": "src/datasource/base.datasource.ts"
|
|
16674
16603
|
}
|
|
16675
16604
|
},
|
|
16676
16605
|
{
|
|
16677
16606
|
"kind": "method",
|
|
16678
|
-
"name": "
|
|
16679
|
-
"privacy": "
|
|
16680
|
-
"static": true,
|
|
16681
|
-
"return": {
|
|
16682
|
-
"type": {
|
|
16683
|
-
"text": "(\n overrideDefinition?: OverrideFoundationElementDefinition<T>\n ) => FoundationElementRegistry<T, K>"
|
|
16684
|
-
}
|
|
16685
|
-
},
|
|
16607
|
+
"name": "handleSizeChanged",
|
|
16608
|
+
"privacy": "private",
|
|
16686
16609
|
"parameters": [
|
|
16687
16610
|
{
|
|
16688
|
-
"name": "
|
|
16611
|
+
"name": "oldSize",
|
|
16689
16612
|
"type": {
|
|
16690
|
-
"text": "
|
|
16613
|
+
"text": "number"
|
|
16691
16614
|
}
|
|
16692
16615
|
},
|
|
16693
16616
|
{
|
|
16694
|
-
"name": "
|
|
16617
|
+
"name": "newSize",
|
|
16695
16618
|
"type": {
|
|
16696
|
-
"text": "
|
|
16697
|
-
}
|
|
16698
|
-
|
|
16619
|
+
"text": "number"
|
|
16620
|
+
}
|
|
16621
|
+
}
|
|
16622
|
+
]
|
|
16623
|
+
},
|
|
16624
|
+
{
|
|
16625
|
+
"kind": "method",
|
|
16626
|
+
"name": "handleStreamInserts",
|
|
16627
|
+
"privacy": "protected",
|
|
16628
|
+
"parameters": [
|
|
16629
|
+
{
|
|
16630
|
+
"name": "inserts",
|
|
16631
|
+
"default": "[]"
|
|
16699
16632
|
}
|
|
16700
16633
|
],
|
|
16701
|
-
"description": "Defines an element registry function with a set of element definition defaults.",
|
|
16702
16634
|
"inheritedFrom": {
|
|
16703
|
-
"name": "
|
|
16704
|
-
"module": "src/
|
|
16635
|
+
"name": "GridProBaseDatasource",
|
|
16636
|
+
"module": "src/datasource/base.datasource.ts"
|
|
16705
16637
|
}
|
|
16706
|
-
}
|
|
16707
|
-
],
|
|
16708
|
-
"attributes": [
|
|
16709
|
-
{
|
|
16710
|
-
"name": "keep-col-defs-on-clear-row-data",
|
|
16711
|
-
"type": {
|
|
16712
|
-
"text": "boolean"
|
|
16713
|
-
},
|
|
16714
|
-
"default": "false",
|
|
16715
|
-
"fieldName": "keepColDefsOnClearRowData"
|
|
16716
16638
|
},
|
|
16717
16639
|
{
|
|
16718
|
-
"
|
|
16719
|
-
"
|
|
16720
|
-
|
|
16721
|
-
|
|
16722
|
-
|
|
16723
|
-
|
|
16640
|
+
"kind": "method",
|
|
16641
|
+
"name": "handleStreamUpdates",
|
|
16642
|
+
"privacy": "protected",
|
|
16643
|
+
"parameters": [
|
|
16644
|
+
{
|
|
16645
|
+
"name": "updates",
|
|
16646
|
+
"default": "[]"
|
|
16647
|
+
}
|
|
16648
|
+
],
|
|
16724
16649
|
"inheritedFrom": {
|
|
16725
|
-
"name": "
|
|
16650
|
+
"name": "GridProBaseDatasource",
|
|
16726
16651
|
"module": "src/datasource/base.datasource.ts"
|
|
16727
16652
|
}
|
|
16728
16653
|
},
|
|
16729
16654
|
{
|
|
16730
|
-
"
|
|
16731
|
-
"
|
|
16732
|
-
|
|
16733
|
-
|
|
16734
|
-
|
|
16735
|
-
|
|
16736
|
-
|
|
16655
|
+
"kind": "method",
|
|
16656
|
+
"name": "handleStreamDeletes",
|
|
16657
|
+
"privacy": "protected",
|
|
16658
|
+
"parameters": [
|
|
16659
|
+
{
|
|
16660
|
+
"name": "deletes",
|
|
16661
|
+
"default": "[]",
|
|
16662
|
+
"description": "List of records to remove from the grid stream"
|
|
16663
|
+
}
|
|
16664
|
+
],
|
|
16665
|
+
"description": "Handles stream deletes by removing records from the grid.",
|
|
16737
16666
|
"inheritedFrom": {
|
|
16738
|
-
"name": "
|
|
16667
|
+
"name": "GridProBaseDatasource",
|
|
16739
16668
|
"module": "src/datasource/base.datasource.ts"
|
|
16740
16669
|
}
|
|
16741
16670
|
},
|
|
16742
16671
|
{
|
|
16743
|
-
"
|
|
16744
|
-
"
|
|
16745
|
-
"text": "number"
|
|
16746
|
-
},
|
|
16747
|
-
"description": "Maximum number of rows to be returned as part of the initial message, and as part of any additional MORE_ROWS messages.",
|
|
16748
|
-
"fieldName": "maxRows",
|
|
16672
|
+
"kind": "method",
|
|
16673
|
+
"name": "loadMore",
|
|
16749
16674
|
"inheritedFrom": {
|
|
16750
|
-
"name": "
|
|
16675
|
+
"name": "GridProBaseDatasource",
|
|
16751
16676
|
"module": "src/datasource/base.datasource.ts"
|
|
16752
16677
|
}
|
|
16753
16678
|
},
|
|
16754
16679
|
{
|
|
16755
|
-
"
|
|
16756
|
-
"
|
|
16757
|
-
|
|
16680
|
+
"kind": "method",
|
|
16681
|
+
"name": "cloneNode",
|
|
16682
|
+
"return": {
|
|
16683
|
+
"type": {
|
|
16684
|
+
"text": "Node"
|
|
16685
|
+
}
|
|
16758
16686
|
},
|
|
16759
|
-
"
|
|
16760
|
-
|
|
16687
|
+
"parameters": [
|
|
16688
|
+
{
|
|
16689
|
+
"name": "deep",
|
|
16690
|
+
"optional": true,
|
|
16691
|
+
"type": {
|
|
16692
|
+
"text": "boolean"
|
|
16693
|
+
}
|
|
16694
|
+
}
|
|
16695
|
+
],
|
|
16761
16696
|
"inheritedFrom": {
|
|
16762
|
-
"name": "
|
|
16763
|
-
"module": "src/
|
|
16697
|
+
"name": "LifecycleMixin",
|
|
16698
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
16764
16699
|
}
|
|
16765
16700
|
},
|
|
16766
16701
|
{
|
|
16767
|
-
"
|
|
16768
|
-
"
|
|
16769
|
-
|
|
16702
|
+
"kind": "field",
|
|
16703
|
+
"name": "shouldRunDisconnect",
|
|
16704
|
+
"return": {
|
|
16705
|
+
"type": {
|
|
16706
|
+
"text": ""
|
|
16707
|
+
}
|
|
16770
16708
|
},
|
|
16771
|
-
"
|
|
16772
|
-
"fieldName": "resourceName",
|
|
16709
|
+
"readonly": true,
|
|
16773
16710
|
"inheritedFrom": {
|
|
16774
|
-
"name": "
|
|
16775
|
-
"module": "src/
|
|
16711
|
+
"name": "LifecycleMixin",
|
|
16712
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
16776
16713
|
}
|
|
16777
16714
|
},
|
|
16778
16715
|
{
|
|
16779
|
-
"
|
|
16780
|
-
"
|
|
16781
|
-
|
|
16716
|
+
"kind": "field",
|
|
16717
|
+
"name": "shouldRunConnect",
|
|
16718
|
+
"return": {
|
|
16719
|
+
"type": {
|
|
16720
|
+
"text": ""
|
|
16721
|
+
}
|
|
16782
16722
|
},
|
|
16783
|
-
"
|
|
16784
|
-
"fieldName": "viewNumber",
|
|
16723
|
+
"readonly": true,
|
|
16785
16724
|
"inheritedFrom": {
|
|
16786
|
-
"name": "
|
|
16787
|
-
"module": "src/
|
|
16725
|
+
"name": "LifecycleMixin",
|
|
16726
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
16788
16727
|
}
|
|
16789
16728
|
},
|
|
16790
16729
|
{
|
|
16791
|
-
"
|
|
16792
|
-
"
|
|
16793
|
-
|
|
16730
|
+
"kind": "method",
|
|
16731
|
+
"name": "#_blockLifecycleDueToTokenChange",
|
|
16732
|
+
"return": {
|
|
16733
|
+
"type": {
|
|
16734
|
+
"text": "boolean"
|
|
16735
|
+
}
|
|
16794
16736
|
},
|
|
16795
|
-
"
|
|
16796
|
-
|
|
16737
|
+
"parameters": [
|
|
16738
|
+
{
|
|
16739
|
+
"name": "lifecycleType",
|
|
16740
|
+
"type": {
|
|
16741
|
+
"text": "Lifecycletype"
|
|
16742
|
+
}
|
|
16743
|
+
}
|
|
16744
|
+
],
|
|
16797
16745
|
"inheritedFrom": {
|
|
16798
|
-
"name": "
|
|
16799
|
-
"module": "src/
|
|
16746
|
+
"name": "LifecycleMixin",
|
|
16747
|
+
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
16800
16748
|
}
|
|
16801
16749
|
},
|
|
16802
16750
|
{
|
|
16803
|
-
"
|
|
16751
|
+
"kind": "field",
|
|
16752
|
+
"name": "dataSubWasLoggedOff",
|
|
16804
16753
|
"type": {
|
|
16805
|
-
"text": "
|
|
16754
|
+
"text": "boolean"
|
|
16806
16755
|
},
|
|
16807
|
-
"
|
|
16808
|
-
"
|
|
16756
|
+
"privacy": "protected",
|
|
16757
|
+
"default": "false",
|
|
16809
16758
|
"inheritedFrom": {
|
|
16810
|
-
"name": "
|
|
16759
|
+
"name": "GridProBaseDatasource",
|
|
16811
16760
|
"module": "src/datasource/base.datasource.ts"
|
|
16812
16761
|
}
|
|
16813
16762
|
},
|
|
16814
16763
|
{
|
|
16815
|
-
"
|
|
16764
|
+
"kind": "field",
|
|
16765
|
+
"name": "rowData",
|
|
16816
16766
|
"type": {
|
|
16817
|
-
"text": "
|
|
16767
|
+
"text": "Map<string, any>"
|
|
16818
16768
|
},
|
|
16819
|
-
"default": "
|
|
16820
|
-
"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.",
|
|
16821
|
-
"fieldName": "movingView",
|
|
16769
|
+
"default": "new Map()",
|
|
16822
16770
|
"inheritedFrom": {
|
|
16823
|
-
"name": "
|
|
16771
|
+
"name": "GridProBaseDatasource",
|
|
16824
16772
|
"module": "src/datasource/base.datasource.ts"
|
|
16825
16773
|
}
|
|
16826
16774
|
},
|
|
16827
16775
|
{
|
|
16776
|
+
"kind": "field",
|
|
16777
|
+
"name": "connectionSub",
|
|
16828
16778
|
"type": {
|
|
16829
|
-
"text": "
|
|
16779
|
+
"text": "Subscription | undefined"
|
|
16830
16780
|
},
|
|
16831
|
-
"
|
|
16832
|
-
"fieldName": "reverse",
|
|
16833
|
-
"default": "false",
|
|
16781
|
+
"privacy": "protected",
|
|
16834
16782
|
"inheritedFrom": {
|
|
16835
|
-
"name": "
|
|
16783
|
+
"name": "GridProBaseDatasource",
|
|
16836
16784
|
"module": "src/datasource/base.datasource.ts"
|
|
16837
16785
|
}
|
|
16838
16786
|
},
|
|
16839
16787
|
{
|
|
16840
|
-
"
|
|
16841
|
-
"
|
|
16842
|
-
|
|
16843
|
-
},
|
|
16844
|
-
"default": "false",
|
|
16845
|
-
"description": "Disables polling if set to true (data updates for the grid will not be fetched automatically).",
|
|
16846
|
-
"fieldName": "disablePolling",
|
|
16788
|
+
"kind": "method",
|
|
16789
|
+
"name": "subscribeToConnection",
|
|
16790
|
+
"privacy": "protected",
|
|
16847
16791
|
"inheritedFrom": {
|
|
16848
|
-
"name": "
|
|
16792
|
+
"name": "GridProBaseDatasource",
|
|
16849
16793
|
"module": "src/datasource/base.datasource.ts"
|
|
16850
16794
|
}
|
|
16851
16795
|
},
|
|
16852
16796
|
{
|
|
16853
|
-
"
|
|
16854
|
-
"
|
|
16855
|
-
|
|
16856
|
-
},
|
|
16857
|
-
"description": "Custom polling frequency (in milliseconds) for a Request Server resource.",
|
|
16858
|
-
"fieldName": "pollingInterval",
|
|
16797
|
+
"kind": "method",
|
|
16798
|
+
"name": "unsubscribeFromConnection",
|
|
16799
|
+
"privacy": "protected",
|
|
16859
16800
|
"inheritedFrom": {
|
|
16860
|
-
"name": "
|
|
16801
|
+
"name": "GridProBaseDatasource",
|
|
16861
16802
|
"module": "src/datasource/base.datasource.ts"
|
|
16862
16803
|
}
|
|
16863
16804
|
},
|
|
16864
16805
|
{
|
|
16865
|
-
"
|
|
16866
|
-
"
|
|
16867
|
-
|
|
16806
|
+
"kind": "method",
|
|
16807
|
+
"name": "generateColumnDefsFromMetadata",
|
|
16808
|
+
"privacy": "protected",
|
|
16809
|
+
"return": {
|
|
16810
|
+
"type": {
|
|
16811
|
+
"text": "ColDef[]"
|
|
16812
|
+
}
|
|
16868
16813
|
},
|
|
16869
|
-
"
|
|
16870
|
-
|
|
16871
|
-
|
|
16814
|
+
"parameters": [
|
|
16815
|
+
{
|
|
16816
|
+
"name": "fieldsMetadata",
|
|
16817
|
+
"type": {
|
|
16818
|
+
"text": "FieldMetadata[]"
|
|
16819
|
+
}
|
|
16820
|
+
},
|
|
16821
|
+
{
|
|
16822
|
+
"name": "getFilterParamsByFieldType",
|
|
16823
|
+
"type": {
|
|
16824
|
+
"text": "(field: FieldMetadata) => ColDef['filterParams'] | any"
|
|
16825
|
+
}
|
|
16826
|
+
},
|
|
16827
|
+
{
|
|
16828
|
+
"name": "getFilterByFieldType",
|
|
16829
|
+
"type": {
|
|
16830
|
+
"text": "(type: FieldTypeEnum) => string"
|
|
16831
|
+
}
|
|
16832
|
+
}
|
|
16833
|
+
],
|
|
16872
16834
|
"inheritedFrom": {
|
|
16873
|
-
"name": "
|
|
16835
|
+
"name": "GridProBaseDatasource",
|
|
16874
16836
|
"module": "src/datasource/base.datasource.ts"
|
|
16875
16837
|
}
|
|
16876
16838
|
},
|
|
16877
16839
|
{
|
|
16878
|
-
"
|
|
16879
|
-
"
|
|
16880
|
-
"
|
|
16840
|
+
"kind": "method",
|
|
16841
|
+
"name": "applyAllTransactions",
|
|
16842
|
+
"privacy": "protected",
|
|
16881
16843
|
"inheritedFrom": {
|
|
16882
|
-
"name": "
|
|
16844
|
+
"name": "GridProBaseDatasource",
|
|
16883
16845
|
"module": "src/datasource/base.datasource.ts"
|
|
16884
16846
|
}
|
|
16885
16847
|
},
|
|
16886
16848
|
{
|
|
16887
|
-
"
|
|
16888
|
-
"
|
|
16889
|
-
|
|
16890
|
-
|
|
16891
|
-
|
|
16892
|
-
|
|
16893
|
-
|
|
16849
|
+
"kind": "method",
|
|
16850
|
+
"name": "applyMappedTransaction",
|
|
16851
|
+
"privacy": "private",
|
|
16852
|
+
"parameters": [
|
|
16853
|
+
{
|
|
16854
|
+
"name": "transaction",
|
|
16855
|
+
"type": {
|
|
16856
|
+
"text": "TransactionData"
|
|
16857
|
+
}
|
|
16858
|
+
},
|
|
16859
|
+
{
|
|
16860
|
+
"name": "operation",
|
|
16861
|
+
"type": {
|
|
16862
|
+
"text": "OperationType"
|
|
16863
|
+
}
|
|
16864
|
+
}
|
|
16865
|
+
],
|
|
16894
16866
|
"inheritedFrom": {
|
|
16895
|
-
"name": "
|
|
16867
|
+
"name": "GridProBaseDatasource",
|
|
16896
16868
|
"module": "src/datasource/base.datasource.ts"
|
|
16897
16869
|
}
|
|
16898
|
-
}
|
|
16899
|
-
],
|
|
16900
|
-
"mixins": [
|
|
16870
|
+
},
|
|
16901
16871
|
{
|
|
16902
|
-
"
|
|
16903
|
-
"
|
|
16904
|
-
|
|
16905
|
-
|
|
16906
|
-
|
|
16907
|
-
|
|
16908
|
-
|
|
16909
|
-
|
|
16910
|
-
|
|
16911
|
-
|
|
16912
|
-
|
|
16913
|
-
|
|
16914
|
-
|
|
16915
|
-
|
|
16916
|
-
|
|
16917
|
-
|
|
16918
|
-
|
|
16919
|
-
|
|
16920
|
-
|
|
16921
|
-
|
|
16922
|
-
|
|
16923
|
-
|
|
16924
|
-
|
|
16925
|
-
|
|
16926
|
-
|
|
16927
|
-
|
|
16928
|
-
|
|
16929
|
-
|
|
16930
|
-
|
|
16931
|
-
|
|
16932
|
-
|
|
16933
|
-
{
|
|
16934
|
-
"kind": "javascript-module",
|
|
16935
|
-
"path": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.types.ts",
|
|
16936
|
-
"declarations": [],
|
|
16937
|
-
"exports": []
|
|
16938
|
-
},
|
|
16939
|
-
{
|
|
16940
|
-
"kind": "javascript-module",
|
|
16941
|
-
"path": "src/grid-pro-genesis-datasource/index.ts",
|
|
16942
|
-
"declarations": [],
|
|
16943
|
-
"exports": [
|
|
16944
|
-
{
|
|
16945
|
-
"kind": "js",
|
|
16946
|
-
"name": "*",
|
|
16947
|
-
"declaration": {
|
|
16948
|
-
"name": "*",
|
|
16949
|
-
"package": "./datasource-events.types"
|
|
16950
|
-
}
|
|
16951
|
-
},
|
|
16952
|
-
{
|
|
16953
|
-
"kind": "js",
|
|
16954
|
-
"name": "*",
|
|
16955
|
-
"declaration": {
|
|
16956
|
-
"name": "*",
|
|
16957
|
-
"package": "./grid-pro-genesis-datasource"
|
|
16958
|
-
}
|
|
16959
|
-
},
|
|
16960
|
-
{
|
|
16961
|
-
"kind": "js",
|
|
16962
|
-
"name": "*",
|
|
16963
|
-
"declaration": {
|
|
16964
|
-
"name": "*",
|
|
16965
|
-
"package": "./grid-pro-genesis-datasource.config"
|
|
16966
|
-
}
|
|
16967
|
-
},
|
|
16968
|
-
{
|
|
16969
|
-
"kind": "js",
|
|
16970
|
-
"name": "*",
|
|
16971
|
-
"declaration": {
|
|
16972
|
-
"name": "*",
|
|
16973
|
-
"package": "./grid-pro-genesis-datasource.types"
|
|
16974
|
-
}
|
|
16975
|
-
}
|
|
16976
|
-
]
|
|
16977
|
-
},
|
|
16978
|
-
{
|
|
16979
|
-
"kind": "javascript-module",
|
|
16980
|
-
"path": "src/multicolumn-dropdown/index.ts",
|
|
16981
|
-
"declarations": [],
|
|
16982
|
-
"exports": [
|
|
16983
|
-
{
|
|
16984
|
-
"kind": "js",
|
|
16985
|
-
"name": "*",
|
|
16986
|
-
"declaration": {
|
|
16987
|
-
"name": "*",
|
|
16988
|
-
"package": "./multicolumn-dropdown"
|
|
16989
|
-
}
|
|
16990
|
-
},
|
|
16991
|
-
{
|
|
16992
|
-
"kind": "js",
|
|
16993
|
-
"name": "*",
|
|
16994
|
-
"declaration": {
|
|
16995
|
-
"name": "*",
|
|
16996
|
-
"package": "./multicolumn-dropdown.styles"
|
|
16997
|
-
}
|
|
16998
|
-
},
|
|
16999
|
-
{
|
|
17000
|
-
"kind": "js",
|
|
17001
|
-
"name": "*",
|
|
17002
|
-
"declaration": {
|
|
17003
|
-
"name": "*",
|
|
17004
|
-
"package": "./multicolumn-dropdown.template"
|
|
17005
|
-
}
|
|
17006
|
-
}
|
|
17007
|
-
]
|
|
17008
|
-
},
|
|
17009
|
-
{
|
|
17010
|
-
"kind": "javascript-module",
|
|
17011
|
-
"path": "src/multicolumn-dropdown/multicolumn-dropdown.styles.ts",
|
|
17012
|
-
"declarations": [
|
|
17013
|
-
{
|
|
17014
|
-
"kind": "variable",
|
|
17015
|
-
"name": "dropdownWidthVar",
|
|
17016
|
-
"type": {
|
|
17017
|
-
"text": "string"
|
|
17018
|
-
},
|
|
17019
|
-
"default": "'--dropdown-width'",
|
|
17020
|
-
"description": "The CSS variable to use for specifying the dropdown's width"
|
|
17021
|
-
},
|
|
17022
|
-
{
|
|
17023
|
-
"kind": "variable",
|
|
17024
|
-
"name": "optionsClass",
|
|
17025
|
-
"type": {
|
|
17026
|
-
"text": "string"
|
|
17027
|
-
},
|
|
17028
|
-
"default": "'options'",
|
|
17029
|
-
"description": "The CSS class to use for the options element's class in the dropdown"
|
|
17030
|
-
},
|
|
17031
|
-
{
|
|
17032
|
-
"kind": "variable",
|
|
17033
|
-
"name": "DISPLAY_NONE_CLASS",
|
|
17034
|
-
"type": {
|
|
17035
|
-
"text": "string"
|
|
17036
|
-
},
|
|
17037
|
-
"default": "'dnone'",
|
|
17038
|
-
"description": "Class name used to hide elements with display:none"
|
|
17039
|
-
},
|
|
17040
|
-
{
|
|
17041
|
-
"kind": "variable",
|
|
17042
|
-
"name": "multicolumnDropdownStyles",
|
|
17043
|
-
"default": "css`\n label {\n color: var(--neutral-foreground-hint, rgb(135 155 166));\n font-style: normal;\n margin: calc(var(--design-unit) * 2px) 0;\n display: block;\n cursor: pointer;\n font-size: var(--type-ramp-base-font-size);\n line-height: var(--type-ramp-base-line-height);\n }\n\n .${DISPLAY_NONE_CLASS} {\n display: none !important;\n }\n\n .root {\n position: relative;\n width: inherit;\n min-width: 250px;\n ${dropdownWidthVar}: 350px;\n }\n\n .control {\n cursor: pointer;\n position: relative;\n display: flex;\n align-items: center;\n width: 100%;\n border-radius: calc(var(--control-corner-radius) * 1px);\n }\n\n #display-field {\n width: 100%;\n cursor: pointer;\n color: inherit;\n min-height: 40px;\n padding-left: calc(var(--design-unit) * 2.25px);\n padding-right: 52px;\n border-width: 0;\n background: var(--neutral-fill-input-rest);\n border-radius: calc(var(--control-corner-radius) * 1px);\n text-overflow: ellipsis;\n font-size: var(--type-ramp-base-font-size);\n font-family: var(--body-font);\n }\n\n #display-field[disabled] {\n cursor: not-allowed;\n opacity: var(--disabled-opacity);\n }\n\n #display-field:focus {\n outline: 1px solid var(--accent-fill-rest);\n background: var(--neutral-fill-input-rest);\n border-style: none;\n box-shadow: none;\n }\n\n #display-field:hover:not(:focus):not([disabled]) {\n outline: 1px solid var(--neutral-stroke-hover, rgb(231 232 232));\n }\n\n button {\n pointer-events: none;\n }\n\n #arrow-icon {\n display: inline-block;\n width: 16px;\n color: currentColor;\n position: absolute;\n left: calc(100% - 26px);\n padding: 0;\n cursor: pointer;\n transform: rotate(0deg);\n transition: transform 0.2s linear 0s;\n }\n\n #arrow-icon.flipped {\n transform: rotate(180deg);\n }\n\n .cross-icon {\n display: inline-block;\n width: 12px;\n color: currentColor;\n position: absolute;\n left: calc(100% - 46px);\n padding: 0;\n cursor: pointer;\n visibility: hidden;\n }\n\n .cross-icon:hover {\n color: var(--error-color);\n }\n\n .disabled-icon {\n pointer-events: none;\n opacity: var(--disabled-opacity);\n }\n\n .${optionsClass} {\n min-width: 100%;\n width: var(${dropdownWidthVar});\n display: flex;\n flex-direction: column;\n position: absolute;\n height: max-content;\n overflow-y: hidden;\n margin: 5px 0;\n background: var(--neutral-fill-input-rest);\n visibility: hidden;\n z-index: 999;\n }\n\n .dropdown-above {\n bottom: 100%;\n }\n\n .dropdown-left {\n right: 0;\n }\n\n .grid-container {\n height: 300px;\n width: 100%;\n }\n\n #filter-search {\n padding: 5px;\n }\n\n .visible {\n visibility: visible;\n }\n`",
|
|
17044
|
-
"description": "Multicolumn Dropdown styles.",
|
|
17045
|
-
"privacy": "public"
|
|
17046
|
-
}
|
|
17047
|
-
],
|
|
17048
|
-
"exports": [
|
|
17049
|
-
{
|
|
17050
|
-
"kind": "js",
|
|
17051
|
-
"name": "dropdownWidthVar",
|
|
17052
|
-
"declaration": {
|
|
17053
|
-
"name": "dropdownWidthVar",
|
|
17054
|
-
"module": "src/multicolumn-dropdown/multicolumn-dropdown.styles.ts"
|
|
17055
|
-
}
|
|
17056
|
-
},
|
|
17057
|
-
{
|
|
17058
|
-
"kind": "js",
|
|
17059
|
-
"name": "optionsClass",
|
|
17060
|
-
"declaration": {
|
|
17061
|
-
"name": "optionsClass",
|
|
17062
|
-
"module": "src/multicolumn-dropdown/multicolumn-dropdown.styles.ts"
|
|
17063
|
-
}
|
|
17064
|
-
},
|
|
17065
|
-
{
|
|
17066
|
-
"kind": "js",
|
|
17067
|
-
"name": "DISPLAY_NONE_CLASS",
|
|
17068
|
-
"declaration": {
|
|
17069
|
-
"name": "DISPLAY_NONE_CLASS",
|
|
17070
|
-
"module": "src/multicolumn-dropdown/multicolumn-dropdown.styles.ts"
|
|
17071
|
-
}
|
|
17072
|
-
},
|
|
17073
|
-
{
|
|
17074
|
-
"kind": "js",
|
|
17075
|
-
"name": "multicolumnDropdownStyles",
|
|
17076
|
-
"declaration": {
|
|
17077
|
-
"name": "multicolumnDropdownStyles",
|
|
17078
|
-
"module": "src/multicolumn-dropdown/multicolumn-dropdown.styles.ts"
|
|
17079
|
-
}
|
|
17080
|
-
}
|
|
17081
|
-
]
|
|
17082
|
-
},
|
|
17083
|
-
{
|
|
17084
|
-
"kind": "javascript-module",
|
|
17085
|
-
"path": "src/multicolumn-dropdown/multicolumn-dropdown.template.ts",
|
|
17086
|
-
"declarations": [
|
|
17087
|
-
{
|
|
17088
|
-
"kind": "function",
|
|
17089
|
-
"name": "getMulticolumnDropdownTemplate",
|
|
17090
|
-
"parameters": [
|
|
16872
|
+
"kind": "method",
|
|
16873
|
+
"name": "mapTransaction",
|
|
16874
|
+
"privacy": "private",
|
|
16875
|
+
"parameters": [
|
|
16876
|
+
{
|
|
16877
|
+
"name": "transaction",
|
|
16878
|
+
"type": {
|
|
16879
|
+
"text": "TransactionData"
|
|
16880
|
+
},
|
|
16881
|
+
"description": "The transaction data to be mapped."
|
|
16882
|
+
},
|
|
16883
|
+
{
|
|
16884
|
+
"name": "operations",
|
|
16885
|
+
"default": "Object.values(OperationType)",
|
|
16886
|
+
"type": {
|
|
16887
|
+
"text": "OperationType[]"
|
|
16888
|
+
},
|
|
16889
|
+
"description": "The operations to be mapped. Can be 'add', 'update' or 'remove'."
|
|
16890
|
+
}
|
|
16891
|
+
],
|
|
16892
|
+
"description": "Maps the transaction data to the row data mapper function, if it exists.",
|
|
16893
|
+
"return": {
|
|
16894
|
+
"type": {
|
|
16895
|
+
"text": ""
|
|
16896
|
+
}
|
|
16897
|
+
},
|
|
16898
|
+
"inheritedFrom": {
|
|
16899
|
+
"name": "GridProBaseDatasource",
|
|
16900
|
+
"module": "src/datasource/base.datasource.ts"
|
|
16901
|
+
}
|
|
16902
|
+
},
|
|
17091
16903
|
{
|
|
17092
|
-
"
|
|
17093
|
-
"
|
|
17094
|
-
"
|
|
17095
|
-
|
|
17096
|
-
|
|
17097
|
-
|
|
17098
|
-
|
|
17099
|
-
|
|
17100
|
-
|
|
17101
|
-
|
|
17102
|
-
|
|
17103
|
-
"privacy": "public"
|
|
17104
|
-
},
|
|
17105
|
-
{
|
|
17106
|
-
"kind": "variable",
|
|
17107
|
-
"name": "multicolumnDropdownTemplate",
|
|
17108
|
-
"description": "The default Multicolumn Dropdown template using the 'foundation' design system prefix.",
|
|
17109
|
-
"privacy": "public"
|
|
17110
|
-
}
|
|
17111
|
-
],
|
|
17112
|
-
"exports": [
|
|
17113
|
-
{
|
|
17114
|
-
"kind": "js",
|
|
17115
|
-
"name": "getMulticolumnDropdownTemplate",
|
|
17116
|
-
"declaration": {
|
|
17117
|
-
"name": "getMulticolumnDropdownTemplate",
|
|
17118
|
-
"module": "src/multicolumn-dropdown/multicolumn-dropdown.template.ts"
|
|
17119
|
-
}
|
|
17120
|
-
},
|
|
17121
|
-
{
|
|
17122
|
-
"kind": "js",
|
|
17123
|
-
"name": "multicolumnDropdownTemplate",
|
|
17124
|
-
"declaration": {
|
|
17125
|
-
"name": "multicolumnDropdownTemplate",
|
|
17126
|
-
"module": "src/multicolumn-dropdown/multicolumn-dropdown.template.ts"
|
|
17127
|
-
}
|
|
17128
|
-
}
|
|
17129
|
-
]
|
|
17130
|
-
},
|
|
17131
|
-
{
|
|
17132
|
-
"kind": "javascript-module",
|
|
17133
|
-
"path": "src/multicolumn-dropdown/multicolumn-dropdown.ts",
|
|
17134
|
-
"declarations": [
|
|
17135
|
-
{
|
|
17136
|
-
"kind": "function",
|
|
17137
|
-
"name": "wasClickOutsideElement",
|
|
17138
|
-
"parameters": [
|
|
16904
|
+
"kind": "field",
|
|
16905
|
+
"name": "pagination",
|
|
16906
|
+
"type": {
|
|
16907
|
+
"text": "boolean"
|
|
16908
|
+
},
|
|
16909
|
+
"privacy": "protected",
|
|
16910
|
+
"inheritedFrom": {
|
|
16911
|
+
"name": "GridProBaseDatasource",
|
|
16912
|
+
"module": "src/datasource/base.datasource.ts"
|
|
16913
|
+
}
|
|
16914
|
+
},
|
|
17139
16915
|
{
|
|
17140
|
-
"
|
|
16916
|
+
"kind": "field",
|
|
16917
|
+
"name": "_isDisconnected",
|
|
17141
16918
|
"type": {
|
|
17142
|
-
"text": "
|
|
16919
|
+
"text": "boolean"
|
|
16920
|
+
},
|
|
16921
|
+
"privacy": "private",
|
|
16922
|
+
"default": "false",
|
|
16923
|
+
"inheritedFrom": {
|
|
16924
|
+
"name": "GridProBaseDatasource",
|
|
16925
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17143
16926
|
}
|
|
17144
16927
|
},
|
|
17145
16928
|
{
|
|
17146
|
-
"
|
|
17147
|
-
"
|
|
17148
|
-
|
|
16929
|
+
"kind": "method",
|
|
16930
|
+
"name": "setDisconnected",
|
|
16931
|
+
"privacy": "public",
|
|
16932
|
+
"parameters": [
|
|
16933
|
+
{
|
|
16934
|
+
"name": "disconnected",
|
|
16935
|
+
"type": {
|
|
16936
|
+
"text": "boolean"
|
|
16937
|
+
},
|
|
16938
|
+
"description": "true to set, false to remove"
|
|
16939
|
+
}
|
|
16940
|
+
],
|
|
16941
|
+
"description": "Sets the disconnected state and emits appropriate events.",
|
|
16942
|
+
"inheritedFrom": {
|
|
16943
|
+
"name": "GridProBaseDatasource",
|
|
16944
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17149
16945
|
}
|
|
17150
|
-
}
|
|
17151
|
-
],
|
|
17152
|
-
"description": "Checks if the given mouse event occurred outside the target element.",
|
|
17153
|
-
"privacy": "public"
|
|
17154
|
-
},
|
|
17155
|
-
{
|
|
17156
|
-
"kind": "class",
|
|
17157
|
-
"description": "",
|
|
17158
|
-
"name": "MulticolumnDropdown",
|
|
17159
|
-
"members": [
|
|
16946
|
+
},
|
|
17160
16947
|
{
|
|
17161
|
-
"kind": "
|
|
17162
|
-
"name": "
|
|
17163
|
-
"
|
|
17164
|
-
|
|
16948
|
+
"kind": "method",
|
|
16949
|
+
"name": "isDisconnected",
|
|
16950
|
+
"privacy": "public",
|
|
16951
|
+
"return": {
|
|
16952
|
+
"type": {
|
|
16953
|
+
"text": "boolean"
|
|
16954
|
+
}
|
|
16955
|
+
},
|
|
16956
|
+
"description": "Returns true if the datasource is disconnected.",
|
|
16957
|
+
"inheritedFrom": {
|
|
16958
|
+
"name": "GridProBaseDatasource",
|
|
16959
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17165
16960
|
}
|
|
17166
16961
|
},
|
|
17167
16962
|
{
|
|
17168
|
-
"kind": "
|
|
17169
|
-
"name": "
|
|
17170
|
-
"
|
|
17171
|
-
|
|
16963
|
+
"kind": "method",
|
|
16964
|
+
"name": "getDatasourceStatusBarPanels",
|
|
16965
|
+
"privacy": "public",
|
|
16966
|
+
"return": {
|
|
16967
|
+
"type": {
|
|
16968
|
+
"text": "any[]"
|
|
16969
|
+
}
|
|
17172
16970
|
},
|
|
17173
|
-
"
|
|
16971
|
+
"parameters": [
|
|
16972
|
+
{
|
|
16973
|
+
"name": "isServerSide",
|
|
16974
|
+
"type": {
|
|
16975
|
+
"text": "boolean"
|
|
16976
|
+
}
|
|
16977
|
+
},
|
|
16978
|
+
{
|
|
16979
|
+
"name": "statusBarConfig",
|
|
16980
|
+
"type": {
|
|
16981
|
+
"text": "any"
|
|
16982
|
+
}
|
|
16983
|
+
}
|
|
16984
|
+
],
|
|
16985
|
+
"description": "Gets datasource-specific status bar component configurations.\nThis method should be called by the grid to get status bar panels specific to this datasource.",
|
|
16986
|
+
"inheritedFrom": {
|
|
16987
|
+
"name": "GridProBaseDatasource",
|
|
16988
|
+
"module": "src/datasource/base.datasource.ts"
|
|
16989
|
+
}
|
|
17174
16990
|
},
|
|
17175
16991
|
{
|
|
17176
16992
|
"kind": "field",
|
|
17177
|
-
"name": "
|
|
16993
|
+
"name": "connect",
|
|
17178
16994
|
"type": {
|
|
17179
16995
|
"text": "Connect"
|
|
17180
16996
|
},
|
|
17181
|
-
"
|
|
16997
|
+
"inheritedFrom": {
|
|
16998
|
+
"name": "GenesisGridDatasourceElement",
|
|
16999
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17000
|
+
}
|
|
17182
17001
|
},
|
|
17183
17002
|
{
|
|
17184
17003
|
"kind": "field",
|
|
17185
|
-
"name": "
|
|
17004
|
+
"name": "datasource",
|
|
17186
17005
|
"type": {
|
|
17187
|
-
"text": "
|
|
17006
|
+
"text": "Datasource"
|
|
17188
17007
|
},
|
|
17189
|
-
"
|
|
17008
|
+
"inheritedFrom": {
|
|
17009
|
+
"name": "GenesisGridDatasourceElement",
|
|
17010
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17011
|
+
}
|
|
17190
17012
|
},
|
|
17191
17013
|
{
|
|
17192
17014
|
"kind": "field",
|
|
17193
|
-
"name": "
|
|
17015
|
+
"name": "deferredGridOptions",
|
|
17194
17016
|
"type": {
|
|
17195
|
-
"text": "
|
|
17017
|
+
"text": "GridOptions"
|
|
17196
17018
|
},
|
|
17197
|
-
"
|
|
17019
|
+
"inheritedFrom": {
|
|
17020
|
+
"name": "GenesisGridDatasourceElement",
|
|
17021
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17022
|
+
}
|
|
17198
17023
|
},
|
|
17199
17024
|
{
|
|
17200
17025
|
"kind": "field",
|
|
17201
|
-
"name": "
|
|
17026
|
+
"name": "deferredColumnStates",
|
|
17202
17027
|
"type": {
|
|
17203
|
-
"text": "
|
|
17028
|
+
"text": "ColumnState[]"
|
|
17204
17029
|
},
|
|
17205
|
-
"
|
|
17206
|
-
|
|
17030
|
+
"inheritedFrom": {
|
|
17031
|
+
"name": "GenesisGridDatasourceElement",
|
|
17032
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17033
|
+
}
|
|
17207
17034
|
},
|
|
17208
17035
|
{
|
|
17209
17036
|
"kind": "field",
|
|
17210
|
-
"name": "
|
|
17037
|
+
"name": "rowDataMapper",
|
|
17211
17038
|
"type": {
|
|
17212
|
-
"text": "
|
|
17039
|
+
"text": "Function"
|
|
17213
17040
|
},
|
|
17214
|
-
"
|
|
17215
|
-
"
|
|
17041
|
+
"description": "Allows grid data updates to be processed via and external function before applying in grid",
|
|
17042
|
+
"inheritedFrom": {
|
|
17043
|
+
"name": "GenesisGridDatasourceElement",
|
|
17044
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17045
|
+
}
|
|
17216
17046
|
},
|
|
17217
17047
|
{
|
|
17218
17048
|
"kind": "field",
|
|
17219
|
-
"name": "
|
|
17049
|
+
"name": "criteria",
|
|
17220
17050
|
"type": {
|
|
17221
|
-
"text": "string
|
|
17051
|
+
"text": "string"
|
|
17222
17052
|
},
|
|
17223
|
-
"
|
|
17224
|
-
"
|
|
17053
|
+
"description": "Groovy expression to perform filters on the query server; these remain active for the life of the subscription.",
|
|
17054
|
+
"inheritedFrom": {
|
|
17055
|
+
"name": "GenesisGridDatasourceElement",
|
|
17056
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17057
|
+
}
|
|
17225
17058
|
},
|
|
17226
17059
|
{
|
|
17227
17060
|
"kind": "field",
|
|
17228
|
-
"name": "
|
|
17061
|
+
"name": "isSnapshot",
|
|
17229
17062
|
"type": {
|
|
17230
17063
|
"text": "boolean"
|
|
17231
17064
|
},
|
|
17232
|
-
"privacy": "public",
|
|
17233
17065
|
"default": "false",
|
|
17234
|
-
"description": "
|
|
17066
|
+
"description": "Request a snapshot from the server.",
|
|
17067
|
+
"inheritedFrom": {
|
|
17068
|
+
"name": "GenesisGridDatasourceElement",
|
|
17069
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17070
|
+
}
|
|
17235
17071
|
},
|
|
17236
17072
|
{
|
|
17237
17073
|
"kind": "field",
|
|
17238
|
-
"name": "
|
|
17074
|
+
"name": "maxRows",
|
|
17239
17075
|
"type": {
|
|
17240
|
-
"text": "
|
|
17076
|
+
"text": "number"
|
|
17241
17077
|
},
|
|
17242
|
-
"
|
|
17243
|
-
"
|
|
17078
|
+
"description": "Maximum number of rows to be returned as part of the initial message, and as part of any additional MORE_ROWS messages.",
|
|
17079
|
+
"inheritedFrom": {
|
|
17080
|
+
"name": "GenesisGridDatasourceElement",
|
|
17081
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17082
|
+
}
|
|
17244
17083
|
},
|
|
17245
17084
|
{
|
|
17246
17085
|
"kind": "field",
|
|
17247
|
-
"name": "
|
|
17086
|
+
"name": "orderBy",
|
|
17248
17087
|
"type": {
|
|
17249
17088
|
"text": "string"
|
|
17250
17089
|
},
|
|
17251
|
-
"
|
|
17252
|
-
"
|
|
17090
|
+
"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.",
|
|
17091
|
+
"inheritedFrom": {
|
|
17092
|
+
"name": "GenesisGridDatasourceElement",
|
|
17093
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17094
|
+
}
|
|
17253
17095
|
},
|
|
17254
17096
|
{
|
|
17255
17097
|
"kind": "field",
|
|
17256
|
-
"name": "
|
|
17098
|
+
"name": "resourceName",
|
|
17257
17099
|
"type": {
|
|
17258
|
-
"text": "
|
|
17100
|
+
"text": "string"
|
|
17259
17101
|
},
|
|
17260
|
-
"description": "
|
|
17102
|
+
"description": "The name of the target Data Server query or Request Server requestReply.",
|
|
17103
|
+
"inheritedFrom": {
|
|
17104
|
+
"name": "GenesisGridDatasourceElement",
|
|
17105
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17106
|
+
}
|
|
17261
17107
|
},
|
|
17262
17108
|
{
|
|
17263
17109
|
"kind": "field",
|
|
17264
|
-
"name": "
|
|
17110
|
+
"name": "viewNumber",
|
|
17265
17111
|
"type": {
|
|
17266
17112
|
"text": "number"
|
|
17267
17113
|
},
|
|
17268
|
-
"
|
|
17269
|
-
"
|
|
17114
|
+
"description": "The desired view/page you want data from.",
|
|
17115
|
+
"inheritedFrom": {
|
|
17116
|
+
"name": "GenesisGridDatasourceElement",
|
|
17117
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17118
|
+
}
|
|
17270
17119
|
},
|
|
17271
17120
|
{
|
|
17272
17121
|
"kind": "field",
|
|
17273
|
-
"name": "
|
|
17122
|
+
"name": "fields",
|
|
17274
17123
|
"type": {
|
|
17275
|
-
"text": "
|
|
17124
|
+
"text": "string"
|
|
17276
17125
|
},
|
|
17277
|
-
"
|
|
17278
|
-
"
|
|
17126
|
+
"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.",
|
|
17127
|
+
"inheritedFrom": {
|
|
17128
|
+
"name": "GenesisGridDatasourceElement",
|
|
17129
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17130
|
+
}
|
|
17279
17131
|
},
|
|
17280
17132
|
{
|
|
17281
17133
|
"kind": "field",
|
|
17282
|
-
"name": "
|
|
17134
|
+
"name": "maxView",
|
|
17283
17135
|
"type": {
|
|
17284
|
-
"text": "
|
|
17136
|
+
"text": "number"
|
|
17285
17137
|
},
|
|
17286
|
-
"
|
|
17287
|
-
"
|
|
17138
|
+
"description": "Maximum number of rows to track as part of a client \"view\".",
|
|
17139
|
+
"inheritedFrom": {
|
|
17140
|
+
"name": "GenesisGridDatasourceElement",
|
|
17141
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17142
|
+
}
|
|
17288
17143
|
},
|
|
17289
17144
|
{
|
|
17290
17145
|
"kind": "field",
|
|
17291
|
-
"name": "
|
|
17146
|
+
"name": "movingView",
|
|
17292
17147
|
"type": {
|
|
17293
|
-
"text": "
|
|
17148
|
+
"text": "boolean"
|
|
17294
17149
|
},
|
|
17295
|
-
"
|
|
17296
|
-
"description": "
|
|
17150
|
+
"default": "false",
|
|
17151
|
+
"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.",
|
|
17152
|
+
"inheritedFrom": {
|
|
17153
|
+
"name": "GenesisGridDatasourceElement",
|
|
17154
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17155
|
+
}
|
|
17297
17156
|
},
|
|
17298
17157
|
{
|
|
17299
17158
|
"kind": "field",
|
|
17300
|
-
"name": "
|
|
17159
|
+
"name": "reverse",
|
|
17301
17160
|
"type": {
|
|
17302
|
-
"text": "
|
|
17161
|
+
"text": "boolean"
|
|
17303
17162
|
},
|
|
17304
|
-
"
|
|
17305
|
-
"
|
|
17163
|
+
"default": "false",
|
|
17164
|
+
"description": "Option that changes the Data Server index iteration.",
|
|
17165
|
+
"inheritedFrom": {
|
|
17166
|
+
"name": "GenesisGridDatasourceElement",
|
|
17167
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17168
|
+
}
|
|
17306
17169
|
},
|
|
17307
17170
|
{
|
|
17308
17171
|
"kind": "field",
|
|
17309
|
-
"name": "
|
|
17172
|
+
"name": "disablePolling",
|
|
17310
17173
|
"type": {
|
|
17311
|
-
"text": "
|
|
17174
|
+
"text": "boolean"
|
|
17312
17175
|
},
|
|
17313
|
-
"
|
|
17176
|
+
"default": "false",
|
|
17177
|
+
"description": "Disables polling if set to true (data updates for the grid will not be fetched automatically).",
|
|
17178
|
+
"inheritedFrom": {
|
|
17179
|
+
"name": "GenesisGridDatasourceElement",
|
|
17180
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17181
|
+
}
|
|
17314
17182
|
},
|
|
17315
17183
|
{
|
|
17316
17184
|
"kind": "field",
|
|
17317
|
-
"name": "
|
|
17185
|
+
"name": "offset",
|
|
17318
17186
|
"type": {
|
|
17319
|
-
"text": "
|
|
17187
|
+
"text": "number"
|
|
17320
17188
|
},
|
|
17321
|
-
"
|
|
17189
|
+
"description": "The offset for pagination in REQUEST_SERVER scenarios.",
|
|
17190
|
+
"inheritedFrom": {
|
|
17191
|
+
"name": "GenesisGridDatasourceElement",
|
|
17192
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17193
|
+
}
|
|
17322
17194
|
},
|
|
17323
17195
|
{
|
|
17324
17196
|
"kind": "field",
|
|
17325
|
-
"name": "
|
|
17197
|
+
"name": "pollingInterval",
|
|
17326
17198
|
"type": {
|
|
17327
|
-
"text": "
|
|
17199
|
+
"text": "number"
|
|
17200
|
+
},
|
|
17201
|
+
"description": "Custom polling frequency (in milliseconds) for a Request Server resource.",
|
|
17202
|
+
"inheritedFrom": {
|
|
17203
|
+
"name": "GenesisGridDatasourceElement",
|
|
17204
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17328
17205
|
}
|
|
17329
17206
|
},
|
|
17330
17207
|
{
|
|
17331
17208
|
"kind": "field",
|
|
17332
|
-
"name": "
|
|
17209
|
+
"name": "pollTriggerEvents",
|
|
17333
17210
|
"type": {
|
|
17334
|
-
"text": "string"
|
|
17211
|
+
"text": "string[]"
|
|
17335
17212
|
},
|
|
17336
|
-
"
|
|
17337
|
-
"description": "
|
|
17213
|
+
"default": "[]",
|
|
17214
|
+
"description": "Array of event names that will trigger a poll when received as commit responses.",
|
|
17215
|
+
"inheritedFrom": {
|
|
17216
|
+
"name": "GenesisGridDatasourceElement",
|
|
17217
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17218
|
+
}
|
|
17338
17219
|
},
|
|
17339
17220
|
{
|
|
17340
17221
|
"kind": "field",
|
|
17341
|
-
"name": "
|
|
17222
|
+
"name": "request",
|
|
17342
17223
|
"type": {
|
|
17343
|
-
"text": "
|
|
17224
|
+
"text": "any"
|
|
17344
17225
|
},
|
|
17345
|
-
"
|
|
17346
|
-
"
|
|
17226
|
+
"description": "Similar to fields but for Request Server scenarios. This optional parameter enables you to specify request fields, which can include wildcards.",
|
|
17227
|
+
"inheritedFrom": {
|
|
17228
|
+
"name": "GenesisGridDatasourceElement",
|
|
17229
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17230
|
+
}
|
|
17347
17231
|
},
|
|
17348
17232
|
{
|
|
17349
17233
|
"kind": "field",
|
|
17350
|
-
"name": "
|
|
17234
|
+
"name": "requestAutoSetup",
|
|
17351
17235
|
"type": {
|
|
17352
|
-
"text": "
|
|
17236
|
+
"text": "boolean"
|
|
17353
17237
|
},
|
|
17354
|
-
"
|
|
17238
|
+
"default": "true",
|
|
17239
|
+
"description": "Attribute to set whether the REQUEST object should be automatically set up.",
|
|
17240
|
+
"inheritedFrom": {
|
|
17241
|
+
"name": "GenesisGridDatasourceElement",
|
|
17242
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17243
|
+
}
|
|
17355
17244
|
},
|
|
17356
17245
|
{
|
|
17357
17246
|
"kind": "field",
|
|
17358
|
-
"name": "
|
|
17359
|
-
"description": "
|
|
17360
|
-
"
|
|
17247
|
+
"name": "rowIdAttr",
|
|
17248
|
+
"description": "Attribute to set an unique identifier for the row.\n\nDefaults to `ROW_REF` or `RECORD_ID` depending on the resource type.",
|
|
17249
|
+
"inheritedFrom": {
|
|
17250
|
+
"name": "GenesisGridDatasourceElement",
|
|
17251
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17252
|
+
}
|
|
17361
17253
|
},
|
|
17362
17254
|
{
|
|
17363
17255
|
"kind": "field",
|
|
17364
|
-
"name": "
|
|
17256
|
+
"name": "restartOnReconnection",
|
|
17365
17257
|
"type": {
|
|
17366
17258
|
"text": "boolean"
|
|
17367
17259
|
},
|
|
17368
|
-
"
|
|
17260
|
+
"default": "true",
|
|
17261
|
+
"description": "Attribute to set whether the datasource should restart when it reconnects.",
|
|
17262
|
+
"inheritedFrom": {
|
|
17263
|
+
"name": "GenesisGridDatasourceElement",
|
|
17264
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17265
|
+
}
|
|
17369
17266
|
},
|
|
17370
17267
|
{
|
|
17371
17268
|
"kind": "field",
|
|
17372
|
-
"name": "
|
|
17269
|
+
"name": "defaultRowIdByResourceType",
|
|
17373
17270
|
"type": {
|
|
17374
|
-
"text": "
|
|
17271
|
+
"text": "string"
|
|
17375
17272
|
},
|
|
17376
|
-
"
|
|
17377
|
-
|
|
17378
|
-
|
|
17379
|
-
|
|
17380
|
-
|
|
17381
|
-
|
|
17382
|
-
"parameters": [
|
|
17383
|
-
{
|
|
17384
|
-
"name": "rows",
|
|
17385
|
-
"type": {
|
|
17386
|
-
"text": "any[]"
|
|
17387
|
-
}
|
|
17388
|
-
}
|
|
17389
|
-
],
|
|
17390
|
-
"description": "Sets row data on the grid in a version-safe way.\nAG Grid v32+ removed `setRowData` in favour of `updateGridOptions`."
|
|
17391
|
-
},
|
|
17392
|
-
{
|
|
17393
|
-
"kind": "method",
|
|
17394
|
-
"name": "setGridColumnDefs",
|
|
17395
|
-
"privacy": "private",
|
|
17396
|
-
"parameters": [
|
|
17397
|
-
{
|
|
17398
|
-
"name": "colDefs",
|
|
17399
|
-
"type": {
|
|
17400
|
-
"text": "ColDef[]"
|
|
17401
|
-
}
|
|
17402
|
-
}
|
|
17403
|
-
],
|
|
17404
|
-
"description": "Sets column defs on the grid in a version-safe way.\nAG Grid v32+ removed `setColumnDefs` in favour of `updateGridOptions`."
|
|
17405
|
-
},
|
|
17406
|
-
{
|
|
17407
|
-
"kind": "method",
|
|
17408
|
-
"name": "emitValue",
|
|
17409
|
-
"privacy": "private",
|
|
17410
|
-
"parameters": [
|
|
17411
|
-
{
|
|
17412
|
-
"name": "value",
|
|
17413
|
-
"type": {
|
|
17414
|
-
"text": "string"
|
|
17415
|
-
}
|
|
17416
|
-
}
|
|
17417
|
-
],
|
|
17418
|
-
"description": "Emits 'change' and 'input' events so that the `sync` directive and forms work correctly."
|
|
17419
|
-
},
|
|
17420
|
-
{
|
|
17421
|
-
"kind": "method",
|
|
17422
|
-
"name": "toggle",
|
|
17423
|
-
"privacy": "public"
|
|
17424
|
-
},
|
|
17425
|
-
{
|
|
17426
|
-
"kind": "method",
|
|
17427
|
-
"name": "getAndSetRows",
|
|
17428
|
-
"privacy": "private"
|
|
17273
|
+
"privacy": "protected",
|
|
17274
|
+
"readonly": true,
|
|
17275
|
+
"inheritedFrom": {
|
|
17276
|
+
"name": "GenesisGridDatasourceElement",
|
|
17277
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17278
|
+
}
|
|
17429
17279
|
},
|
|
17430
17280
|
{
|
|
17431
17281
|
"kind": "field",
|
|
17432
|
-
"name": "
|
|
17433
|
-
"
|
|
17434
|
-
|
|
17435
|
-
|
|
17436
|
-
"
|
|
17437
|
-
"
|
|
17438
|
-
"
|
|
17439
|
-
|
|
17440
|
-
|
|
17441
|
-
|
|
17442
|
-
"name": "requestChanged",
|
|
17443
|
-
"privacy": "public"
|
|
17444
|
-
},
|
|
17445
|
-
{
|
|
17446
|
-
"kind": "method",
|
|
17447
|
-
"name": "columnDefinitionsChanged",
|
|
17448
|
-
"privacy": "public"
|
|
17282
|
+
"name": "criteriaFromFilters",
|
|
17283
|
+
"type": {
|
|
17284
|
+
"text": "Map<string, string>"
|
|
17285
|
+
},
|
|
17286
|
+
"privacy": "protected",
|
|
17287
|
+
"default": "new Map()",
|
|
17288
|
+
"inheritedFrom": {
|
|
17289
|
+
"name": "GenesisGridDatasourceElement",
|
|
17290
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17291
|
+
}
|
|
17449
17292
|
},
|
|
17450
17293
|
{
|
|
17451
17294
|
"kind": "field",
|
|
17452
|
-
"name": "
|
|
17453
|
-
"
|
|
17454
|
-
|
|
17455
|
-
|
|
17456
|
-
"
|
|
17457
|
-
"
|
|
17458
|
-
"
|
|
17459
|
-
|
|
17460
|
-
|
|
17461
|
-
|
|
17462
|
-
"name": "dropdownWidthChanged",
|
|
17463
|
-
"privacy": "public"
|
|
17464
|
-
},
|
|
17465
|
-
{
|
|
17466
|
-
"kind": "method",
|
|
17467
|
-
"name": "changeHandler",
|
|
17468
|
-
"privacy": "public",
|
|
17469
|
-
"parameters": [
|
|
17470
|
-
{
|
|
17471
|
-
"name": "event",
|
|
17472
|
-
"type": {
|
|
17473
|
-
"text": "Event"
|
|
17474
|
-
}
|
|
17475
|
-
}
|
|
17476
|
-
]
|
|
17295
|
+
"name": "update",
|
|
17296
|
+
"type": {
|
|
17297
|
+
"text": "BehaviorSubject<Map<string, string>>"
|
|
17298
|
+
},
|
|
17299
|
+
"privacy": "protected",
|
|
17300
|
+
"default": "new BehaviorSubject(new Map())",
|
|
17301
|
+
"inheritedFrom": {
|
|
17302
|
+
"name": "GenesisGridDatasourceElement",
|
|
17303
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17304
|
+
}
|
|
17477
17305
|
},
|
|
17478
17306
|
{
|
|
17479
17307
|
"kind": "method",
|
|
17480
|
-
"name": "
|
|
17308
|
+
"name": "datasourceOptions",
|
|
17309
|
+
"privacy": "protected",
|
|
17481
17310
|
"return": {
|
|
17482
17311
|
"type": {
|
|
17483
|
-
"text": "
|
|
17312
|
+
"text": "DatasourceOptions"
|
|
17484
17313
|
}
|
|
17485
17314
|
},
|
|
17486
|
-
"parameters": [
|
|
17487
|
-
{
|
|
17488
|
-
"name": "deep",
|
|
17489
|
-
"optional": true,
|
|
17490
|
-
"type": {
|
|
17491
|
-
"text": "boolean"
|
|
17492
|
-
}
|
|
17493
|
-
}
|
|
17494
|
-
],
|
|
17495
17315
|
"inheritedFrom": {
|
|
17496
|
-
"name": "
|
|
17497
|
-
"module": "src/
|
|
17316
|
+
"name": "GenesisGridDatasourceElement",
|
|
17317
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17498
17318
|
}
|
|
17499
17319
|
},
|
|
17500
17320
|
{
|
|
17501
17321
|
"kind": "method",
|
|
17502
|
-
"name": "
|
|
17322
|
+
"name": "buildCriteria",
|
|
17323
|
+
"privacy": "private",
|
|
17503
17324
|
"return": {
|
|
17504
17325
|
"type": {
|
|
17505
|
-
"text": "
|
|
17326
|
+
"text": "string"
|
|
17506
17327
|
}
|
|
17507
17328
|
},
|
|
17508
17329
|
"inheritedFrom": {
|
|
17509
|
-
"name": "
|
|
17510
|
-
"module": "src/
|
|
17330
|
+
"name": "GenesisGridDatasourceElement",
|
|
17331
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17511
17332
|
}
|
|
17512
17333
|
},
|
|
17513
17334
|
{
|
|
17514
17335
|
"kind": "field",
|
|
17515
|
-
"name": "
|
|
17516
|
-
"
|
|
17517
|
-
"
|
|
17518
|
-
"text": ""
|
|
17519
|
-
}
|
|
17336
|
+
"name": "isRequestServer",
|
|
17337
|
+
"type": {
|
|
17338
|
+
"text": "boolean"
|
|
17520
17339
|
},
|
|
17521
17340
|
"readonly": true,
|
|
17522
17341
|
"inheritedFrom": {
|
|
17523
|
-
"name": "
|
|
17524
|
-
"module": "src/
|
|
17342
|
+
"name": "GenesisGridDatasourceElement",
|
|
17343
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17525
17344
|
}
|
|
17526
17345
|
},
|
|
17527
17346
|
{
|
|
17528
|
-
"kind": "
|
|
17529
|
-
"name": "
|
|
17530
|
-
"
|
|
17531
|
-
|
|
17532
|
-
"
|
|
17347
|
+
"kind": "method",
|
|
17348
|
+
"name": "datasourceStatusChanged",
|
|
17349
|
+
"parameters": [
|
|
17350
|
+
{
|
|
17351
|
+
"name": "prev",
|
|
17352
|
+
"type": {
|
|
17353
|
+
"text": "DatasourceStatus"
|
|
17354
|
+
}
|
|
17355
|
+
},
|
|
17356
|
+
{
|
|
17357
|
+
"name": "next",
|
|
17358
|
+
"type": {
|
|
17359
|
+
"text": "DatasourceStatus"
|
|
17360
|
+
}
|
|
17533
17361
|
}
|
|
17534
|
-
|
|
17535
|
-
"
|
|
17536
|
-
|
|
17537
|
-
"
|
|
17538
|
-
"module": "src/mixins/lifecycle/lifecycle.ts"
|
|
17362
|
+
],
|
|
17363
|
+
"inheritedFrom": {
|
|
17364
|
+
"name": "GenesisGridDatasourceElement",
|
|
17365
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17539
17366
|
}
|
|
17540
17367
|
},
|
|
17541
17368
|
{
|
|
17542
17369
|
"kind": "method",
|
|
17543
|
-
"name": "
|
|
17544
|
-
"return": {
|
|
17545
|
-
"type": {
|
|
17546
|
-
"text": "boolean"
|
|
17547
|
-
}
|
|
17548
|
-
},
|
|
17370
|
+
"name": "handleErrors",
|
|
17549
17371
|
"parameters": [
|
|
17550
17372
|
{
|
|
17551
|
-
"name": "
|
|
17373
|
+
"name": "errors",
|
|
17552
17374
|
"type": {
|
|
17553
|
-
"text": "
|
|
17554
|
-
}
|
|
17375
|
+
"text": "string | any[]"
|
|
17376
|
+
},
|
|
17377
|
+
"description": "The error message or array of error messages"
|
|
17378
|
+
},
|
|
17379
|
+
{
|
|
17380
|
+
"name": "type",
|
|
17381
|
+
"default": "'unknown'",
|
|
17382
|
+
"type": {
|
|
17383
|
+
"text": "BaseDatasourceErrorEventDetail['type']"
|
|
17384
|
+
},
|
|
17385
|
+
"description": "The type of error that occurred"
|
|
17555
17386
|
}
|
|
17556
17387
|
],
|
|
17388
|
+
"description": "Handles errors and emits appropriate error events.",
|
|
17389
|
+
"privacy": "public",
|
|
17557
17390
|
"inheritedFrom": {
|
|
17558
|
-
"name": "
|
|
17559
|
-
"module": "src/
|
|
17391
|
+
"name": "GenesisGridDatasourceElement",
|
|
17392
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17393
|
+
}
|
|
17394
|
+
},
|
|
17395
|
+
{
|
|
17396
|
+
"kind": "method",
|
|
17397
|
+
"name": "clearErrors",
|
|
17398
|
+
"description": "Clears error state and emits connected event.",
|
|
17399
|
+
"privacy": "public",
|
|
17400
|
+
"inheritedFrom": {
|
|
17401
|
+
"name": "GenesisGridDatasourceElement",
|
|
17402
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17560
17403
|
}
|
|
17561
17404
|
},
|
|
17562
17405
|
{
|
|
@@ -17673,68 +17516,194 @@
|
|
|
17673
17516
|
],
|
|
17674
17517
|
"attributes": [
|
|
17675
17518
|
{
|
|
17519
|
+
"name": "keep-col-defs-on-clear-row-data",
|
|
17676
17520
|
"type": {
|
|
17677
17521
|
"text": "boolean"
|
|
17678
17522
|
},
|
|
17679
|
-
"
|
|
17680
|
-
"fieldName": "
|
|
17523
|
+
"default": "false",
|
|
17524
|
+
"fieldName": "keepColDefsOnClearRowData"
|
|
17681
17525
|
},
|
|
17682
17526
|
{
|
|
17683
|
-
"name": "
|
|
17527
|
+
"name": "criteria",
|
|
17684
17528
|
"type": {
|
|
17685
17529
|
"text": "string"
|
|
17686
17530
|
},
|
|
17687
|
-
"description": "
|
|
17688
|
-
"fieldName": "
|
|
17531
|
+
"description": "Groovy expression to perform filters on the query server; these remain active for the life of the subscription.",
|
|
17532
|
+
"fieldName": "criteria",
|
|
17533
|
+
"inheritedFrom": {
|
|
17534
|
+
"name": "GenesisGridDatasourceElement",
|
|
17535
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17536
|
+
}
|
|
17689
17537
|
},
|
|
17690
17538
|
{
|
|
17691
|
-
"name": "
|
|
17539
|
+
"name": "is-snapshot",
|
|
17692
17540
|
"type": {
|
|
17693
|
-
"text": "
|
|
17541
|
+
"text": "boolean"
|
|
17694
17542
|
},
|
|
17695
|
-
"
|
|
17696
|
-
"
|
|
17543
|
+
"default": "false",
|
|
17544
|
+
"description": "Request a snapshot from the server.",
|
|
17545
|
+
"fieldName": "isSnapshot",
|
|
17546
|
+
"inheritedFrom": {
|
|
17547
|
+
"name": "GenesisGridDatasourceElement",
|
|
17548
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17549
|
+
}
|
|
17697
17550
|
},
|
|
17698
17551
|
{
|
|
17699
|
-
"name": "
|
|
17552
|
+
"name": "max-rows",
|
|
17700
17553
|
"type": {
|
|
17701
|
-
"text": "
|
|
17554
|
+
"text": "number"
|
|
17702
17555
|
},
|
|
17703
|
-
"
|
|
17704
|
-
"
|
|
17705
|
-
"
|
|
17556
|
+
"description": "Maximum number of rows to be returned as part of the initial message, and as part of any additional MORE_ROWS messages.",
|
|
17557
|
+
"fieldName": "maxRows",
|
|
17558
|
+
"inheritedFrom": {
|
|
17559
|
+
"name": "GenesisGridDatasourceElement",
|
|
17560
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17561
|
+
}
|
|
17706
17562
|
},
|
|
17707
17563
|
{
|
|
17708
|
-
"name": "
|
|
17564
|
+
"name": "order-by",
|
|
17709
17565
|
"type": {
|
|
17710
17566
|
"text": "string"
|
|
17711
17567
|
},
|
|
17712
|
-
"description": "
|
|
17713
|
-
"fieldName": "
|
|
17568
|
+
"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.",
|
|
17569
|
+
"fieldName": "orderBy",
|
|
17570
|
+
"inheritedFrom": {
|
|
17571
|
+
"name": "GenesisGridDatasourceElement",
|
|
17572
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17573
|
+
}
|
|
17714
17574
|
},
|
|
17715
17575
|
{
|
|
17716
|
-
"name": "
|
|
17576
|
+
"name": "resource-name",
|
|
17717
17577
|
"type": {
|
|
17718
17578
|
"text": "string"
|
|
17719
17579
|
},
|
|
17720
|
-
"description": "The
|
|
17721
|
-
"fieldName": "
|
|
17580
|
+
"description": "The name of the target Data Server query or Request Server requestReply.",
|
|
17581
|
+
"fieldName": "resourceName",
|
|
17582
|
+
"inheritedFrom": {
|
|
17583
|
+
"name": "GenesisGridDatasourceElement",
|
|
17584
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17585
|
+
}
|
|
17722
17586
|
},
|
|
17723
17587
|
{
|
|
17724
|
-
"name": "
|
|
17588
|
+
"name": "view-number",
|
|
17725
17589
|
"type": {
|
|
17726
|
-
"text": "
|
|
17590
|
+
"text": "number"
|
|
17727
17591
|
},
|
|
17728
|
-
"description": "
|
|
17729
|
-
"fieldName": "
|
|
17592
|
+
"description": "The desired view/page you want data from.",
|
|
17593
|
+
"fieldName": "viewNumber",
|
|
17594
|
+
"inheritedFrom": {
|
|
17595
|
+
"name": "GenesisGridDatasourceElement",
|
|
17596
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17597
|
+
}
|
|
17730
17598
|
},
|
|
17731
17599
|
{
|
|
17732
|
-
"name": "
|
|
17600
|
+
"name": "fields",
|
|
17601
|
+
"type": {
|
|
17602
|
+
"text": "string"
|
|
17603
|
+
},
|
|
17604
|
+
"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.",
|
|
17605
|
+
"fieldName": "fields",
|
|
17606
|
+
"inheritedFrom": {
|
|
17607
|
+
"name": "GenesisGridDatasourceElement",
|
|
17608
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17609
|
+
}
|
|
17610
|
+
},
|
|
17611
|
+
{
|
|
17612
|
+
"name": "max-view",
|
|
17733
17613
|
"type": {
|
|
17734
17614
|
"text": "number"
|
|
17735
17615
|
},
|
|
17736
|
-
"description": "
|
|
17737
|
-
"fieldName": "
|
|
17616
|
+
"description": "Maximum number of rows to track as part of a client \"view\".",
|
|
17617
|
+
"fieldName": "maxView",
|
|
17618
|
+
"inheritedFrom": {
|
|
17619
|
+
"name": "GenesisGridDatasourceElement",
|
|
17620
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17621
|
+
}
|
|
17622
|
+
},
|
|
17623
|
+
{
|
|
17624
|
+
"name": "moving-view",
|
|
17625
|
+
"type": {
|
|
17626
|
+
"text": "boolean"
|
|
17627
|
+
},
|
|
17628
|
+
"default": "false",
|
|
17629
|
+
"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.",
|
|
17630
|
+
"fieldName": "movingView",
|
|
17631
|
+
"inheritedFrom": {
|
|
17632
|
+
"name": "GenesisGridDatasourceElement",
|
|
17633
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17634
|
+
}
|
|
17635
|
+
},
|
|
17636
|
+
{
|
|
17637
|
+
"type": {
|
|
17638
|
+
"text": "number"
|
|
17639
|
+
},
|
|
17640
|
+
"description": "Option that changes the Data Server index iteration.",
|
|
17641
|
+
"fieldName": "reverse",
|
|
17642
|
+
"default": "false",
|
|
17643
|
+
"inheritedFrom": {
|
|
17644
|
+
"name": "GenesisGridDatasourceElement",
|
|
17645
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17646
|
+
}
|
|
17647
|
+
},
|
|
17648
|
+
{
|
|
17649
|
+
"name": "disable-polling",
|
|
17650
|
+
"type": {
|
|
17651
|
+
"text": "boolean"
|
|
17652
|
+
},
|
|
17653
|
+
"default": "false",
|
|
17654
|
+
"description": "Disables polling if set to true (data updates for the grid will not be fetched automatically).",
|
|
17655
|
+
"fieldName": "disablePolling",
|
|
17656
|
+
"inheritedFrom": {
|
|
17657
|
+
"name": "GenesisGridDatasourceElement",
|
|
17658
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17659
|
+
}
|
|
17660
|
+
},
|
|
17661
|
+
{
|
|
17662
|
+
"name": "polling-interval",
|
|
17663
|
+
"type": {
|
|
17664
|
+
"text": "number"
|
|
17665
|
+
},
|
|
17666
|
+
"description": "Custom polling frequency (in milliseconds) for a Request Server resource.",
|
|
17667
|
+
"fieldName": "pollingInterval",
|
|
17668
|
+
"inheritedFrom": {
|
|
17669
|
+
"name": "GenesisGridDatasourceElement",
|
|
17670
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17671
|
+
}
|
|
17672
|
+
},
|
|
17673
|
+
{
|
|
17674
|
+
"name": "request-auto-setup",
|
|
17675
|
+
"type": {
|
|
17676
|
+
"text": "boolean"
|
|
17677
|
+
},
|
|
17678
|
+
"default": "true",
|
|
17679
|
+
"description": "Attribute to set whether the REQUEST object should be automatically set up.",
|
|
17680
|
+
"fieldName": "requestAutoSetup",
|
|
17681
|
+
"inheritedFrom": {
|
|
17682
|
+
"name": "GenesisGridDatasourceElement",
|
|
17683
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17684
|
+
}
|
|
17685
|
+
},
|
|
17686
|
+
{
|
|
17687
|
+
"name": "row-id",
|
|
17688
|
+
"description": "Attribute to set an unique identifier for the row.\n\nDefaults to `ROW_REF` or `RECORD_ID` depending on the resource type.",
|
|
17689
|
+
"fieldName": "rowIdAttr",
|
|
17690
|
+
"inheritedFrom": {
|
|
17691
|
+
"name": "GenesisGridDatasourceElement",
|
|
17692
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17693
|
+
}
|
|
17694
|
+
},
|
|
17695
|
+
{
|
|
17696
|
+
"name": "restart-on-reconnection",
|
|
17697
|
+
"type": {
|
|
17698
|
+
"text": "boolean"
|
|
17699
|
+
},
|
|
17700
|
+
"default": "true",
|
|
17701
|
+
"description": "Attribute to set whether the datasource should restart when it reconnects.",
|
|
17702
|
+
"fieldName": "restartOnReconnection",
|
|
17703
|
+
"inheritedFrom": {
|
|
17704
|
+
"name": "GenesisGridDatasourceElement",
|
|
17705
|
+
"module": "src/datasource/base.datasource.ts"
|
|
17706
|
+
}
|
|
17738
17707
|
}
|
|
17739
17708
|
],
|
|
17740
17709
|
"mixins": [
|
|
@@ -17744,42 +17713,73 @@
|
|
|
17744
17713
|
}
|
|
17745
17714
|
],
|
|
17746
17715
|
"superclass": {
|
|
17747
|
-
"name": "
|
|
17748
|
-
"
|
|
17716
|
+
"name": "GridProBaseDatasource",
|
|
17717
|
+
"module": "/src/datasource/base.datasource"
|
|
17749
17718
|
},
|
|
17750
|
-
"tagName": "
|
|
17719
|
+
"tagName": "grid-pro-genesis-datasource",
|
|
17751
17720
|
"customElement": true
|
|
17721
|
+
}
|
|
17722
|
+
],
|
|
17723
|
+
"exports": [
|
|
17724
|
+
{
|
|
17725
|
+
"kind": "js",
|
|
17726
|
+
"name": "GridProGenesisDatasource",
|
|
17727
|
+
"declaration": {
|
|
17728
|
+
"name": "GridProGenesisDatasource",
|
|
17729
|
+
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
17730
|
+
}
|
|
17752
17731
|
},
|
|
17753
17732
|
{
|
|
17754
|
-
"kind": "
|
|
17755
|
-
"name": "
|
|
17756
|
-
"
|
|
17757
|
-
|
|
17733
|
+
"kind": "custom-element-definition",
|
|
17734
|
+
"name": "grid-pro-genesis-datasource",
|
|
17735
|
+
"declaration": {
|
|
17736
|
+
"name": "GridProGenesisDatasource",
|
|
17737
|
+
"module": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.ts"
|
|
17738
|
+
}
|
|
17758
17739
|
}
|
|
17759
|
-
]
|
|
17740
|
+
]
|
|
17741
|
+
},
|
|
17742
|
+
{
|
|
17743
|
+
"kind": "javascript-module",
|
|
17744
|
+
"path": "src/grid-pro-genesis-datasource/grid-pro-genesis-datasource.types.ts",
|
|
17745
|
+
"declarations": [],
|
|
17746
|
+
"exports": []
|
|
17747
|
+
},
|
|
17748
|
+
{
|
|
17749
|
+
"kind": "javascript-module",
|
|
17750
|
+
"path": "src/grid-pro-genesis-datasource/index.ts",
|
|
17751
|
+
"declarations": [],
|
|
17760
17752
|
"exports": [
|
|
17761
17753
|
{
|
|
17762
17754
|
"kind": "js",
|
|
17763
|
-
"name": "
|
|
17755
|
+
"name": "*",
|
|
17764
17756
|
"declaration": {
|
|
17765
|
-
"name": "
|
|
17766
|
-
"
|
|
17757
|
+
"name": "*",
|
|
17758
|
+
"package": "./datasource-events.types"
|
|
17767
17759
|
}
|
|
17768
17760
|
},
|
|
17769
17761
|
{
|
|
17770
17762
|
"kind": "js",
|
|
17771
|
-
"name": "
|
|
17763
|
+
"name": "*",
|
|
17772
17764
|
"declaration": {
|
|
17773
|
-
"name": "
|
|
17774
|
-
"
|
|
17765
|
+
"name": "*",
|
|
17766
|
+
"package": "./grid-pro-genesis-datasource"
|
|
17775
17767
|
}
|
|
17776
17768
|
},
|
|
17777
17769
|
{
|
|
17778
17770
|
"kind": "js",
|
|
17779
|
-
"name": "
|
|
17771
|
+
"name": "*",
|
|
17780
17772
|
"declaration": {
|
|
17781
|
-
"name": "
|
|
17782
|
-
"
|
|
17773
|
+
"name": "*",
|
|
17774
|
+
"package": "./grid-pro-genesis-datasource.config"
|
|
17775
|
+
}
|
|
17776
|
+
},
|
|
17777
|
+
{
|
|
17778
|
+
"kind": "js",
|
|
17779
|
+
"name": "*",
|
|
17780
|
+
"declaration": {
|
|
17781
|
+
"name": "*",
|
|
17782
|
+
"package": "./grid-pro-genesis-datasource.types"
|
|
17783
17783
|
}
|
|
17784
17784
|
}
|
|
17785
17785
|
]
|
|
@@ -18995,6 +18995,119 @@
|
|
|
18995
18995
|
}
|
|
18996
18996
|
]
|
|
18997
18997
|
},
|
|
18998
|
+
{
|
|
18999
|
+
"kind": "javascript-module",
|
|
19000
|
+
"path": "src/cell-renderers/utils/accessor.ts",
|
|
19001
|
+
"declarations": [
|
|
19002
|
+
{
|
|
19003
|
+
"kind": "function",
|
|
19004
|
+
"name": "setValueWithAccessor",
|
|
19005
|
+
"return": {
|
|
19006
|
+
"type": {
|
|
19007
|
+
"text": "string"
|
|
19008
|
+
}
|
|
19009
|
+
},
|
|
19010
|
+
"parameters": [
|
|
19011
|
+
{
|
|
19012
|
+
"name": "data",
|
|
19013
|
+
"type": {
|
|
19014
|
+
"text": "any"
|
|
19015
|
+
}
|
|
19016
|
+
},
|
|
19017
|
+
{
|
|
19018
|
+
"name": "accessor",
|
|
19019
|
+
"type": {
|
|
19020
|
+
"text": "string"
|
|
19021
|
+
}
|
|
19022
|
+
}
|
|
19023
|
+
]
|
|
19024
|
+
}
|
|
19025
|
+
],
|
|
19026
|
+
"exports": [
|
|
19027
|
+
{
|
|
19028
|
+
"kind": "js",
|
|
19029
|
+
"name": "setValueWithAccessor",
|
|
19030
|
+
"declaration": {
|
|
19031
|
+
"name": "setValueWithAccessor",
|
|
19032
|
+
"module": "src/cell-renderers/utils/accessor.ts"
|
|
19033
|
+
}
|
|
19034
|
+
}
|
|
19035
|
+
]
|
|
19036
|
+
},
|
|
19037
|
+
{
|
|
19038
|
+
"kind": "javascript-module",
|
|
19039
|
+
"path": "src/cell-renderers/utils/index.ts",
|
|
19040
|
+
"declarations": [],
|
|
19041
|
+
"exports": [
|
|
19042
|
+
{
|
|
19043
|
+
"kind": "js",
|
|
19044
|
+
"name": "*",
|
|
19045
|
+
"declaration": {
|
|
19046
|
+
"name": "*",
|
|
19047
|
+
"package": "./accessor"
|
|
19048
|
+
}
|
|
19049
|
+
}
|
|
19050
|
+
]
|
|
19051
|
+
},
|
|
19052
|
+
{
|
|
19053
|
+
"kind": "javascript-module",
|
|
19054
|
+
"path": "src/column/utils/grid-pro-columns.ts",
|
|
19055
|
+
"declarations": [
|
|
19056
|
+
{
|
|
19057
|
+
"kind": "function",
|
|
19058
|
+
"name": "gridProColumns",
|
|
19059
|
+
"return": {
|
|
19060
|
+
"type": {
|
|
19061
|
+
"text": "CaptureType<TSource>"
|
|
19062
|
+
}
|
|
19063
|
+
},
|
|
19064
|
+
"parameters": [
|
|
19065
|
+
{
|
|
19066
|
+
"name": "itemsBinding",
|
|
19067
|
+
"type": {
|
|
19068
|
+
"text": "Binding<TSource, readonly ColDef[]> | readonly ColDef[]"
|
|
19069
|
+
},
|
|
19070
|
+
"description": "The array to render"
|
|
19071
|
+
},
|
|
19072
|
+
{
|
|
19073
|
+
"name": "includeRenderers",
|
|
19074
|
+
"default": "true",
|
|
19075
|
+
"type": {
|
|
19076
|
+
"text": "boolean"
|
|
19077
|
+
},
|
|
19078
|
+
"description": "Optionally tells whether to include cell renderers, if available"
|
|
19079
|
+
}
|
|
19080
|
+
],
|
|
19081
|
+
"description": "A directive that renders a set of grid-pro-column elements from a given input binding",
|
|
19082
|
+
"privacy": "public"
|
|
19083
|
+
}
|
|
19084
|
+
],
|
|
19085
|
+
"exports": [
|
|
19086
|
+
{
|
|
19087
|
+
"kind": "js",
|
|
19088
|
+
"name": "gridProColumns",
|
|
19089
|
+
"declaration": {
|
|
19090
|
+
"name": "gridProColumns",
|
|
19091
|
+
"module": "src/column/utils/grid-pro-columns.ts"
|
|
19092
|
+
}
|
|
19093
|
+
}
|
|
19094
|
+
]
|
|
19095
|
+
},
|
|
19096
|
+
{
|
|
19097
|
+
"kind": "javascript-module",
|
|
19098
|
+
"path": "src/column/utils/index.ts",
|
|
19099
|
+
"declarations": [],
|
|
19100
|
+
"exports": [
|
|
19101
|
+
{
|
|
19102
|
+
"kind": "js",
|
|
19103
|
+
"name": "*",
|
|
19104
|
+
"declaration": {
|
|
19105
|
+
"name": "*",
|
|
19106
|
+
"package": "./grid-pro-columns"
|
|
19107
|
+
}
|
|
19108
|
+
}
|
|
19109
|
+
]
|
|
19110
|
+
},
|
|
18998
19111
|
{
|
|
18999
19112
|
"kind": "javascript-module",
|
|
19000
19113
|
"path": "src/utils/array.ts",
|
|
@@ -19330,119 +19443,6 @@
|
|
|
19330
19443
|
}
|
|
19331
19444
|
}
|
|
19332
19445
|
]
|
|
19333
|
-
},
|
|
19334
|
-
{
|
|
19335
|
-
"kind": "javascript-module",
|
|
19336
|
-
"path": "src/cell-renderers/utils/accessor.ts",
|
|
19337
|
-
"declarations": [
|
|
19338
|
-
{
|
|
19339
|
-
"kind": "function",
|
|
19340
|
-
"name": "setValueWithAccessor",
|
|
19341
|
-
"return": {
|
|
19342
|
-
"type": {
|
|
19343
|
-
"text": "string"
|
|
19344
|
-
}
|
|
19345
|
-
},
|
|
19346
|
-
"parameters": [
|
|
19347
|
-
{
|
|
19348
|
-
"name": "data",
|
|
19349
|
-
"type": {
|
|
19350
|
-
"text": "any"
|
|
19351
|
-
}
|
|
19352
|
-
},
|
|
19353
|
-
{
|
|
19354
|
-
"name": "accessor",
|
|
19355
|
-
"type": {
|
|
19356
|
-
"text": "string"
|
|
19357
|
-
}
|
|
19358
|
-
}
|
|
19359
|
-
]
|
|
19360
|
-
}
|
|
19361
|
-
],
|
|
19362
|
-
"exports": [
|
|
19363
|
-
{
|
|
19364
|
-
"kind": "js",
|
|
19365
|
-
"name": "setValueWithAccessor",
|
|
19366
|
-
"declaration": {
|
|
19367
|
-
"name": "setValueWithAccessor",
|
|
19368
|
-
"module": "src/cell-renderers/utils/accessor.ts"
|
|
19369
|
-
}
|
|
19370
|
-
}
|
|
19371
|
-
]
|
|
19372
|
-
},
|
|
19373
|
-
{
|
|
19374
|
-
"kind": "javascript-module",
|
|
19375
|
-
"path": "src/cell-renderers/utils/index.ts",
|
|
19376
|
-
"declarations": [],
|
|
19377
|
-
"exports": [
|
|
19378
|
-
{
|
|
19379
|
-
"kind": "js",
|
|
19380
|
-
"name": "*",
|
|
19381
|
-
"declaration": {
|
|
19382
|
-
"name": "*",
|
|
19383
|
-
"package": "./accessor"
|
|
19384
|
-
}
|
|
19385
|
-
}
|
|
19386
|
-
]
|
|
19387
|
-
},
|
|
19388
|
-
{
|
|
19389
|
-
"kind": "javascript-module",
|
|
19390
|
-
"path": "src/column/utils/grid-pro-columns.ts",
|
|
19391
|
-
"declarations": [
|
|
19392
|
-
{
|
|
19393
|
-
"kind": "function",
|
|
19394
|
-
"name": "gridProColumns",
|
|
19395
|
-
"return": {
|
|
19396
|
-
"type": {
|
|
19397
|
-
"text": "CaptureType<TSource>"
|
|
19398
|
-
}
|
|
19399
|
-
},
|
|
19400
|
-
"parameters": [
|
|
19401
|
-
{
|
|
19402
|
-
"name": "itemsBinding",
|
|
19403
|
-
"type": {
|
|
19404
|
-
"text": "Binding<TSource, readonly ColDef[]> | readonly ColDef[]"
|
|
19405
|
-
},
|
|
19406
|
-
"description": "The array to render"
|
|
19407
|
-
},
|
|
19408
|
-
{
|
|
19409
|
-
"name": "includeRenderers",
|
|
19410
|
-
"default": "true",
|
|
19411
|
-
"type": {
|
|
19412
|
-
"text": "boolean"
|
|
19413
|
-
},
|
|
19414
|
-
"description": "Optionally tells whether to include cell renderers, if available"
|
|
19415
|
-
}
|
|
19416
|
-
],
|
|
19417
|
-
"description": "A directive that renders a set of grid-pro-column elements from a given input binding",
|
|
19418
|
-
"privacy": "public"
|
|
19419
|
-
}
|
|
19420
|
-
],
|
|
19421
|
-
"exports": [
|
|
19422
|
-
{
|
|
19423
|
-
"kind": "js",
|
|
19424
|
-
"name": "gridProColumns",
|
|
19425
|
-
"declaration": {
|
|
19426
|
-
"name": "gridProColumns",
|
|
19427
|
-
"module": "src/column/utils/grid-pro-columns.ts"
|
|
19428
|
-
}
|
|
19429
|
-
}
|
|
19430
|
-
]
|
|
19431
|
-
},
|
|
19432
|
-
{
|
|
19433
|
-
"kind": "javascript-module",
|
|
19434
|
-
"path": "src/column/utils/index.ts",
|
|
19435
|
-
"declarations": [],
|
|
19436
|
-
"exports": [
|
|
19437
|
-
{
|
|
19438
|
-
"kind": "js",
|
|
19439
|
-
"name": "*",
|
|
19440
|
-
"declaration": {
|
|
19441
|
-
"name": "*",
|
|
19442
|
-
"package": "./grid-pro-columns"
|
|
19443
|
-
}
|
|
19444
|
-
}
|
|
19445
|
-
]
|
|
19446
19446
|
}
|
|
19447
19447
|
]
|
|
19448
19448
|
}
|