@breadstone/mosaik-elements-foundation 0.0.150 → 0.0.152

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.
Files changed (27) hide show
  1. package/Controls/Behaviors/AutoCompleteable.d.ts +45 -7
  2. package/Controls/Behaviors/AutoCompleteable.d.ts.map +1 -1
  3. package/Controls/Behaviors/AutoCompleteable.js +230 -21
  4. package/Controls/Behaviors/AutoCompleteable.js.map +1 -1
  5. package/Controls/Components/Inputs/AutoCompleteBox/AutoCompleteBoxElement.d.ts +236 -3
  6. package/Controls/Components/Inputs/AutoCompleteBox/AutoCompleteBoxElement.d.ts.map +1 -1
  7. package/Controls/Components/Inputs/AutoCompleteBox/AutoCompleteBoxElement.js +647 -9
  8. package/Controls/Components/Inputs/AutoCompleteBox/AutoCompleteBoxElement.js.map +1 -1
  9. package/Controls/Components/Inputs/AutoCompleteBox/AutoCompleteBoxElementIntl.d.ts +31 -0
  10. package/Controls/Components/Inputs/AutoCompleteBox/AutoCompleteBoxElementIntl.d.ts.map +1 -0
  11. package/Controls/Components/Inputs/AutoCompleteBox/AutoCompleteBoxElementIntl.js +50 -0
  12. package/Controls/Components/Inputs/AutoCompleteBox/AutoCompleteBoxElementIntl.js.map +1 -0
  13. package/Controls/Components/Inputs/AutoCompleteBox/AutoCompleteBoxElementTemplate.d.ts.map +1 -1
  14. package/Controls/Components/Inputs/AutoCompleteBox/AutoCompleteBoxElementTemplate.js +64 -10
  15. package/Controls/Components/Inputs/AutoCompleteBox/AutoCompleteBoxElementTemplate.js.map +1 -1
  16. package/Controls/Components/Inputs/AutoCompleteBox/IAutoCompleteBoxElementProps.d.ts +15 -1
  17. package/Controls/Components/Inputs/AutoCompleteBox/IAutoCompleteBoxElementProps.d.ts.map +1 -1
  18. package/Controls/Controllers/AutoCompleteController.d.ts +1 -0
  19. package/Controls/Controllers/AutoCompleteController.d.ts.map +1 -1
  20. package/Controls/Controllers/AutoCompleteController.js +22 -5
  21. package/Controls/Controllers/AutoCompleteController.js.map +1 -1
  22. package/Index.d.ts +1 -1
  23. package/Index.d.ts.map +1 -1
  24. package/Index.js.map +1 -1
  25. package/Routing/PathToRegexp.d.ts +1 -1
  26. package/custom-elements.json +707 -28
  27. package/package.json +3 -3
@@ -24845,6 +24845,18 @@
24845
24845
  "name": "Themeable",
24846
24846
  "module": "./../src/Controls/Behaviors/Themeable.ts"
24847
24847
  },
24848
+ {
24849
+ "name": "DropDownable",
24850
+ "module": "./../src/Controls/Behaviors/DropDownable.ts"
24851
+ },
24852
+ {
24853
+ "name": "Focusable",
24854
+ "module": "./../src/Controls/Behaviors/Focusable.ts"
24855
+ },
24856
+ {
24857
+ "name": "Disableable",
24858
+ "module": "./../src/Controls/Behaviors/Disableable.ts"
24859
+ },
24848
24860
  {
24849
24861
  "name": "AutoCompleteable",
24850
24862
  "module": "./../src/Controls/Behaviors/AutoCompleteable.ts"
@@ -24860,6 +24872,146 @@
24860
24872
  "description": "Gets or sets the `text` property.",
24861
24873
  "type": "string"
24862
24874
  },
