@genesislcap/foundation-ui 14.488.2 → 14.489.0-canary.FUI-2574-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/custom-elements.json +1534 -802
- package/dist/dts/combobox/combobox.d.ts +25 -0
- package/dist/dts/combobox/combobox.d.ts.map +1 -1
- package/dist/dts/index.d.ts +1 -0
- package/dist/dts/index.d.ts.map +1 -1
- package/dist/dts/options-datasource/options-datasource.d.ts +69 -0
- package/dist/dts/options-datasource/options-datasource.d.ts.map +1 -1
- package/dist/dts/react.d.ts +16 -14
- package/dist/dts/select/select.d.ts +8 -0
- package/dist/dts/select/select.d.ts.map +1 -1
- package/dist/dts/utils/base-datasource.d.ts +37 -1
- package/dist/dts/utils/base-datasource.d.ts.map +1 -1
- package/dist/dts/utils/event-types.d.ts +9 -0
- package/dist/dts/utils/event-types.d.ts.map +1 -0
- package/dist/dts/utils/index.d.ts +1 -0
- package/dist/dts/utils/index.d.ts.map +1 -1
- package/dist/esm/combobox/combobox.js +38 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/options-datasource/options-datasource.js +236 -29
- package/dist/esm/select/select.js +12 -0
- package/dist/esm/utils/base-datasource.js +132 -3
- package/dist/esm/utils/event-types.js +1 -0
- package/dist/esm/utils/index.js +1 -0
- package/dist/foundation-ui.api.json +370 -7
- package/dist/foundation-ui.d.ts +148 -1
- package/dist/react.cjs +37 -13
- package/dist/react.mjs +35 -11
- package/package.json +19 -19
|
@@ -8496,6 +8496,37 @@
|
|
|
8496
8496
|
"isAbstract": false,
|
|
8497
8497
|
"name": "applyRequestServerData"
|
|
8498
8498
|
},
|
|
8499
|
+
{
|
|
8500
|
+
"kind": "Method",
|
|
8501
|
+
"canonicalReference": "@genesislcap/foundation-ui!BaseDatasource#canRequestMoreRows:member(1)",
|
|
8502
|
+
"docComment": "/**\n * Whether a further page of rows can be requested from the server.\n *\n * @public\n */\n",
|
|
8503
|
+
"excerptTokens": [
|
|
8504
|
+
{
|
|
8505
|
+
"kind": "Content",
|
|
8506
|
+
"text": "canRequestMoreRows(): "
|
|
8507
|
+
},
|
|
8508
|
+
{
|
|
8509
|
+
"kind": "Content",
|
|
8510
|
+
"text": "boolean"
|
|
8511
|
+
},
|
|
8512
|
+
{
|
|
8513
|
+
"kind": "Content",
|
|
8514
|
+
"text": ";"
|
|
8515
|
+
}
|
|
8516
|
+
],
|
|
8517
|
+
"isStatic": false,
|
|
8518
|
+
"returnTypeTokenRange": {
|
|
8519
|
+
"startIndex": 1,
|
|
8520
|
+
"endIndex": 2
|
|
8521
|
+
},
|
|
8522
|
+
"releaseTag": "Public",
|
|
8523
|
+
"isProtected": false,
|
|
8524
|
+
"overloadIndex": 1,
|
|
8525
|
+
"parameters": [],
|
|
8526
|
+
"isOptional": false,
|
|
8527
|
+
"isAbstract": false,
|
|
8528
|
+
"name": "canRequestMoreRows"
|
|
8529
|
+
},
|
|
8499
8530
|
{
|
|
8500
8531
|
"kind": "Method",
|
|
8501
8532
|
"canonicalReference": "@genesislcap/foundation-ui!BaseDatasource#clearData:member(1)",
|
|
@@ -9400,10 +9431,70 @@
|
|
|
9400
9431
|
"isProtected": false,
|
|
9401
9432
|
"isAbstract": false
|
|
9402
9433
|
},
|
|
9434
|
+
{
|
|
9435
|
+
"kind": "Property",
|
|
9436
|
+
"canonicalReference": "@genesislcap/foundation-ui!BaseDatasource#moreRowsAvailable:member",
|
|
9437
|
+
"docComment": "/**\n * Whether the server reported more rows are available beyond the ones already fetched.\n */\n",
|
|
9438
|
+
"excerptTokens": [
|
|
9439
|
+
{
|
|
9440
|
+
"kind": "Content",
|
|
9441
|
+
"text": "protected moreRowsAvailable: "
|
|
9442
|
+
},
|
|
9443
|
+
{
|
|
9444
|
+
"kind": "Content",
|
|
9445
|
+
"text": "boolean"
|
|
9446
|
+
},
|
|
9447
|
+
{
|
|
9448
|
+
"kind": "Content",
|
|
9449
|
+
"text": ";"
|
|
9450
|
+
}
|
|
9451
|
+
],
|
|
9452
|
+
"isReadonly": false,
|
|
9453
|
+
"isOptional": false,
|
|
9454
|
+
"releaseTag": "Public",
|
|
9455
|
+
"name": "moreRowsAvailable",
|
|
9456
|
+
"propertyTypeTokenRange": {
|
|
9457
|
+
"startIndex": 1,
|
|
9458
|
+
"endIndex": 2
|
|
9459
|
+
},
|
|
9460
|
+
"isStatic": false,
|
|
9461
|
+
"isProtected": true,
|
|
9462
|
+
"isAbstract": false
|
|
9463
|
+
},
|
|
9464
|
+
{
|
|
9465
|
+
"kind": "Property",
|
|
9466
|
+
"canonicalReference": "@genesislcap/foundation-ui!BaseDatasource#nextRequestOffset:member",
|
|
9467
|
+
"docComment": "/**\n * The OFFSET to request the next page from, for REQUEST_SERVER paging.\n */\n",
|
|
9468
|
+
"excerptTokens": [
|
|
9469
|
+
{
|
|
9470
|
+
"kind": "Content",
|
|
9471
|
+
"text": "protected nextRequestOffset: "
|
|
9472
|
+
},
|
|
9473
|
+
{
|
|
9474
|
+
"kind": "Content",
|
|
9475
|
+
"text": "number"
|
|
9476
|
+
},
|
|
9477
|
+
{
|
|
9478
|
+
"kind": "Content",
|
|
9479
|
+
"text": ";"
|
|
9480
|
+
}
|
|
9481
|
+
],
|
|
9482
|
+
"isReadonly": false,
|
|
9483
|
+
"isOptional": false,
|
|
9484
|
+
"releaseTag": "Public",
|
|
9485
|
+
"name": "nextRequestOffset",
|
|
9486
|
+
"propertyTypeTokenRange": {
|
|
9487
|
+
"startIndex": 1,
|
|
9488
|
+
"endIndex": 2
|
|
9489
|
+
},
|
|
9490
|
+
"isStatic": false,
|
|
9491
|
+
"isProtected": true,
|
|
9492
|
+
"isAbstract": false
|
|
9493
|
+
},
|
|
9403
9494
|
{
|
|
9404
9495
|
"kind": "Property",
|
|
9405
9496
|
"canonicalReference": "@genesislcap/foundation-ui!BaseDatasource#orderBy:member",
|
|
9406
|
-
"docComment": "",
|
|
9497
|
+
"docComment": "/**\n * Sort field(s) for the resource. When using OFFSET-based paging (e.g. `options-datasource`'s `infinite-scroll`), the server has no other guaranteed row ordering between requests, so a stable `orderBy` is required to avoid rows shifting across pages (duplicates/gaps) as the underlying data changes between fetches.\n */\n",
|
|
9407
9498
|
"excerptTokens": [
|
|
9408
9499
|
{
|
|
9409
9500
|
"kind": "Content",
|
|
@@ -9572,6 +9663,42 @@
|
|
|
9572
9663
|
"isAbstract": false,
|
|
9573
9664
|
"name": "requestChanged"
|
|
9574
9665
|
},
|
|
9666
|
+
{
|
|
9667
|
+
"kind": "Method",
|
|
9668
|
+
"canonicalReference": "@genesislcap/foundation-ui!BaseDatasource#requestMoreRows:member(1)",
|
|
9669
|
+
"docComment": "/**\n * Requests the next page of rows (up to `maxRows`) from the server.\n *\n * @remarks\n *\n * For DATASERVER resources a MORE_ROWS message is sent against the active stream's view and the rows are delivered as inserts on the existing stream subscription. For REQUEST_SERVER resources the next page is requested by OFFSET and delivered via `handleStreamInserts`.\n *\n * @public\n */\n",
|
|
9670
|
+
"excerptTokens": [
|
|
9671
|
+
{
|
|
9672
|
+
"kind": "Content",
|
|
9673
|
+
"text": "requestMoreRows(): "
|
|
9674
|
+
},
|
|
9675
|
+
{
|
|
9676
|
+
"kind": "Reference",
|
|
9677
|
+
"text": "Promise",
|
|
9678
|
+
"canonicalReference": "!Promise:interface"
|
|
9679
|
+
},
|
|
9680
|
+
{
|
|
9681
|
+
"kind": "Content",
|
|
9682
|
+
"text": "<void>"
|
|
9683
|
+
},
|
|
9684
|
+
{
|
|
9685
|
+
"kind": "Content",
|
|
9686
|
+
"text": ";"
|
|
9687
|
+
}
|
|
9688
|
+
],
|
|
9689
|
+
"isStatic": false,
|
|
9690
|
+
"returnTypeTokenRange": {
|
|
9691
|
+
"startIndex": 1,
|
|
9692
|
+
"endIndex": 3
|
|
9693
|
+
},
|
|
9694
|
+
"releaseTag": "Public",
|
|
9695
|
+
"isProtected": false,
|
|
9696
|
+
"overloadIndex": 1,
|
|
9697
|
+
"parameters": [],
|
|
9698
|
+
"isOptional": false,
|
|
9699
|
+
"isAbstract": false,
|
|
9700
|
+
"name": "requestMoreRows"
|
|
9701
|
+
},
|
|
9575
9702
|
{
|
|
9576
9703
|
"kind": "Property",
|
|
9577
9704
|
"canonicalReference": "@genesislcap/foundation-ui!BaseDatasource#requiresFullDataRefresh:member",
|
|
@@ -9822,6 +9949,36 @@
|
|
|
9822
9949
|
"isAbstract": false,
|
|
9823
9950
|
"name": "setFilter"
|
|
9824
9951
|
},
|
|
9952
|
+
{
|
|
9953
|
+
"kind": "Property",
|
|
9954
|
+
"canonicalReference": "@genesislcap/foundation-ui!BaseDatasource#sourceRef:member",
|
|
9955
|
+
"docComment": "",
|
|
9956
|
+
"excerptTokens": [
|
|
9957
|
+
{
|
|
9958
|
+
"kind": "Content",
|
|
9959
|
+
"text": "protected sourceRef: "
|
|
9960
|
+
},
|
|
9961
|
+
{
|
|
9962
|
+
"kind": "Content",
|
|
9963
|
+
"text": "string"
|
|
9964
|
+
},
|
|
9965
|
+
{
|
|
9966
|
+
"kind": "Content",
|
|
9967
|
+
"text": ";"
|
|
9968
|
+
}
|
|
9969
|
+
],
|
|
9970
|
+
"isReadonly": false,
|
|
9971
|
+
"isOptional": false,
|
|
9972
|
+
"releaseTag": "Public",
|
|
9973
|
+
"name": "sourceRef",
|
|
9974
|
+
"propertyTypeTokenRange": {
|
|
9975
|
+
"startIndex": 1,
|
|
9976
|
+
"endIndex": 2
|
|
9977
|
+
},
|
|
9978
|
+
"isStatic": false,
|
|
9979
|
+
"isProtected": true,
|
|
9980
|
+
"isAbstract": false
|
|
9981
|
+
},
|
|
9825
9982
|
{
|
|
9826
9983
|
"kind": "Method",
|
|
9827
9984
|
"canonicalReference": "@genesislcap/foundation-ui!BaseDatasource#syncComponentData:member(1)",
|
|
@@ -12285,7 +12442,7 @@
|
|
|
12285
12442
|
{
|
|
12286
12443
|
"kind": "Class",
|
|
12287
12444
|
"canonicalReference": "@genesislcap/foundation-ui!Combobox:class",
|
|
12288
|
-
"docComment": "/**\n * @tagname %%prefix%%-combobox\n *\n * @fires\n *\n * change - Fired when a selection is confirmed in autocomplete-both mode\n */\n",
|
|
12445
|
+
"docComment": "/**\n * @tagname %%prefix%%-combobox\n *\n * @fires\n *\n * change - Fired when a selection is confirmed in autocomplete-both mode\n *\n * @fires\n *\n * open-change - Fired when the dropdown opens or closes. detail: `OpenChangeEventDetail`\n */\n",
|
|
12289
12446
|
"excerptTokens": [
|
|
12290
12447
|
{
|
|
12291
12448
|
"kind": "Content",
|
|
@@ -12340,7 +12497,7 @@
|
|
|
12340
12497
|
{
|
|
12341
12498
|
"kind": "Property",
|
|
12342
12499
|
"canonicalReference": "@genesislcap/foundation-ui!Combobox#async:member",
|
|
12343
|
-
"docComment": "",
|
|
12500
|
+
"docComment": "/**\n * Enables server-side filtering: typed input refetches from the server with a criteria instead of filtering the already-loaded options client-side.\n *\n * @remarks\n *\n * Automatically forced to `true` (overriding an explicit `async=\"false\"`) when the slotted datasource has `infinite-scroll` enabled — see {@link Combobox.enableAsyncForInfiniteScrollDatasource}. With only a page of the resource loaded, client-side filtering would silently only search that page.\n */\n",
|
|
12344
12501
|
"excerptTokens": [
|
|
12345
12502
|
{
|
|
12346
12503
|
"kind": "Content",
|
|
@@ -12932,6 +13089,41 @@
|
|
|
12932
13089
|
"isProtected": false,
|
|
12933
13090
|
"isAbstract": false
|
|
12934
13091
|
},
|
|
13092
|
+
{
|
|
13093
|
+
"kind": "Property",
|
|
13094
|
+
"canonicalReference": "@genesislcap/foundation-ui!Combobox#scrollableListbox:member",
|
|
13095
|
+
"docComment": "/**\n * The scrollable element hosting the dropdown options. Part of the public contract for slotted datasources (e.g. options-datasource infinite scroll) to observe scrolling.\n *\n * @public\n */\n",
|
|
13096
|
+
"excerptTokens": [
|
|
13097
|
+
{
|
|
13098
|
+
"kind": "Content",
|
|
13099
|
+
"text": "get scrollableListbox(): "
|
|
13100
|
+
},
|
|
13101
|
+
{
|
|
13102
|
+
"kind": "Reference",
|
|
13103
|
+
"text": "HTMLElement",
|
|
13104
|
+
"canonicalReference": "!HTMLElement:interface"
|
|
13105
|
+
},
|
|
13106
|
+
{
|
|
13107
|
+
"kind": "Content",
|
|
13108
|
+
"text": " | null"
|
|
13109
|
+
},
|
|
13110
|
+
{
|
|
13111
|
+
"kind": "Content",
|
|
13112
|
+
"text": ";"
|
|
13113
|
+
}
|
|
13114
|
+
],
|
|
13115
|
+
"isReadonly": true,
|
|
13116
|
+
"isOptional": false,
|
|
13117
|
+
"releaseTag": "Public",
|
|
13118
|
+
"name": "scrollableListbox",
|
|
13119
|
+
"propertyTypeTokenRange": {
|
|
13120
|
+
"startIndex": 1,
|
|
13121
|
+
"endIndex": 3
|
|
13122
|
+
},
|
|
13123
|
+
"isStatic": false,
|
|
13124
|
+
"isProtected": false,
|
|
13125
|
+
"isAbstract": false
|
|
13126
|
+
},
|
|
12935
13127
|
{
|
|
12936
13128
|
"kind": "Property",
|
|
12937
13129
|
"canonicalReference": "@genesislcap/foundation-ui!Combobox#scrollToSelectedWhenOpening:member",
|
|
@@ -57708,6 +57900,51 @@
|
|
|
57708
57900
|
"endIndex": 3
|
|
57709
57901
|
}
|
|
57710
57902
|
},
|
|
57903
|
+
{
|
|
57904
|
+
"kind": "Interface",
|
|
57905
|
+
"canonicalReference": "@genesislcap/foundation-ui!OpenChangeEventDetail:interface",
|
|
57906
|
+
"docComment": "/**\n * Detail payload for the `open-change` event fired by `Select` and `Combobox` when their dropdown opens or closes.\n *\n * @public\n */\n",
|
|
57907
|
+
"excerptTokens": [
|
|
57908
|
+
{
|
|
57909
|
+
"kind": "Content",
|
|
57910
|
+
"text": "export interface OpenChangeEventDetail "
|
|
57911
|
+
}
|
|
57912
|
+
],
|
|
57913
|
+
"fileUrlPath": "src/utils/event-types.ts",
|
|
57914
|
+
"releaseTag": "Public",
|
|
57915
|
+
"name": "OpenChangeEventDetail",
|
|
57916
|
+
"preserveMemberOrder": false,
|
|
57917
|
+
"members": [
|
|
57918
|
+
{
|
|
57919
|
+
"kind": "PropertySignature",
|
|
57920
|
+
"canonicalReference": "@genesislcap/foundation-ui!OpenChangeEventDetail#open:member",
|
|
57921
|
+
"docComment": "",
|
|
57922
|
+
"excerptTokens": [
|
|
57923
|
+
{
|
|
57924
|
+
"kind": "Content",
|
|
57925
|
+
"text": "open: "
|
|
57926
|
+
},
|
|
57927
|
+
{
|
|
57928
|
+
"kind": "Content",
|
|
57929
|
+
"text": "boolean"
|
|
57930
|
+
},
|
|
57931
|
+
{
|
|
57932
|
+
"kind": "Content",
|
|
57933
|
+
"text": ";"
|
|
57934
|
+
}
|
|
57935
|
+
],
|
|
57936
|
+
"isReadonly": false,
|
|
57937
|
+
"isOptional": false,
|
|
57938
|
+
"releaseTag": "Public",
|
|
57939
|
+
"name": "open",
|
|
57940
|
+
"propertyTypeTokenRange": {
|
|
57941
|
+
"startIndex": 1,
|
|
57942
|
+
"endIndex": 2
|
|
57943
|
+
}
|
|
57944
|
+
}
|
|
57945
|
+
],
|
|
57946
|
+
"extendsTokenRanges": []
|
|
57947
|
+
},
|
|
57711
57948
|
{
|
|
57712
57949
|
"kind": "Variable",
|
|
57713
57950
|
"canonicalReference": "@genesislcap/foundation-ui!OPERATOR_DISPLAY_LABEL:var",
|
|
@@ -58152,7 +58389,7 @@
|
|
|
58152
58389
|
{
|
|
58153
58390
|
"kind": "Method",
|
|
58154
58391
|
"canonicalReference": "@genesislcap/foundation-ui!OptionsDatasource#handleStreamDeletes:member(1)",
|
|
58155
|
-
"docComment": "",
|
|
58392
|
+
"docComment": "/**\n * @remarks\n *\n * Not implemented: rendered options are only ever appended (see `syncComponentData` / `handleStreamInserts`). For DATASERVER `infinite-scroll`, a live delete/update on a row already rendered in an open dropdown will not be reflected until the datasource is refetched (e.g. criteria change) — tracked as a known limitation, not a v1 goal.\n */\n",
|
|
58156
58393
|
"excerptTokens": [
|
|
58157
58394
|
{
|
|
58158
58395
|
"kind": "Content",
|
|
@@ -58200,7 +58437,7 @@
|
|
|
58200
58437
|
{
|
|
58201
58438
|
"kind": "Method",
|
|
58202
58439
|
"canonicalReference": "@genesislcap/foundation-ui!OptionsDatasource#handleStreamInserts:member(1)",
|
|
58203
|
-
"docComment": "",
|
|
58440
|
+
"docComment": "/**\n * Appends rows to the already rendered options. Used by REQUEST_SERVER infinite scroll paging, where each page contains only the new rows.\n */\n",
|
|
58204
58441
|
"excerptTokens": [
|
|
58205
58442
|
{
|
|
58206
58443
|
"kind": "Content",
|
|
@@ -58248,7 +58485,7 @@
|
|
|
58248
58485
|
{
|
|
58249
58486
|
"kind": "Method",
|
|
58250
58487
|
"canonicalReference": "@genesislcap/foundation-ui!OptionsDatasource#handleStreamUpdates:member(1)",
|
|
58251
|
-
"docComment": "",
|
|
58488
|
+
"docComment": "/**\n * @remarks\n *\n * Not implemented — see {@link OptionsDatasource.handleStreamDeletes}.\n */\n",
|
|
58252
58489
|
"excerptTokens": [
|
|
58253
58490
|
{
|
|
58254
58491
|
"kind": "Content",
|
|
@@ -58293,6 +58530,36 @@
|
|
|
58293
58530
|
"isAbstract": false,
|
|
58294
58531
|
"name": "handleStreamUpdates"
|
|
58295
58532
|
},
|
|
58533
|
+
{
|
|
58534
|
+
"kind": "Property",
|
|
58535
|
+
"canonicalReference": "@genesislcap/foundation-ui!OptionsDatasource#infiniteScroll:member",
|
|
58536
|
+
"docComment": "/**\n * Enables infinite scrolling. Instead of loading everything upfront, only `page-size` options are loaded initially and the next page is requested when the user scrolls near the bottom of the dropdown. REQUEST_SERVER resources page by OFFSET; DATASERVER resources page via MORE_ROWS on a live stream (total still capped by `maxView`).\n *\n * @remarks\n *\n * When paging REQUEST_SERVER resources by OFFSET, set a stable `order-by` — without one the server has no other guaranteed ordering between requests, so rows can shift across pages (duplicates/gaps) as the underlying data changes between fetches. Also, when the parent is a combobox, this forces `async` mode on it (see `Combobox.async`), since only a page of options is loaded client-side.\n */\n",
|
|
58537
|
+
"excerptTokens": [
|
|
58538
|
+
{
|
|
58539
|
+
"kind": "Content",
|
|
58540
|
+
"text": "infiniteScroll: "
|
|
58541
|
+
},
|
|
58542
|
+
{
|
|
58543
|
+
"kind": "Content",
|
|
58544
|
+
"text": "boolean"
|
|
58545
|
+
},
|
|
58546
|
+
{
|
|
58547
|
+
"kind": "Content",
|
|
58548
|
+
"text": ";"
|
|
58549
|
+
}
|
|
58550
|
+
],
|
|
58551
|
+
"isReadonly": false,
|
|
58552
|
+
"isOptional": false,
|
|
58553
|
+
"releaseTag": "Public",
|
|
58554
|
+
"name": "infiniteScroll",
|
|
58555
|
+
"propertyTypeTokenRange": {
|
|
58556
|
+
"startIndex": 1,
|
|
58557
|
+
"endIndex": 2
|
|
58558
|
+
},
|
|
58559
|
+
"isStatic": false,
|
|
58560
|
+
"isProtected": false,
|
|
58561
|
+
"isAbstract": false
|
|
58562
|
+
},
|
|
58296
58563
|
{
|
|
58297
58564
|
"kind": "Property",
|
|
58298
58565
|
"canonicalReference": "@genesislcap/foundation-ui!OptionsDatasource#initalSelectedValueInitialized:member",
|
|
@@ -58597,6 +58864,36 @@
|
|
|
58597
58864
|
"isProtected": true,
|
|
58598
58865
|
"isAbstract": false
|
|
58599
58866
|
},
|
|
58867
|
+
{
|
|
58868
|
+
"kind": "Property",
|
|
58869
|
+
"canonicalReference": "@genesislcap/foundation-ui!OptionsDatasource#pageSize:member",
|
|
58870
|
+
"docComment": "/**\n * Number of options fetched per page when `infinite-scroll` is enabled. Defaults to 20.\n */\n",
|
|
58871
|
+
"excerptTokens": [
|
|
58872
|
+
{
|
|
58873
|
+
"kind": "Content",
|
|
58874
|
+
"text": "pageSize: "
|
|
58875
|
+
},
|
|
58876
|
+
{
|
|
58877
|
+
"kind": "Content",
|
|
58878
|
+
"text": "number"
|
|
58879
|
+
},
|
|
58880
|
+
{
|
|
58881
|
+
"kind": "Content",
|
|
58882
|
+
"text": ";"
|
|
58883
|
+
}
|
|
58884
|
+
],
|
|
58885
|
+
"isReadonly": false,
|
|
58886
|
+
"isOptional": false,
|
|
58887
|
+
"releaseTag": "Public",
|
|
58888
|
+
"name": "pageSize",
|
|
58889
|
+
"propertyTypeTokenRange": {
|
|
58890
|
+
"startIndex": 1,
|
|
58891
|
+
"endIndex": 2
|
|
58892
|
+
},
|
|
58893
|
+
"isStatic": false,
|
|
58894
|
+
"isProtected": false,
|
|
58895
|
+
"isAbstract": false
|
|
58896
|
+
},
|
|
58600
58897
|
{
|
|
58601
58898
|
"kind": "Method",
|
|
58602
58899
|
"canonicalReference": "@genesislcap/foundation-ui!OptionsDatasource#resetCombobox:member(1)",
|
|
@@ -58628,6 +58925,37 @@
|
|
|
58628
58925
|
"isAbstract": false,
|
|
58629
58926
|
"name": "resetCombobox"
|
|
58630
58927
|
},
|
|
58928
|
+
{
|
|
58929
|
+
"kind": "Property",
|
|
58930
|
+
"canonicalReference": "@genesislcap/foundation-ui!OptionsDatasource#resources:member",
|
|
58931
|
+
"docComment": "",
|
|
58932
|
+
"excerptTokens": [
|
|
58933
|
+
{
|
|
58934
|
+
"kind": "Content",
|
|
58935
|
+
"text": "resources: "
|
|
58936
|
+
},
|
|
58937
|
+
{
|
|
58938
|
+
"kind": "Reference",
|
|
58939
|
+
"text": "GenesisResources",
|
|
58940
|
+
"canonicalReference": "@genesislcap/foundation-comms!GenesisResources:interface"
|
|
58941
|
+
},
|
|
58942
|
+
{
|
|
58943
|
+
"kind": "Content",
|
|
58944
|
+
"text": ";"
|
|
58945
|
+
}
|
|
58946
|
+
],
|
|
58947
|
+
"isReadonly": false,
|
|
58948
|
+
"isOptional": false,
|
|
58949
|
+
"releaseTag": "Public",
|
|
58950
|
+
"name": "resources",
|
|
58951
|
+
"propertyTypeTokenRange": {
|
|
58952
|
+
"startIndex": 1,
|
|
58953
|
+
"endIndex": 2
|
|
58954
|
+
},
|
|
58955
|
+
"isStatic": false,
|
|
58956
|
+
"isProtected": false,
|
|
58957
|
+
"isAbstract": false
|
|
58958
|
+
},
|
|
58631
58959
|
{
|
|
58632
58960
|
"kind": "Property",
|
|
58633
58961
|
"canonicalReference": "@genesislcap/foundation-ui!OptionsDatasource#select:member",
|
|
@@ -64573,7 +64901,7 @@
|
|
|
64573
64901
|
{
|
|
64574
64902
|
"kind": "Class",
|
|
64575
64903
|
"canonicalReference": "@genesislcap/foundation-ui!Select:class",
|
|
64576
|
-
"docComment": "/**\n * @tagname %%prefix%%-select\n */\n",
|
|
64904
|
+
"docComment": "/**\n * @tagname %%prefix%%-select\n *\n * @fires\n *\n * open-change - Fired when the dropdown opens or closes. detail: `OpenChangeEventDetail`\n */\n",
|
|
64577
64905
|
"excerptTokens": [
|
|
64578
64906
|
{
|
|
64579
64907
|
"kind": "Content",
|
|
@@ -64707,6 +65035,41 @@
|
|
|
64707
65035
|
"isOptional": false,
|
|
64708
65036
|
"isAbstract": false,
|
|
64709
65037
|
"name": "openChanged"
|
|
65038
|
+
},
|
|
65039
|
+
{
|
|
65040
|
+
"kind": "Property",
|
|
65041
|
+
"canonicalReference": "@genesislcap/foundation-ui!Select#scrollableListbox:member",
|
|
65042
|
+
"docComment": "/**\n * The scrollable element hosting the dropdown options. Part of the public contract for slotted datasources (e.g. options-datasource infinite scroll) to observe scrolling.\n *\n * @public\n */\n",
|
|
65043
|
+
"excerptTokens": [
|
|
65044
|
+
{
|
|
65045
|
+
"kind": "Content",
|
|
65046
|
+
"text": "get scrollableListbox(): "
|
|
65047
|
+
},
|
|
65048
|
+
{
|
|
65049
|
+
"kind": "Reference",
|
|
65050
|
+
"text": "HTMLElement",
|
|
65051
|
+
"canonicalReference": "!HTMLElement:interface"
|
|
65052
|
+
},
|
|
65053
|
+
{
|
|
65054
|
+
"kind": "Content",
|
|
65055
|
+
"text": " | null"
|
|
65056
|
+
},
|
|
65057
|
+
{
|
|
65058
|
+
"kind": "Content",
|
|
65059
|
+
"text": ";"
|
|
65060
|
+
}
|
|
65061
|
+
],
|
|
65062
|
+
"isReadonly": true,
|
|
65063
|
+
"isOptional": false,
|
|
65064
|
+
"releaseTag": "Public",
|
|
65065
|
+
"name": "scrollableListbox",
|
|
65066
|
+
"propertyTypeTokenRange": {
|
|
65067
|
+
"startIndex": 1,
|
|
65068
|
+
"endIndex": 3
|
|
65069
|
+
},
|
|
65070
|
+
"isStatic": false,
|
|
65071
|
+
"isProtected": false,
|
|
65072
|
+
"isAbstract": false
|
|
64710
65073
|
}
|
|
64711
65074
|
],
|
|
64712
65075
|
"extendsTokenRange": {
|