24875
+ {
24876
+ "kind": "field",
24877
+ "name": "inputId",
24878
+ "privacy": "public",
24879
+ "description": "Gets the identifier of the input element.",
24880
+ "type": "string"
24881
+ },
24882
+ {
24883
+ "kind": "field",
24884
+ "name": "listboxId",
24885
+ "privacy": "public",
24886
+ "description": "Gets the identifier of the suggestion list element.",
24887
+ "type": "string"
24888
+ },
24889
+ {
24890
+ "kind": "field",
24891
+ "name": "highlightedIndex",
24892
+ "privacy": "public",
24893
+ "description": "Gets the index of the highlighted suggestion.",
24894
+ "type": "number"
24895
+ },
24896
+ {
24897
+ "kind": "field",
24898
+ "name": "shouldRenderSuggestions",
24899
+ "privacy": "public",
24900
+ "description": "Gets a value indicating whether the suggestion list should be rendered.",
24901
+ "type": "boolean"
24902
+ },
24903
+ {
24904
+ "kind": "field",
24905
+ "name": "hasSuggestions",
24906
+ "privacy": "public",
24907
+ "description": "Gets a value indicating whether suggestions are available.",
24908
+ "type": "boolean"
24909
+ },
24910
+ {
24911
+ "kind": "field",
24912
+ "name": "activeDescendantId",
24913
+ "privacy": "public",
24914
+ "description": "Gets the active descendant identifier for accessibility.",
24915
+ "type": "string | null"
24916
+ },
24917
+ {
24918
+ "kind": "field",
24919
+ "name": "shouldShowNoResultsMessage",
24920
+ "privacy": "public",
24921
+ "description": "Gets a value indicating whether the no-results message should be displayed.",
24922
+ "type": "boolean"
24923
+ },
24924
+ {
24925
+ "kind": "field",
24926
+ "name": "shouldShowLoadingState",
24927
+ "privacy": "public",
24928
+ "description": "Gets a value indicating whether the loading state should be displayed.",
24929
+ "type": "boolean"
24930
+ },
24931
+ {
24932
+ "kind": "field",
24933
+ "name": "intl",
24934
+ "privacy": "public",
24935
+ "description": "Returns the `intl` property.",
24936
+ "type": "AutoCompleteBoxElementIntl"
24937
+ },
24938
+ {
24939
+ "kind": "field",
24940
+ "name": "suggestionPlacement",
24941
+ "privacy": "public",
24942
+ "description": "Gets or sets the preferred placement for the suggestion popup.",
24943
+ "type": "Placement",
24944
+ "inheritedFrom": {
24945
+ "name": "IAutoCompleteBoxElementProps",
24946
+ "module": "./../src/Controls/Components/Inputs/AutoCompleteBox/IAutoCompleteBoxElementProps.ts"
24947
+ }
24948
+ },
24949
+ {
24950
+ "kind": "field",
24951
+ "name": "suggestionStrategy",
24952
+ "privacy": "public",
24953
+ "description": "Gets or sets the positioning strategy for the suggestion popup.",
24954
+ "type": "Strategy",
24955
+ "inheritedFrom": {
24956
+ "name": "IAutoCompleteBoxElementProps",
24957
+ "module": "./../src/Controls/Components/Inputs/AutoCompleteBox/IAutoCompleteBoxElementProps.ts"
24958
+ }
24959
+ },
24960
+ {
24961
+ "kind": "field",
24962
+ "name": "suggestionDistance",
24963
+ "privacy": "public",
24964
+ "description": "Gets or sets the distance in pixels between the host and the suggestion popup.",
24965
+ "type": "number",
24966
+ "inheritedFrom": {
24967
+ "name": "IAutoCompleteBoxElementProps",
24968
+ "module": "./../src/Controls/Components/Inputs/AutoCompleteBox/IAutoCompleteBoxElementProps.ts"
24969
+ }
24970
+ },
24971
+ {
24972
+ "kind": "field",
24973
+ "name": "suggestionSkidding",
24974
+ "privacy": "public",
24975
+ "description": "Gets or sets the horizontal skidding offset for the suggestion popup.",
24976
+ "type": "number",
24977
+ "inheritedFrom": {
24978
+ "name": "IAutoCompleteBoxElementProps",
24979
+ "module": "./../src/Controls/Components/Inputs/AutoCompleteBox/IAutoCompleteBoxElementProps.ts"
24980
+ }
24981
+ },
24982
+ {
24983
+ "kind": "field",
24984
+ "name": "suggestionSync",
24985
+ "privacy": "public",
24986
+ "description": "Gets or sets the size synchronization mode for the suggestion popup.",
24987
+ "type": "FloatingSync",
24988
+ "inheritedFrom": {
24989
+ "name": "IAutoCompleteBoxElementProps",
24990
+ "module": "./../src/Controls/Components/Inputs/AutoCompleteBox/IAutoCompleteBoxElementProps.ts"
24991
+ }
24992
+ },
24993
+ {
24994
+ "kind": "field",
24995
+ "name": "maxSuggestionHeight",
24996
+ "privacy": "public",
24997
+ "description": "Gets or sets the maximum height for the suggestion popup.",
24998
+ "type": "CssLength",
24999
+ "inheritedFrom": {
25000
+ "name": "IAutoCompleteBoxElementProps",
25001
+ "module": "./../src/Controls/Components/Inputs/AutoCompleteBox/IAutoCompleteBoxElementProps.ts"
25002
+ }
25003
+ },
25004
+ {
25005
+ "kind": "field",
25006
+ "name": "suggestionFlipFallbackPlacements",
25007
+ "privacy": "public",
25008
+ "description": "Gets the fallback placements used when positioning the suggestion popup.",
25009
+ "type": "Placement[]",
25010
+ "inheritedFrom": {
25011
+ "name": "IAutoCompleteBoxElementProps",
25012
+ "module": "./../src/Controls/Components/Inputs/AutoCompleteBox/IAutoCompleteBoxElementProps.ts"
25013
+ }
25014
+ },
24863
25015
  {
24864
25016
  "kind": "field",
24865
25017
  "name": "themeName",
@@ -24871,11 +25023,115 @@
24871
25023
  "module": "./../src/Controls/Behaviors/Themeable.ts"
24872
25024
  }
24873
25025
  },
25026
+ {
25027
+ "kind": "field",
25028
+ "name": "dropDownPlacement",
25029
+ "privacy": "public",
25030
+ "description": "Gets or sets the `dropDownPlacement` property.\nThe default value is `bottom`, which means the drop down appears below the element.",
25031
+ "type": "string",
25032
+ "default": "\"BottomStart\"",
25033
+ "inheritedFrom": {
25034
+ "name": "DropDownable",
25035
+ "module": "./../src/Controls/Behaviors/DropDownable.ts"
25036
+ }
25037
+ },
25038
+ {
25039
+ "kind": "field",
25040
+ "name": "dropDownStrategy",
25041
+ "privacy": "public",
25042
+ "description": "Gets or sets the `dropDownStrategy` property.\nThe default value is `fixed`, which means the drop down is positioned relative to the viewport.",
25043
+ "type": "string",
25044
+ "default": "\"Fixed\"",
25045
+ "inheritedFrom": {
25046
+ "name": "DropDownable",
25047
+ "module": "./../src/Controls/Behaviors/DropDownable.ts"
25048
+ }
25049
+ },
25050
+ {
25051
+ "kind": "field",
25052
+ "name": "dropDownDistance",
25053
+ "privacy": "public",
25054
+ "description": "Gets or sets the `dropDownDistance` property.\nThe default value is `8`, which means the drop down appears 8 pixels away from the element.",
25055
+ "type": "number",
25056
+ "default": "8",
25057
+ "inheritedFrom": {
25058
+ "name": "DropDownable",
25059
+ "module": "./../src/Controls/Behaviors/DropDownable.ts"
25060
+ }
25061
+ },
25062
+ {
25063
+ "kind": "field",
25064
+ "name": "dropDownSkidding",
25065
+ "privacy": "public",
25066
+ "description": "Gets or sets the `dropDownSkidding` property.\nThe default value is `0`, which means the drop down is aligned with the element.",
25067
+ "type": "number",
25068
+ "default": "0",
25069
+ "inheritedFrom": {
25070
+ "name": "DropDownable",
25071
+ "module": "./../src/Controls/Behaviors/DropDownable.ts"
25072
+ }
25073
+ },
25074
+ {
25075
+ "kind": "field",
25076
+ "name": "dropDownStaysOpen",
25077
+ "privacy": "public",
25078
+ "description": "Gets or sets the `dropDownStaysOpen` property.\nThe default value is `false`, which means the drop down closes when the user clicks outside of it.",
25079
+ "type": "boolean",
25080
+ "inheritedFrom": {
25081
+ "name": "DropDownable",
25082
+ "module": "./../src/Controls/Behaviors/DropDownable.ts"
25083
+ }
25084
+ },
25085
+ {
25086
+ "kind": "field",
25087
+ "name": "maxDropDownHeight",
25088
+ "privacy": "public",
25089
+ "description": "Gets or sets the `maxDropDownHeight` property.",
25090
+ "type": "string",
25091
+ "default": "\"280px\"",
25092
+ "inheritedFrom": {
25093
+ "name": "DropDownable",
25094
+ "module": "./../src/Controls/Behaviors/DropDownable.ts"
25095
+ }
25096
+ },
25097
+ {
25098
+ "kind": "field",
25099
+ "name": "isDropDownOpen",
25100
+ "privacy": "public",
25101
+ "description": "Gets or sets the `isDropDownOpen` property.",
25102
+ "type": "boolean",
25103
+ "inheritedFrom": {
25104
+ "name": "DropDownable",
25105
+ "module": "./../src/Controls/Behaviors/DropDownable.ts"
25106
+ }
25107
+ },
25108
+ {
25109
+ "kind": "field",
25110
+ "name": "isFocused",
25111
+ "privacy": "public",
25112
+ "description": "Gets or sets a value indicating whether this element is displayed in the UI.\nThe default value is `false`, which means the element is not focused.",
25113
+ "type": "boolean",
25114
+ "inheritedFrom": {
25115
+ "name": "Focusable",
25116
+ "module": "./../src/Controls/Behaviors/Focusable.ts"
25117
+ }
25118
+ },
25119
+ {
25120
+ "kind": "field",
25121
+ "name": "disabled",
25122
+ "privacy": "public",
25123
+ "description": "The disabled state of the element.\nThe default value is `false`, which means the element is not disabled.",
25124
+ "type": "boolean",
25125
+ "inheritedFrom": {
25126
+ "name": "Disableable",
25127
+ "module": "./../src/Controls/Behaviors/Disableable.ts"
25128
+ }
25129
+ },
24874
25130
  {
24875
25131
  "kind": "field",
24876
25132
  "name": "minimumPrefixLength",
24877
25133
  "privacy": "public",
24878
- "description": "Gets or sets the `minimumPrefixLength` property.\nThe default value is `1`, which means the search will start after typing one character.",
25134
+ "description": "[object Object],[object Object],[object Object]",
24879
25135
  "type": "number",
24880
25136
  "inheritedFrom": {
24881
25137
  "name": "AutoCompleteable",
@@ -24886,7 +25142,7 @@
24886
25142
  "kind": "field",
24887
25143
  "name": "minimumPopulateDelay",
24888
25144
  "privacy": "public",
24889
- "description": "Gets or sets the `minimumPopulateDelay` property.\nThe default value is `500`, which means the search will be delayed by 500 milliseconds after the last keystroke.",
25145
+ "description": "[object Object],[object Object],[object Object]",
24890
25146
  "type": "number",
24891
25147
  "inheritedFrom": {
24892
25148
  "name": "AutoCompleteable",
@@ -24897,7 +25153,7 @@
24897
25153
  "kind": "field",
24898
25154
  "name": "isTextCompletionEnabled",
24899
25155
  "privacy": "public",
24900
- "description": "Gets or sets the `isTextCompletionEnabled` property.\nThe default value is `false`, which means text completion is disabled.",
25156
+ "description": "[object Object],[object Object],[object Object]",
24901
25157
  "type": "boolean",
24902
25158
  "inheritedFrom": {
24903
25159
  "name": "AutoCompleteable",
@@ -24908,7 +25164,7 @@
24908
25164
  "kind": "field",
24909
25165
  "name": "searchMode",
24910
25166
  "privacy": "public",
24911
- "description": "Gets or sets the `searchMode` property.\nThe default value is `contains`, which means the search will match any part of the text.",
25167
+ "description": "[object Object],[object Object],[object Object],[object Object],[object Object]",
24912
25168
  "type": "AutoCompleteTextSearchMode",
24913
25169
  "inheritedFrom": {
24914
25170
  "name": "AutoCompleteable",
@@ -24919,7 +25175,7 @@
24919
25175
  "kind": "field",
24920
25176
  "name": "displayMemberPath",
24921
25177
  "privacy": "public",
24922
- "description": "Gets or sets the `displayMemberPath` property.\nThe default value is an empty string, which means the item itself will be used for display.",
25178
+ "description": "[object Object],[object Object],[object Object]",
24923
25179
  "type": "string",
24924
25180
  "inheritedFrom": {
24925
25181
  "name": "AutoCompleteable",
@@ -24930,19 +25186,30 @@
24930
25186
  "kind": "field",
24931
25187
  "name": "items",
24932
25188
  "privacy": "public",
24933
- "description": "Gets or sets the `items` property.\nThe default value is an empty array, which means no items are available.",
25189
+ "description": "[object Object],[object Object],[object Object]",
24934
25190
  "type": "unknown[]",
24935
25191
  "inheritedFrom": {
24936
25192
  "name": "AutoCompleteable",
24937
25193
  "module": "./../src/Controls/Behaviors/AutoCompleteable.ts"
24938
25194
  }
24939
25195
  },
25196
+ {
25197
+ "kind": "field",
25198
+ "name": "itemsProvider",
25199
+ "privacy": "public",
25200
+ "description": "[object Object],[object Object],[object Object]",
25201
+ "type": "AutoCompleteItemsProvider | null",
25202
+ "inheritedFrom": {
25203
+ "name": "AutoCompleteable",
25204
+ "module": "./../src/Controls/Behaviors/AutoCompleteable.ts"
25205
+ }
25206
+ },
24940
25207
  {
24941
25208
  "kind": "field",
24942
25209
  "name": "populating",
24943
25210
  "privacy": "public",
24944
25211
  "description": "[object Object],[object Object],[object Object]",
24945
- "type": "IEventEmitter<IEventDetail<InstanceType<T>>>",
25212
+ "type": "IEventEmitter<IAutoCompletePopulatingEventDetail>",
24946
25213
  "inheritedFrom": {
24947
25214
  "name": "IAutoCompletableEvents",
24948
25215
  "module": "./../src/Controls/Behaviors/AutoCompleteable.ts"
@@ -24953,7 +25220,7 @@
24953
25220
  "name": "populated",
24954
25221
  "privacy": "public",
24955
25222
  "description": "[object Object],[object Object],[object Object]",
24956
- "type": "IEventEmitter<IEventDetail<InstanceType<T>>>",
25223
+ "type": "IEventEmitter<IAutoCompletePopulatedEventDetail>",
24957
25224
  "inheritedFrom": {
24958
25225
  "name": "IAutoCompletableEvents",
24959
25226
  "module": "./../src/Controls/Behaviors/AutoCompleteable.ts"
@@ -24963,13 +25230,24 @@
24963
25230
  "kind": "field",
24964
25231
  "name": "filteredItems",
24965
25232
  "privacy": "public",
24966
- "description": "Gets or sets the `filteredItems` property.\nThe default value is an empty array, which means no items are filtered.",
25233
+ "description": "Gets or sets the filtered items.",
24967
25234
  "type": "unknown[]",
24968
25235
  "inheritedFrom": {
24969
25236
  "name": "IAutoCompletable",
24970
25237
  "module": "./../src/Controls/Behaviors/AutoCompleteable.ts"
24971
25238
  }
24972
25239
  },
25240
+ {
25241
+ "kind": "field",
25242
+ "name": "isPopulating",
25243
+ "privacy": "public",
25244
+ "description": "Gets a value indicating whether the control is currently populating suggestions.",
25245
+ "type": "boolean",
25246
+ "inheritedFrom": {
25247
+ "name": "IAutoCompletable",
25248
+ "module": "./../src/Controls/Behaviors/AutoCompleteable.ts"
25249
+ }
25250
+ },
24973
25251
  {
24974
25252
  "kind": "field",
24975
25253
  "name": "dir",
@@ -25027,12 +25305,144 @@
25027
25305
  },
25028
25306
  {
25029
25307
  "kind": "method",
25030
- "name": "onInput",
25308
+ "name": "onFilterCallback",
25309
+ "privacy": "public",
25310
+ "type": "(items: unknown[]): void",
25311
+ "parameters": [
25312
+ {
25313
+ "name": "items",
25314
+ "type": "unknown[]"
25315
+ }
25316
+ ],
25317
+ "return": {
25318
+ "type": "void"
25319
+ }
25320
+ },
25321
+ {
25322
+ "kind": "method",
25323
+ "name": "onFloatingActiveChanged",
25324
+ "privacy": "public",
25325
+ "type": "(isActive: boolean): void",
25326
+ "description": "Synchronizes the suggestion visibility with the floating popup state.",
25327
+ "parameters": [
25328
+ {
25329
+ "name": "isActive",
25330
+ "type": "boolean",
25331
+ "description": "Indicates whether the floating popup is active."
25332
+ }
25333
+ ],
25334
+ "return": {
25335
+ "type": "void"
25336
+ }
25337
+ },
25338
+ {
25339
+ "kind": "method",
25340
+ "name": "onSelectCallback",
25341
+ "privacy": "public",
25342
+ "type": "(item: unknown): void",
25343
+ "parameters": [
25344
+ {
25345
+ "name": "item",
25346
+ "type": "unknown"
25347
+ }
25348
+ ],
25349
+ "return": {
25350
+ "type": "void"
25351
+ }
25352
+ },
25353
+ {
25354
+ "kind": "method",
25355
+ "name": "onInput",
25356
+ "privacy": "public",
25357
+ "type": "(event: Event): void",
25358
+ "description": "Handles input events raised by the native text box.",
25359
+ "parameters": [
25360
+ {
25361
+ "name": "event",
25362
+ "description": "The event that triggered the handler."
25363
+ }
25364
+ ],
25365
+ "return": {
25366
+ "type": "void"
25367
+ }
25368
+ },
25369
+ {
25370
+ "kind": "method",
25371
+ "name": "onFocus",
25372
+ "privacy": "public",
25373
+ "type": "(_event: FocusEvent): void",
25374
+ "description": "Handles focus events raised by the native input element.",
25375
+ "parameters": [
25376
+ {
25377
+ "name": "_event",
25378
+ "type": "FocusEvent"
25379
+ }
25380
+ ],
25381
+ "return": {
25382
+ "type": "void"
25383
+ }
25384
+ },
25385
+ {
25386
+ "kind": "method",
25387
+ "name": "onBlur",
25388
+ "privacy": "public",
25389
+ "type": "(_event: FocusEvent): void",
25390
+ "description": "Handles blur events raised by the native input element.",
25391
+ "parameters": [
25392
+ {
25393
+ "name": "_event",
25394
+ "type": "FocusEvent"
25395
+ }
25396
+ ],
25397
+ "return": {
25398
+ "type": "void"
25399
+ }
25400
+ },
25401
+ {
25402
+ "kind": "method",
25403
+ "name": "onKeyDown",
25404
+ "privacy": "public",
25405
+ "type": "(event: KeyboardEvent): void",
25406
+ "description": "Handles keyboard interactions for navigating the suggestion list.",
25407
+ "parameters": [
25408
+ {
25409
+ "name": "event",
25410
+ "type": "KeyboardEvent",
25411
+ "description": "The keyboard event that triggered the handler."
25412
+ }
25413
+ ],
25414
+ "return": {
25415
+ "type": "void"
25416
+ }
25417
+ },
25418
+ {
25419
+ "kind": "method",
25420
+ "name": "onSuggestionMouseDown",
25421
+ "privacy": "public",
25422
+ "type": "(event: MouseEvent): void",
25423
+ "description": "Handles pointer events to keep the suggestion list open while interacting with it.",
25424
+ "parameters": [
25425
+ {
25426
+ "name": "event",
25427
+ "type": "MouseEvent",
25428
+ "description": "The mouse event that triggered the handler."
25429
+ }
25430
+ ],
25431
+ "return": {
25432
+ "type": "void"
25433
+ }
25434
+ },
25435
+ {
25436
+ "kind": "method",
25437
+ "name": "onSuggestionClick",
25031
25438
  "privacy": "public",
25032
- "type": "(e: Event): void",
25439
+ "type": "(index: number): void",
25440
+ "description": "Handles click events on suggestion items.",
25033
25441
  "parameters": [
25034
25442
  {
25035
- "name": "e"
25443
+ "name": "index",
25444
+ "type": "number",
25445
+ "description": "The index of the clicked suggestion."
25036
25446
  }
25037
25447
  ],
25038
25448
  "return": {
@@ -25041,36 +25451,90 @@
25041
25451
  },
25042
25452
  {
25043
25453
  "kind": "method",
25044
- "name": "onSelectCallback",
25454
+ "name": "renderHighlightedItem",
25045
25455
  "privacy": "public",
25046
- "type": "(item: unknown): void",
25456
+ "type": "(item: unknown): TemplateResult",
25457
+ "description": "Renders a suggestion with highlighted text.",
25047
25458
  "parameters": [
25048
25459
  {
25049
25460
  "name": "item",
25050
- "type": "unknown"
25461
+ "type": "unknown",
25462
+ "description": "The item to render."
25051
25463
  }
25052
25464
  ],
25053
25465
  "return": {
25054
- "type": "void"
25466
+ "type": "TemplateResult"
25055
25467
  }
25056
25468
  },
25057
25469
  {
25058
25470
  "kind": "method",
25059
- "name": "onFilterCallback",
25471
+ "name": "getOptionId",
25060
25472
  "privacy": "public",
25061
- "type": "(items: unknown[]): void",
25473
+ "type": "(index: number): string",
25474
+ "description": "Gets the identifier for the suggestion option at the specified index.",
25062
25475
  "parameters": [
25063
25476
  {
25064
- "name": "items",
25065
- "type": "unknown[]"
25477
+ "name": "index",
25478
+ "type": "number",
25479
+ "description": "The index of the option."
25066
25480
  }
25067
25481
  ],
25068
25482
  "return": {
25069
- "type": "void"
25483
+ "type": "string"
25484
+ }
25485
+ },
25486
+ {
25487
+ "kind": "method",
25488
+ "name": "open",
25489
+ "privacy": "public",
25490
+ "type": "(): void",
25491
+ "description": "Opens the drop down.",
25492
+ "parameters": [],
25493
+ "return": {},
25494
+ "inheritedFrom": {
25495
+ "name": "IDropDownable",
25496
+ "module": "./../src/Controls/Behaviors/DropDownable.ts"
25497
+ }
25498
+ },
25499
+ {
25500
+ "kind": "method",
25501
+ "name": "close",
25502
+ "privacy": "public",
25503
+ "type": "(): void",
25504
+ "description": "Closes the drop down.",
25505
+ "parameters": [],
25506
+ "return": {},
25507
+ "inheritedFrom": {
25508
+ "name": "IDropDownable",
25509
+ "module": "./../src/Controls/Behaviors/DropDownable.ts"
25510
+ }
25511
+ },
25512
+ {
25513
+ "kind": "method",
25514
+ "name": "toggle",
25515
+ "privacy": "public",
25516
+ "type": "(): void",
25517
+ "description": "Toggles the drop down.",
25518
+ "parameters": [],
25519
+ "return": {},
25520
+ "inheritedFrom": {
25521
+ "name": "IDropDownable",
25522
+ "module": "./../src/Controls/Behaviors/DropDownable.ts"
25523
+ }
25524
+ },
25525
+ {
25526
+ "kind": "method",
25527
+ "name": "hasVisibleFocusInTree",
25528
+ "privacy": "public",
25529
+ "type": "(): boolean",
25530
+ "description": "Returns a value indicating whether the element has visible focus in the tree.",
25531
+ "parameters": [],
25532
+ "return": {
25533
+ "type": "boolean"
25070
25534
  },
25071
25535
  "inheritedFrom": {
25072
- "name": "AutoCompleteable",
25073
- "module": "./../src/Controls/Behaviors/AutoCompleteable.ts"
25536
+ "name": "Focusable",
25537
+ "module": "./../src/Controls/Behaviors/Focusable.ts"
25074
25538
  }
25075
25539
  },
25076
25540
  {
@@ -25288,10 +25752,165 @@
25288
25752
  "description": "Gets or sets the `text` property.",
25289
25753
  "type": "string"
25290
25754
  },
25755
+ {
25756
+ "name": "suggestionPlacement",
25757
+ "fieldName": "suggestionPlacement",
25758
+ "description": "Gets or sets the preferred placement for the suggestion popup.",
25759
+ "type": "Placement",
25760
+ "inheritedFrom": {
25761
+ "name": "IAutoCompleteBoxElementProps",
25762
+ "module": "./../src/Controls/Components/Inputs/AutoCompleteBox/IAutoCompleteBoxElementProps.ts"
25763
+ }
25764
+ },
25765
+ {
25766
+ "name": "suggestionStrategy",
25767
+ "fieldName": "suggestionStrategy",
25768
+ "description": "Gets or sets the positioning strategy for the suggestion popup.",
25769
+ "type": "Strategy",
25770
+ "inheritedFrom": {
25771
+ "name": "IAutoCompleteBoxElementProps",
25772
+ "module": "./../src/Controls/Components/Inputs/AutoCompleteBox/IAutoCompleteBoxElementProps.ts"
25773
+ }
25774
+ },
25775
+ {
25776
+ "name": "suggestionDistance",
25777
+ "fieldName": "suggestionDistance",
25778
+ "description": "Gets or sets the distance in pixels between the host and the suggestion popup.",
25779
+ "type": "number",
25780
+ "inheritedFrom": {
25781
+ "name": "IAutoCompleteBoxElementProps",
25782
+ "module": "./../src/Controls/Components/Inputs/AutoCompleteBox/IAutoCompleteBoxElementProps.ts"
25783
+ }
25784
+ },
25785
+ {
25786
+ "name": "suggestionSkidding",
25787
+ "fieldName": "suggestionSkidding",
25788
+ "description": "Gets or sets the horizontal skidding offset for the suggestion popup.",
25789
+ "type": "number",
25790
+ "inheritedFrom": {
25791
+ "name": "IAutoCompleteBoxElementProps",
25792
+ "module": "./../src/Controls/Components/Inputs/AutoCompleteBox/IAutoCompleteBoxElementProps.ts"
25793
+ }
25794
+ },
25795
+ {
25796
+ "name": "suggestionSync",
25797
+ "fieldName": "suggestionSync",
25798
+ "description": "Gets or sets the size synchronization mode for the suggestion popup.",
25799
+ "type": "FloatingSync",
25800
+ "inheritedFrom": {
25801
+ "name": "IAutoCompleteBoxElementProps",
25802
+ "module": "./../src/Controls/Components/Inputs/AutoCompleteBox/IAutoCompleteBoxElementProps.ts"
25803
+ }
25804
+ },
25805
+ {
25806
+ "name": "maxSuggestionHeight",
25807
+ "fieldName": "maxSuggestionHeight",
25808
+ "description": "Gets or sets the maximum height for the suggestion popup.",
25809
+ "type": "CssLength",
25810
+ "inheritedFrom": {
25811
+ "name": "IAutoCompleteBoxElementProps",
25812
+ "module": "./../src/Controls/Components/Inputs/AutoCompleteBox/IAutoCompleteBoxElementProps.ts"
25813
+ }
25814
+ },
25815
+ {
25816
+ "name": "dropDownPlacement",
25817
+ "fieldName": "dropDownPlacement",
25818
+ "defaultValue": "\"BottomStart\"",
25819
+ "description": "Gets or sets the `dropDownPlacement` property.\nThe default value is `bottom`, which means the drop down appears below the element.",
25820
+ "type": "string",
25821
+ "inheritedFrom": {
25822
+ "name": "DropDownable",
25823
+ "module": "./../src/Controls/Behaviors/DropDownable.ts"
25824
+ }
25825
+ },
25826
+ {
25827
+ "name": "dropDownStrategy",
25828
+ "fieldName": "dropDownStrategy",
25829
+ "defaultValue": "\"Fixed\"",
25830
+ "description": "Gets or sets the `dropDownStrategy` property.\nThe default value is `fixed`, which means the drop down is positioned relative to the viewport.",
25831
+ "type": "string",
25832
+ "inheritedFrom": {
25833
+ "name": "DropDownable",
25834
+ "module": "./../src/Controls/Behaviors/DropDownable.ts"
25835
+ }
25836
+ },
25837
+ {
25838
+ "name": "dropDownDistance",
25839
+ "fieldName": "dropDownDistance",
25840
+ "defaultValue": "8",
25841
+ "description": "Gets or sets the `dropDownDistance` property.\nThe default value is `8`, which means the drop down appears 8 pixels away from the element.",
25842
+ "type": "number",
25843
+ "inheritedFrom": {
25844
+ "name": "DropDownable",
25845
+ "module": "./../src/Controls/Behaviors/DropDownable.ts"
25846
+ }
25847
+ },
25848
+ {
25849
+ "name": "dropDownSkidding",
25850
+ "fieldName": "dropDownSkidding",
25851
+ "defaultValue": "0",
25852
+ "description": "Gets or sets the `dropDownSkidding` property.\nThe default value is `0`, which means the drop down is aligned with the element.",
25853
+ "type": "number",
25854
+ "inheritedFrom": {
25855
+ "name": "DropDownable",
25856
+ "module": "./../src/Controls/Behaviors/DropDownable.ts"
25857
+ }
25858
+ },
25859
+ {
25860
+ "name": "dropDownStaysOpen",
25861
+ "fieldName": "dropDownStaysOpen",
25862
+ "description": "Gets or sets the `dropDownStaysOpen` property.\nThe default value is `false`, which means the drop down closes when the user clicks outside of it.",
25863
+ "type": "boolean",
25864
+ "inheritedFrom": {
25865
+ "name": "DropDownable",
25866
+ "module": "./../src/Controls/Behaviors/DropDownable.ts"
25867
+ }
25868
+ },
25869
+ {
25870
+ "name": "maxDropDownHeight",
25871
+ "fieldName": "maxDropDownHeight",
25872
+ "defaultValue": "\"280px\"",
25873
+ "description": "Gets or sets the `maxDropDownHeight` property.",
25874
+ "type": "string",
25875
+ "inheritedFrom": {
25876
+ "name": "DropDownable",
25877
+ "module": "./../src/Controls/Behaviors/DropDownable.ts"
25878
+ }
25879
+ },
25880
+ {
25881
+ "name": "isDropDownOpen",
25882
+ "fieldName": "isDropDownOpen",
25883
+ "description": "Gets or sets the `isDropDownOpen` property.",
25884
+ "type": "boolean",
25885
+ "inheritedFrom": {
25886
+ "name": "DropDownable",
25887
+ "module": "./../src/Controls/Behaviors/DropDownable.ts"
25888
+ }
25889
+ },
25890
+ {
25891
+ "name": "isFocused",
25892
+ "fieldName": "isFocused",
25893
+ "description": "Gets or sets a value indicating whether this element is displayed in the UI.\nThe default value is `false`, which means the element is not focused.",
25894
+ "type": "boolean",
25895
+ "inheritedFrom": {
25896
+ "name": "Focusable",
25897
+ "module": "./../src/Controls/Behaviors/Focusable.ts"
25898
+ }
25899
+ },
25900
+ {
25901
+ "name": "disabled",
25902
+ "fieldName": "disabled",
25903
+ "description": "The disabled state of the element.\nThe default value is `false`, which means the element is not disabled.",
25904
+ "type": "boolean",
25905
+ "inheritedFrom": {
25906
+ "name": "Disableable",
25907
+ "module": "./../src/Controls/Behaviors/Disableable.ts"
25908
+ }
25909
+ },
25291
25910
  {
25292
25911
  "name": "minimumPrefixLength",
25293
25912
  "fieldName": "minimumPrefixLength",
25294
- "description": "Gets or sets the `minimumPrefixLength` property.\nThe default value is `1`, which means the search will start after typing one character.",
25913
+ "description": "[object Object],[object Object],[object Object]",
25295
25914
  "type": "number",
25296
25915
  "inheritedFrom": {
25297
25916
  "name": "AutoCompleteable",
@@ -25301,7 +25920,7 @@
25301
25920
  {
25302
25921
  "name": "minimumPopulateDelay",
25303
25922
  "fieldName": "minimumPopulateDelay",
25304
- "description": "Gets or sets the `minimumPopulateDelay` property.\nThe default value is `500`, which means the search will be delayed by 500 milliseconds after the last keystroke.",
25923
+ "description": "[object Object],[object Object],[object Object]",
25305
25924
  "type": "number",
25306
25925
  "inheritedFrom": {
25307
25926
  "name": "AutoCompleteable",
@@ -25311,7 +25930,7 @@
25311
25930
  {
25312
25931
  "name": "isTextCompletionEnabled",
25313
25932
  "fieldName": "isTextCompletionEnabled",
25314
- "description": "Gets or sets the `isTextCompletionEnabled` property.\nThe default value is `false`, which means text completion is disabled.",
25933
+ "description": "[object Object],[object Object],[object Object]",
25315
25934
  "type": "boolean",
25316
25935
  "inheritedFrom": {
25317
25936
  "name": "AutoCompleteable",
@@ -25321,7 +25940,7 @@
25321
25940
  {
25322
25941
  "name": "searchMode",
25323
25942
  "fieldName": "searchMode",
25324
- "description": "Gets or sets the `searchMode` property.\nThe default value is `contains`, which means the search will match any part of the text.",
25943
+ "description": "[object Object],[object Object],[object Object],[object Object],[object Object]",
25325
25944
  "type": "AutoCompleteTextSearchMode",
25326
25945
  "inheritedFrom": {
25327
25946
  "name": "AutoCompleteable",
@@ -25331,7 +25950,7 @@
25331
25950
  {
25332
25951
  "name": "displayMemberPath",
25333
25952
  "fieldName": "displayMemberPath",
25334
- "description": "Gets or sets the `displayMemberPath` property.\nThe default value is an empty string, which means the item itself will be used for display.",
25953
+ "description": "[object Object],[object Object],[object Object]",
25335
25954
  "type": "string",
25336
25955
  "inheritedFrom": {
25337
25956
  "name": "AutoCompleteable",
@@ -25443,6 +26062,66 @@
25443
26062
  {
25444
26063
  "name": "item",
25445
26064
  "description": "individual suggestion items."
26065
+ },
26066
+ {
26067
+ "name": "portal",
26068
+ "description": "the floating portal container for the suggestions."
26069
+ },
26070
+ {
26071
+ "name": "popup",
26072
+ "description": "the floating popup container for the suggestions."
26073
+ }
26074
+ ]
26075
+ }
26076
+ ]
26077
+ },
26078
+ {
26079
+ "path": "./../src/Controls/Components/Inputs/AutoCompleteBox/AutoCompleteBoxElementIntl.ts",
26080
+ "exports": [
26081
+ {
26082
+ "kind": "class",
26083
+ "superclass": {
26084
+ "name": "ElementIntlBase",
26085
+ "module": "./../src/Intl/Abstracts/ElementIntlBase.ts"
26086
+ },
26087
+ "description": "The `AutoCompleteBoxElementIntl` class.",
26088
+ "name": "AutoCompleteBoxElementIntl",
26089
+ "members": [
26090
+ {
26091
+ "kind": "field",
26092
+ "name": "loading",
26093
+ "privacy": "public",
26094
+ "description": "Gets or sets the `loading` property.",
26095
+ "type": "string"
26096
+ },
26097
+ {
26098
+ "kind": "field",
26099
+ "name": "noResults",
26100
+ "privacy": "public",
26101
+ "description": "Gets or sets the `noResults` property.",
26102
+ "type": "string"
26103
+ },
26104
+ {
26105
+ "kind": "field",
26106
+ "name": "locale",
26107
+ "privacy": "public",
26108
+ "description": "Gets or sets the `locale` property.",
26109
+ "type": "string",
26110
+ "inheritedFrom": {
26111
+ "name": "ElementIntlBase",
26112
+ "module": "./../src/Intl/Abstracts/ElementIntlBase.ts"
26113
+ }
26114
+ },
26115
+ {
26116
+ "kind": "field",
26117
+ "name": "changes",
26118
+ "privacy": "public",
26119
+ "description": "Stream to emit from when labels are changed. Use this to notify components when the labels have\nchanged after initialization.",
26120
+ "type": "IEventEmitter<void>",
26121
+ "inheritedFrom": {
26122
+ "name": "ElementIntlBase",
26123
+ "module": "./../src/Intl/Abstracts/ElementIntlBase.ts"
26124
+ }
25446
26125
  }
25447
26126
  ]
25448
26127
  }