@openui5/ts-types 1.103.0 → 1.105.0
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/package.json +1 -1
- package/types/sap.f.d.ts +157 -1
- package/types/sap.m.d.ts +2056 -93
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +305 -62
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1117 -5
- package/types/sap.ui.integration.d.ts +99 -68
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +3 -1
- package/types/sap.ui.rta.d.ts +3 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +131 -4
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +209 -16
- package/types/sap.ui.webc.main.d.ts +524 -62
- package/types/sap.uxap.d.ts +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.105.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -243,8 +243,8 @@ declare namespace sap {
|
|
|
243
243
|
| `{${string}}`;
|
|
244
244
|
|
|
245
245
|
/**
|
|
246
|
-
* Defines the name of the UI5 Icon, that
|
|
247
|
-
* **Note:** If `image` slot is provided, the property
|
|
246
|
+
* Defines the name of the UI5 Icon, that will be displayed.
|
|
247
|
+
* **Note:** If `image` slot is provided, the property will be ignored.
|
|
248
248
|
* **Note:** You should import the desired icon first, then use its name as "icon".
|
|
249
249
|
*
|
|
250
250
|
* import "@ui5/webcomponents-icons/dist/{icon_name}.js"
|
|
@@ -264,7 +264,7 @@ declare namespace sap {
|
|
|
264
264
|
initials?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
265
265
|
|
|
266
266
|
/**
|
|
267
|
-
* Defines if the avatar is interactive (focusable and pressable)
|
|
267
|
+
* Defines if the avatar is interactive (focusable and pressable).
|
|
268
268
|
*/
|
|
269
269
|
interactive?:
|
|
270
270
|
| boolean
|
|
@@ -597,12 +597,12 @@ declare namespace sap {
|
|
|
597
597
|
| `{${string}}`;
|
|
598
598
|
|
|
599
599
|
/**
|
|
600
|
-
* Defines the icon
|
|
601
|
-
*
|
|
600
|
+
* Defines the icon, displayed as graphical element within the component. The SAP-icons font provides numerous
|
|
601
|
+
* options.
|
|
602
602
|
*
|
|
603
603
|
* Example:
|
|
604
604
|
*
|
|
605
|
-
* See all the available icons
|
|
605
|
+
* See all the available icons within the Icon Explorer.
|
|
606
606
|
*/
|
|
607
607
|
icon?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
608
608
|
|
|
@@ -2164,7 +2164,7 @@ declare namespace sap {
|
|
|
2164
2164
|
* Defines the unique identifier (icon name) of the component.
|
|
2165
2165
|
*
|
|
2166
2166
|
*
|
|
2167
|
-
* To browse all available icons, see the
|
|
2167
|
+
* To browse all available icons, see the SAP Icons, SAP Fiori Tools and SAP Business Suite collections.
|
|
2168
2168
|
*
|
|
2169
2169
|
*
|
|
2170
2170
|
* Example:
|
|
@@ -2178,6 +2178,15 @@ declare namespace sap {
|
|
|
2178
2178
|
*
|
|
2179
2179
|
* Example:
|
|
2180
2180
|
* `name='tnt/antenna'`, `name='tnt/actor'`, `name='tnt/api'`.
|
|
2181
|
+
*
|
|
2182
|
+
*
|
|
2183
|
+
*
|
|
2184
|
+
* **Note:** To use the SAP Business Suite icons, you need to set the `business-suite` prefix in front of
|
|
2185
|
+
* the icon's name.
|
|
2186
|
+
*
|
|
2187
|
+
*
|
|
2188
|
+
* Example:
|
|
2189
|
+
* `name='business-suite/3d'`, `name='business-suite/1x2-grid-layout'`, `name='business-suite/4x4-grid-layout'`.
|
|
2181
2190
|
*/
|
|
2182
2191
|
name?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2183
2192
|
|
|
@@ -2223,6 +2232,9 @@ declare namespace sap {
|
|
|
2223
2232
|
|
|
2224
2233
|
/**
|
|
2225
2234
|
* Sets the maximum number of characters available in the input field.
|
|
2235
|
+
*
|
|
2236
|
+
* **Note:** This property is not compatible with the ui5-input type InputType.Number. If the ui5-input
|
|
2237
|
+
* type is set to Number, the maxlength value is ignored.
|
|
2226
2238
|
*/
|
|
2227
2239
|
maxlength?:
|
|
2228
2240
|
| int
|
|
@@ -2239,6 +2251,14 @@ declare namespace sap {
|
|
|
2239
2251
|
*/
|
|
2240
2252
|
name?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2241
2253
|
|
|
2254
|
+
/**
|
|
2255
|
+
* Defines whether the value will be autcompleted to match an item
|
|
2256
|
+
*/
|
|
2257
|
+
noTypeahead?:
|
|
2258
|
+
| boolean
|
|
2259
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
2260
|
+
| `{${string}}`;
|
|
2261
|
+
|
|
2242
2262
|
/**
|
|
2243
2263
|
* Defines a short hint intended to aid the user with data entry when the component has no value.
|
|
2244
2264
|
*/
|
|
@@ -2695,8 +2715,8 @@ declare namespace sap {
|
|
|
2695
2715
|
/**
|
|
2696
2716
|
* Fired when the `Close` button of any item is clicked
|
|
2697
2717
|
*
|
|
2698
|
-
* **Note:** This event is applicable to
|
|
2699
|
-
* confused with `item-delete`.
|
|
2718
|
+
* **Note:** This event is only applicable to list items that can be closed (such as notification list
|
|
2719
|
+
* items), not to be confused with `item-delete`.
|
|
2700
2720
|
*/
|
|
2701
2721
|
itemClose?: (oEvent: sap.ui.base.Event) => void;
|
|
2702
2722
|
|
|
@@ -2710,7 +2730,8 @@ declare namespace sap {
|
|
|
2710
2730
|
/**
|
|
2711
2731
|
* Fired when the `Toggle` button of any item is clicked.
|
|
2712
2732
|
*
|
|
2713
|
-
* **Note:** This event is applicable to
|
|
2733
|
+
* **Note:** This event is only applicable to list items that can be toggled (such as notification group
|
|
2734
|
+
* list items).
|
|
2714
2735
|
*/
|
|
2715
2736
|
itemToggle?: (oEvent: sap.ui.base.Event) => void;
|
|
2716
2737
|
|
|
@@ -2862,6 +2883,13 @@ declare namespace sap {
|
|
|
2862
2883
|
|
|
2863
2884
|
interface $MultiComboBoxSettings
|
|
2864
2885
|
extends sap.ui.webc.common.$WebComponentSettings {
|
|
2886
|
+
/**
|
|
2887
|
+
* Defines the accessible aria name of the component.
|
|
2888
|
+
*/
|
|
2889
|
+
accessibleName?:
|
|
2890
|
+
| string
|
|
2891
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2892
|
+
|
|
2865
2893
|
/**
|
|
2866
2894
|
* Defines if the user input will be prevented, if no matching item has been found
|
|
2867
2895
|
*/
|
|
@@ -2885,6 +2913,14 @@ declare namespace sap {
|
|
|
2885
2913
|
*/
|
|
2886
2914
|
filter?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2887
2915
|
|
|
2916
|
+
/**
|
|
2917
|
+
* Defines whether the value will be autcompleted to match an item
|
|
2918
|
+
*/
|
|
2919
|
+
noTypeahead?:
|
|
2920
|
+
| boolean
|
|
2921
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
2922
|
+
| `{${string}}`;
|
|
2923
|
+
|
|
2888
2924
|
/**
|
|
2889
2925
|
* Defines a short hint intended to aid the user with data entry when the component has no value.
|
|
2890
2926
|
*/
|
|
@@ -2963,6 +2999,11 @@ declare namespace sap {
|
|
|
2963
2999
|
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
2964
3000
|
| `{${string}}`;
|
|
2965
3001
|
|
|
3002
|
+
/**
|
|
3003
|
+
* Receives id(or many ids) of the controls that label this control.
|
|
3004
|
+
*/
|
|
3005
|
+
ariaLabelledBy?: Array<sap.ui.core.Control | string>;
|
|
3006
|
+
|
|
2966
3007
|
/**
|
|
2967
3008
|
* Fired when the input operation has finished by pressing Enter or on focusout.
|
|
2968
3009
|
*/
|
|
@@ -2984,6 +3025,14 @@ declare namespace sap {
|
|
|
2984
3025
|
selectionChange?: (oEvent: sap.ui.base.Event) => void;
|
|
2985
3026
|
}
|
|
2986
3027
|
|
|
3028
|
+
interface $MultiComboBoxGroupItemSettings
|
|
3029
|
+
extends sap.ui.webc.common.$WebComponentSettings {
|
|
3030
|
+
/**
|
|
3031
|
+
* Defines the text of the component.
|
|
3032
|
+
*/
|
|
3033
|
+
text?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3034
|
+
}
|
|
3035
|
+
|
|
2987
3036
|
interface $MultiComboBoxItemSettings
|
|
2988
3037
|
extends sap.ui.webc.common.$WebComponentSettings {
|
|
2989
3038
|
/**
|
|
@@ -3027,6 +3076,9 @@ declare namespace sap {
|
|
|
3027
3076
|
|
|
3028
3077
|
/**
|
|
3029
3078
|
* Sets the maximum number of characters available in the input field.
|
|
3079
|
+
*
|
|
3080
|
+
* **Note:** This property is not compatible with the ui5-input type InputType.Number. If the ui5-input
|
|
3081
|
+
* type is set to Number, the maxlength value is ignored.
|
|
3030
3082
|
*/
|
|
3031
3083
|
maxlength?:
|
|
3032
3084
|
| int
|
|
@@ -3043,6 +3095,14 @@ declare namespace sap {
|
|
|
3043
3095
|
*/
|
|
3044
3096
|
name?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3045
3097
|
|
|
3098
|
+
/**
|
|
3099
|
+
* Defines whether the value will be autcompleted to match an item
|
|
3100
|
+
*/
|
|
3101
|
+
noTypeahead?:
|
|
3102
|
+
| boolean
|
|
3103
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
3104
|
+
| `{${string}}`;
|
|
3105
|
+
|
|
3046
3106
|
/**
|
|
3047
3107
|
* Defines a short hint intended to aid the user with data entry when the component has no value.
|
|
3048
3108
|
*/
|
|
@@ -3337,7 +3397,7 @@ declare namespace sap {
|
|
|
3337
3397
|
| `{${string}}`;
|
|
3338
3398
|
|
|
3339
3399
|
/**
|
|
3340
|
-
*
|
|
3400
|
+
* Defines the content of the component. The content is visible only when the component is expanded.
|
|
3341
3401
|
*/
|
|
3342
3402
|
content?:
|
|
3343
3403
|
| sap.ui.core.Control[]
|
|
@@ -3719,6 +3779,13 @@ declare namespace sap {
|
|
|
3719
3779
|
|
|
3720
3780
|
interface $RangeSliderSettings
|
|
3721
3781
|
extends sap.ui.webc.common.$WebComponentSettings {
|
|
3782
|
+
/**
|
|
3783
|
+
* Defines the accessible aria name of the component.
|
|
3784
|
+
*/
|
|
3785
|
+
accessibleName?:
|
|
3786
|
+
| string
|
|
3787
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3788
|
+
|
|
3722
3789
|
/**
|
|
3723
3790
|
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
3724
3791
|
* the tab chain.
|
|
@@ -4145,12 +4212,12 @@ declare namespace sap {
|
|
|
4145
4212
|
| `{${string}}`;
|
|
4146
4213
|
|
|
4147
4214
|
/**
|
|
4148
|
-
* Defines the icon
|
|
4149
|
-
*
|
|
4215
|
+
* Defines the icon, displayed as graphical element within the component. The SAP-icons font provides numerous
|
|
4216
|
+
* options.
|
|
4150
4217
|
*
|
|
4151
4218
|
* Example:
|
|
4152
4219
|
*
|
|
4153
|
-
* See all the available icons
|
|
4220
|
+
* See all the available icons within the Icon Explorer.
|
|
4154
4221
|
*/
|
|
4155
4222
|
icon?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
4156
4223
|
|
|
@@ -4299,6 +4366,13 @@ declare namespace sap {
|
|
|
4299
4366
|
|
|
4300
4367
|
interface $SliderSettings
|
|
4301
4368
|
extends sap.ui.webc.common.$WebComponentSettings {
|
|
4369
|
+
/**
|
|
4370
|
+
* Defines the accessible aria name of the component.
|
|
4371
|
+
*/
|
|
4372
|
+
accessibleName?:
|
|
4373
|
+
| string
|
|
4374
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
4375
|
+
|
|
4302
4376
|
/**
|
|
4303
4377
|
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
4304
4378
|
* the tab chain.
|
|
@@ -5739,12 +5813,12 @@ declare namespace sap {
|
|
|
5739
5813
|
| `{${string}}`;
|
|
5740
5814
|
|
|
5741
5815
|
/**
|
|
5742
|
-
* Defines the icon
|
|
5743
|
-
*
|
|
5816
|
+
* Defines the icon, displayed as graphical element within the component. The SAP-icons font provides numerous
|
|
5817
|
+
* options.
|
|
5744
5818
|
*
|
|
5745
5819
|
* Example:
|
|
5746
5820
|
*
|
|
5747
|
-
* See all the available icons
|
|
5821
|
+
* See all the available icons within the Icon Explorer.
|
|
5748
5822
|
*/
|
|
5749
5823
|
icon?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
5750
5824
|
|
|
@@ -6039,7 +6113,7 @@ declare namespace sap {
|
|
|
6039
6113
|
*
|
|
6040
6114
|
* Overview:
|
|
6041
6115
|
*
|
|
6042
|
-
* An image-like
|
|
6116
|
+
* An image-like component that has different display options for representing images and icons in different
|
|
6043
6117
|
* shapes and sizes, depending on the use case.
|
|
6044
6118
|
*
|
|
6045
6119
|
* The shape can be circular or square. There are several predefined sizes, as well as an option to set
|
|
@@ -6234,8 +6308,8 @@ declare namespace sap {
|
|
|
6234
6308
|
/**
|
|
6235
6309
|
* Gets current value of property {@link #getIcon icon}.
|
|
6236
6310
|
*
|
|
6237
|
-
* Defines the name of the UI5 Icon, that
|
|
6238
|
-
* **Note:** If `image` slot is provided, the property
|
|
6311
|
+
* Defines the name of the UI5 Icon, that will be displayed.
|
|
6312
|
+
* **Note:** If `image` slot is provided, the property will be ignored.
|
|
6239
6313
|
* **Note:** You should import the desired icon first, then use its name as "icon".
|
|
6240
6314
|
*
|
|
6241
6315
|
* import "@ui5/webcomponents-icons/dist/{icon_name}.js"
|
|
@@ -6275,7 +6349,7 @@ declare namespace sap {
|
|
|
6275
6349
|
/**
|
|
6276
6350
|
* Gets current value of property {@link #getInteractive interactive}.
|
|
6277
6351
|
*
|
|
6278
|
-
* Defines if the avatar is interactive (focusable and pressable)
|
|
6352
|
+
* Defines if the avatar is interactive (focusable and pressable).
|
|
6279
6353
|
*
|
|
6280
6354
|
* Default value is `false`.
|
|
6281
6355
|
*
|
|
@@ -6364,8 +6438,8 @@ declare namespace sap {
|
|
|
6364
6438
|
/**
|
|
6365
6439
|
* Sets a new value for property {@link #getIcon icon}.
|
|
6366
6440
|
*
|
|
6367
|
-
* Defines the name of the UI5 Icon, that
|
|
6368
|
-
* **Note:** If `image` slot is provided, the property
|
|
6441
|
+
* Defines the name of the UI5 Icon, that will be displayed.
|
|
6442
|
+
* **Note:** If `image` slot is provided, the property will be ignored.
|
|
6369
6443
|
* **Note:** You should import the desired icon first, then use its name as "icon".
|
|
6370
6444
|
*
|
|
6371
6445
|
* import "@ui5/webcomponents-icons/dist/{icon_name}.js"
|
|
@@ -6420,7 +6494,7 @@ declare namespace sap {
|
|
|
6420
6494
|
/**
|
|
6421
6495
|
* Sets a new value for property {@link #getInteractive interactive}.
|
|
6422
6496
|
*
|
|
6423
|
-
* Defines if the avatar is interactive (focusable and pressable)
|
|
6497
|
+
* Defines if the avatar is interactive (focusable and pressable).
|
|
6424
6498
|
*
|
|
6425
6499
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
6426
6500
|
*
|
|
@@ -7246,6 +7320,22 @@ declare namespace sap {
|
|
|
7246
7320
|
* The clicked item.
|
|
7247
7321
|
*/
|
|
7248
7322
|
item?: HTMLElement;
|
|
7323
|
+
/**
|
|
7324
|
+
* Returns whether the "ALT" key was pressed when the event was triggered.
|
|
7325
|
+
*/
|
|
7326
|
+
altKey?: boolean;
|
|
7327
|
+
/**
|
|
7328
|
+
* Returns whether the "CTRL" key was pressed when the event was triggered.
|
|
7329
|
+
*/
|
|
7330
|
+
ctrlKey?: boolean;
|
|
7331
|
+
/**
|
|
7332
|
+
* Returns whether the "META" key was pressed when the event was triggered.
|
|
7333
|
+
*/
|
|
7334
|
+
metaKey?: boolean;
|
|
7335
|
+
/**
|
|
7336
|
+
* Returns whether the "SHIFT" key was pressed when the event was triggered.
|
|
7337
|
+
*/
|
|
7338
|
+
shiftKey?: boolean;
|
|
7249
7339
|
}
|
|
7250
7340
|
): boolean;
|
|
7251
7341
|
/**
|
|
@@ -7613,7 +7703,7 @@ declare namespace sap {
|
|
|
7613
7703
|
*
|
|
7614
7704
|
* When to use::
|
|
7615
7705
|
* - The user needs to be able to cancel the operation.
|
|
7616
|
-
* - Only part of the application or a particular
|
|
7706
|
+
* - Only part of the application or a particular component is affected.
|
|
7617
7707
|
*
|
|
7618
7708
|
* When not to use::
|
|
7619
7709
|
* - The operation takes less than one second.
|
|
@@ -8189,12 +8279,12 @@ declare namespace sap {
|
|
|
8189
8279
|
/**
|
|
8190
8280
|
* Gets current value of property {@link #getIcon icon}.
|
|
8191
8281
|
*
|
|
8192
|
-
* Defines the icon
|
|
8193
|
-
*
|
|
8282
|
+
* Defines the icon, displayed as graphical element within the component. The SAP-icons font provides numerous
|
|
8283
|
+
* options.
|
|
8194
8284
|
*
|
|
8195
8285
|
* Example:
|
|
8196
8286
|
*
|
|
8197
|
-
* See all the available icons
|
|
8287
|
+
* See all the available icons within the Icon Explorer.
|
|
8198
8288
|
*
|
|
8199
8289
|
* Default value is `empty string`.
|
|
8200
8290
|
*
|
|
@@ -8365,12 +8455,12 @@ declare namespace sap {
|
|
|
8365
8455
|
/**
|
|
8366
8456
|
* Sets a new value for property {@link #getIcon icon}.
|
|
8367
8457
|
*
|
|
8368
|
-
* Defines the icon
|
|
8369
|
-
*
|
|
8458
|
+
* Defines the icon, displayed as graphical element within the component. The SAP-icons font provides numerous
|
|
8459
|
+
* options.
|
|
8370
8460
|
*
|
|
8371
8461
|
* Example:
|
|
8372
8462
|
*
|
|
8373
|
-
* See all the available icons
|
|
8463
|
+
* See all the available icons within the Icon Explorer.
|
|
8374
8464
|
*
|
|
8375
8465
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
8376
8466
|
*
|
|
@@ -12496,7 +12586,7 @@ declare namespace sap {
|
|
|
12496
12586
|
* @SINCE 1.95.0
|
|
12497
12587
|
* @EXPERIMENTAL (since 1.95.0)
|
|
12498
12588
|
*
|
|
12499
|
-
* The `
|
|
12589
|
+
* The `sap.ui.webc.main.ComboBoxGroupItem` is type of suggestion item, that can be used to split the `sap.ui.webc.main.ComboBox`
|
|
12500
12590
|
* suggestions into groups.
|
|
12501
12591
|
*/
|
|
12502
12592
|
class ComboBoxGroupItem
|
|
@@ -17234,16 +17324,48 @@ declare namespace sap {
|
|
|
17234
17324
|
* Overview:
|
|
17235
17325
|
*
|
|
17236
17326
|
* The `sap.ui.webc.main.Icon` component represents an SVG icon. There are two main scenarios how the `sap.ui.webc.main.Icon`
|
|
17237
|
-
* component is used: as a purely decorative element
|
|
17238
|
-
*
|
|
17327
|
+
* component is used: as a purely decorative element,
|
|
17328
|
+
* or as an interactive element that can be focused and clicked.
|
|
17239
17329
|
*
|
|
17240
|
-
*
|
|
17241
|
-
* `sap.ui.webc.main.Icon`. But before using an icon, you need to import the desired icon.
|
|
17330
|
+
* Usage:
|
|
17242
17331
|
*
|
|
17332
|
+
* 1. **Get familiar with the icons collections.**
|
|
17333
|
+
* Before displaying an icon, you need to explore the icons collections to find and import the desired
|
|
17334
|
+
* icon.
|
|
17335
|
+
* Currently there are 3 icons collection, available as 3 npm packages:
|
|
17243
17336
|
*
|
|
17244
17337
|
*
|
|
17245
17338
|
*
|
|
17246
|
-
*
|
|
17339
|
+
* - @ui5/webcomponents-icons
|
|
17340
|
+
* represents the "SAP-icons" collection and includes the following icons.
|
|
17341
|
+
* - @ui5/webcomponents-icons-tnt
|
|
17342
|
+
* represents the "tnt" collection and includes the following icons.
|
|
17343
|
+
* - @ui5/webcomponents-icons-icons-business-suite represents
|
|
17344
|
+
* the "business-suite" collection and includes the following icons.
|
|
17345
|
+
*
|
|
17346
|
+
* 2. **After exploring the icons collections, add one or more of the packages as dependencies to your project.**
|
|
17347
|
+
*
|
|
17348
|
+
* `npm i @ui5/webcomponents-icons`
|
|
17349
|
+
* `npm i @ui5/webcomponents-icons-tnt`
|
|
17350
|
+
* `npm i @ui5/webcomponents-icons-business-suite`
|
|
17351
|
+
*
|
|
17352
|
+
*
|
|
17353
|
+
*
|
|
17354
|
+
* **For Example**:
|
|
17355
|
+
*
|
|
17356
|
+
*
|
|
17357
|
+
* 4. **Display the icon using the `sap.ui.webc.main.Icon` web component.**
|
|
17358
|
+
* Set the icon collection ("SAP-icons", "tnt" or "business-suite" - "SAP-icons" is the default icon collection
|
|
17359
|
+
* and can be skipped)
|
|
17360
|
+
* and the icon name to the `name` property.
|
|
17361
|
+
*
|
|
17362
|
+
*
|
|
17363
|
+
*
|
|
17364
|
+
* `<ui5-icon name="employee"></ui5-icon>`
|
|
17365
|
+
* `<ui5-icon name="tnt/antenna"></ui5-icon>`
|
|
17366
|
+
* `<ui5-icon name="business-suite/ab-testing"></ui5-icon>`
|
|
17367
|
+
*
|
|
17368
|
+
* Keyboard Handling:
|
|
17247
17369
|
*
|
|
17248
17370
|
*
|
|
17249
17371
|
* - [SPACE, ENTER, RETURN] - Fires the `click` event if the `interactive` property is set to true.
|
|
@@ -17450,7 +17572,7 @@ declare namespace sap {
|
|
|
17450
17572
|
* Defines the unique identifier (icon name) of the component.
|
|
17451
17573
|
*
|
|
17452
17574
|
*
|
|
17453
|
-
* To browse all available icons, see the
|
|
17575
|
+
* To browse all available icons, see the SAP Icons, SAP Fiori Tools and SAP Business Suite collections.
|
|
17454
17576
|
*
|
|
17455
17577
|
*
|
|
17456
17578
|
* Example:
|
|
@@ -17465,6 +17587,15 @@ declare namespace sap {
|
|
|
17465
17587
|
* Example:
|
|
17466
17588
|
* `name='tnt/antenna'`, `name='tnt/actor'`, `name='tnt/api'`.
|
|
17467
17589
|
*
|
|
17590
|
+
*
|
|
17591
|
+
*
|
|
17592
|
+
* **Note:** To use the SAP Business Suite icons, you need to set the `business-suite` prefix in front of
|
|
17593
|
+
* the icon's name.
|
|
17594
|
+
*
|
|
17595
|
+
*
|
|
17596
|
+
* Example:
|
|
17597
|
+
* `name='business-suite/3d'`, `name='business-suite/1x2-grid-layout'`, `name='business-suite/4x4-grid-layout'`.
|
|
17598
|
+
*
|
|
17468
17599
|
* Default value is `empty string`.
|
|
17469
17600
|
*
|
|
17470
17601
|
* @returns Value of property `name`
|
|
@@ -17593,7 +17724,7 @@ declare namespace sap {
|
|
|
17593
17724
|
* Defines the unique identifier (icon name) of the component.
|
|
17594
17725
|
*
|
|
17595
17726
|
*
|
|
17596
|
-
* To browse all available icons, see the
|
|
17727
|
+
* To browse all available icons, see the SAP Icons, SAP Fiori Tools and SAP Business Suite collections.
|
|
17597
17728
|
*
|
|
17598
17729
|
*
|
|
17599
17730
|
* Example:
|
|
@@ -17608,6 +17739,15 @@ declare namespace sap {
|
|
|
17608
17739
|
* Example:
|
|
17609
17740
|
* `name='tnt/antenna'`, `name='tnt/actor'`, `name='tnt/api'`.
|
|
17610
17741
|
*
|
|
17742
|
+
*
|
|
17743
|
+
*
|
|
17744
|
+
* **Note:** To use the SAP Business Suite icons, you need to set the `business-suite` prefix in front of
|
|
17745
|
+
* the icon's name.
|
|
17746
|
+
*
|
|
17747
|
+
*
|
|
17748
|
+
* Example:
|
|
17749
|
+
* `name='business-suite/3d'`, `name='business-suite/1x2-grid-layout'`, `name='business-suite/4x4-grid-layout'`.
|
|
17750
|
+
*
|
|
17611
17751
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
17612
17752
|
*
|
|
17613
17753
|
* Default value is `empty string`.
|
|
@@ -18153,6 +18293,9 @@ declare namespace sap {
|
|
|
18153
18293
|
*
|
|
18154
18294
|
* Sets the maximum number of characters available in the input field.
|
|
18155
18295
|
*
|
|
18296
|
+
* **Note:** This property is not compatible with the ui5-input type InputType.Number. If the ui5-input
|
|
18297
|
+
* type is set to Number, the maxlength value is ignored.
|
|
18298
|
+
*
|
|
18156
18299
|
* @returns Value of property `maxlength`
|
|
18157
18300
|
*/
|
|
18158
18301
|
getMaxlength(): int;
|
|
@@ -18171,6 +18314,16 @@ declare namespace sap {
|
|
|
18171
18314
|
* @returns Value of property `name`
|
|
18172
18315
|
*/
|
|
18173
18316
|
getName(): string;
|
|
18317
|
+
/**
|
|
18318
|
+
* Gets current value of property {@link #getNoTypeahead noTypeahead}.
|
|
18319
|
+
*
|
|
18320
|
+
* Defines whether the value will be autcompleted to match an item
|
|
18321
|
+
*
|
|
18322
|
+
* Default value is `false`.
|
|
18323
|
+
*
|
|
18324
|
+
* @returns Value of property `noTypeahead`
|
|
18325
|
+
*/
|
|
18326
|
+
getNoTypeahead(): boolean;
|
|
18174
18327
|
/**
|
|
18175
18328
|
* Gets current value of property {@link #getPlaceholder placeholder}.
|
|
18176
18329
|
*
|
|
@@ -18461,6 +18614,9 @@ declare namespace sap {
|
|
|
18461
18614
|
*
|
|
18462
18615
|
* Sets the maximum number of characters available in the input field.
|
|
18463
18616
|
*
|
|
18617
|
+
* **Note:** This property is not compatible with the ui5-input type InputType.Number. If the ui5-input
|
|
18618
|
+
* type is set to Number, the maxlength value is ignored.
|
|
18619
|
+
*
|
|
18464
18620
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18465
18621
|
*
|
|
18466
18622
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -18493,6 +18649,23 @@ declare namespace sap {
|
|
|
18493
18649
|
*/
|
|
18494
18650
|
sName?: string
|
|
18495
18651
|
): this;
|
|
18652
|
+
/**
|
|
18653
|
+
* Sets a new value for property {@link #getNoTypeahead noTypeahead}.
|
|
18654
|
+
*
|
|
18655
|
+
* Defines whether the value will be autcompleted to match an item
|
|
18656
|
+
*
|
|
18657
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18658
|
+
*
|
|
18659
|
+
* Default value is `false`.
|
|
18660
|
+
*
|
|
18661
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
18662
|
+
*/
|
|
18663
|
+
setNoTypeahead(
|
|
18664
|
+
/**
|
|
18665
|
+
* New value for property `noTypeahead`
|
|
18666
|
+
*/
|
|
18667
|
+
bNoTypeahead?: boolean
|
|
18668
|
+
): this;
|
|
18496
18669
|
/**
|
|
18497
18670
|
* Sets a new value for property {@link #getPlaceholder placeholder}.
|
|
18498
18671
|
*
|
|
@@ -19089,14 +19262,34 @@ declare namespace sap {
|
|
|
19089
19262
|
/**
|
|
19090
19263
|
* Fires event {@link #event:click click} to attached listeners.
|
|
19091
19264
|
*
|
|
19092
|
-
*
|
|
19265
|
+
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
19266
|
+
* event object. The return value of this method indicates whether the default action should be executed.
|
|
19267
|
+
*
|
|
19268
|
+
* @returns Whether or not to prevent the default action
|
|
19093
19269
|
*/
|
|
19094
19270
|
fireClick(
|
|
19095
19271
|
/**
|
|
19096
19272
|
* Parameters to pass along with the event
|
|
19097
19273
|
*/
|
|
19098
|
-
mParameters?:
|
|
19099
|
-
|
|
19274
|
+
mParameters?: {
|
|
19275
|
+
/**
|
|
19276
|
+
* Returns whether the "ALT" key was pressed when the event was triggered.
|
|
19277
|
+
*/
|
|
19278
|
+
altKey?: boolean;
|
|
19279
|
+
/**
|
|
19280
|
+
* Returns whether the "CTRL" key was pressed when the event was triggered.
|
|
19281
|
+
*/
|
|
19282
|
+
ctrlKey?: boolean;
|
|
19283
|
+
/**
|
|
19284
|
+
* Returns whether the "META" key was pressed when the event was triggered.
|
|
19285
|
+
*/
|
|
19286
|
+
metaKey?: boolean;
|
|
19287
|
+
/**
|
|
19288
|
+
* Returns whether the "SHIFT" key was pressed when the event was triggered.
|
|
19289
|
+
*/
|
|
19290
|
+
shiftKey?: boolean;
|
|
19291
|
+
}
|
|
19292
|
+
): boolean;
|
|
19100
19293
|
/**
|
|
19101
19294
|
* Gets current value of property {@link #getAccessibilityAttributes accessibilityAttributes}.
|
|
19102
19295
|
*
|
|
@@ -19591,8 +19784,8 @@ declare namespace sap {
|
|
|
19591
19784
|
*
|
|
19592
19785
|
* Fired when the `Close` button of any item is clicked
|
|
19593
19786
|
*
|
|
19594
|
-
* **Note:** This event is applicable to
|
|
19595
|
-
* confused with `item-delete`.
|
|
19787
|
+
* **Note:** This event is only applicable to list items that can be closed (such as notification list
|
|
19788
|
+
* items), not to be confused with `item-delete`.
|
|
19596
19789
|
*
|
|
19597
19790
|
* @returns Reference to `this` in order to allow method chaining
|
|
19598
19791
|
*/
|
|
@@ -19619,8 +19812,8 @@ declare namespace sap {
|
|
|
19619
19812
|
*
|
|
19620
19813
|
* Fired when the `Close` button of any item is clicked
|
|
19621
19814
|
*
|
|
19622
|
-
* **Note:** This event is applicable to
|
|
19623
|
-
* confused with `item-delete`.
|
|
19815
|
+
* **Note:** This event is only applicable to list items that can be closed (such as notification list
|
|
19816
|
+
* items), not to be confused with `item-delete`.
|
|
19624
19817
|
*
|
|
19625
19818
|
* @returns Reference to `this` in order to allow method chaining
|
|
19626
19819
|
*/
|
|
@@ -19691,7 +19884,8 @@ declare namespace sap {
|
|
|
19691
19884
|
*
|
|
19692
19885
|
* Fired when the `Toggle` button of any item is clicked.
|
|
19693
19886
|
*
|
|
19694
|
-
* **Note:** This event is applicable to
|
|
19887
|
+
* **Note:** This event is only applicable to list items that can be toggled (such as notification group
|
|
19888
|
+
* list items).
|
|
19695
19889
|
*
|
|
19696
19890
|
* @returns Reference to `this` in order to allow method chaining
|
|
19697
19891
|
*/
|
|
@@ -19718,7 +19912,8 @@ declare namespace sap {
|
|
|
19718
19912
|
*
|
|
19719
19913
|
* Fired when the `Toggle` button of any item is clicked.
|
|
19720
19914
|
*
|
|
19721
|
-
* **Note:** This event is applicable to
|
|
19915
|
+
* **Note:** This event is only applicable to list items that can be toggled (such as notification group
|
|
19916
|
+
* list items).
|
|
19722
19917
|
*
|
|
19723
19918
|
* @returns Reference to `this` in order to allow method chaining
|
|
19724
19919
|
*/
|
|
@@ -21571,6 +21766,17 @@ declare namespace sap {
|
|
|
21571
21766
|
* @returns Metadata object describing this class
|
|
21572
21767
|
*/
|
|
21573
21768
|
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
21769
|
+
/**
|
|
21770
|
+
* Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
21771
|
+
*
|
|
21772
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
21773
|
+
*/
|
|
21774
|
+
addAriaLabelledBy(
|
|
21775
|
+
/**
|
|
21776
|
+
* The ariaLabelledBy to add; if empty, nothing is inserted
|
|
21777
|
+
*/
|
|
21778
|
+
vAriaLabelledBy: sap.ui.core.ID | sap.ui.core.Control
|
|
21779
|
+
): this;
|
|
21574
21780
|
/**
|
|
21575
21781
|
* Adds some item to the aggregation {@link #getItems items}.
|
|
21576
21782
|
*
|
|
@@ -21894,6 +22100,14 @@ declare namespace sap {
|
|
|
21894
22100
|
items?: any[];
|
|
21895
22101
|
}
|
|
21896
22102
|
): this;
|
|
22103
|
+
/**
|
|
22104
|
+
* Gets current value of property {@link #getAccessibleName accessibleName}.
|
|
22105
|
+
*
|
|
22106
|
+
* Defines the accessible aria name of the component.
|
|
22107
|
+
*
|
|
22108
|
+
* @returns Value of property `accessibleName`
|
|
22109
|
+
*/
|
|
22110
|
+
getAccessibleName(): string;
|
|
21897
22111
|
/**
|
|
21898
22112
|
* Gets current value of property {@link #getAllowCustomValues allowCustomValues}.
|
|
21899
22113
|
*
|
|
@@ -21904,6 +22118,11 @@ declare namespace sap {
|
|
|
21904
22118
|
* @returns Value of property `allowCustomValues`
|
|
21905
22119
|
*/
|
|
21906
22120
|
getAllowCustomValues(): boolean;
|
|
22121
|
+
/**
|
|
22122
|
+
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
|
|
22123
|
+
* ariaLabelledBy}.
|
|
22124
|
+
*/
|
|
22125
|
+
getAriaLabelledBy(): sap.ui.core.ID[];
|
|
21907
22126
|
/**
|
|
21908
22127
|
* Gets current value of property {@link #getEnabled enabled}.
|
|
21909
22128
|
*
|
|
@@ -21938,6 +22157,16 @@ declare namespace sap {
|
|
|
21938
22157
|
* Defines the component items.
|
|
21939
22158
|
*/
|
|
21940
22159
|
getItems(): sap.ui.webc.main.IMultiComboBoxItem[];
|
|
22160
|
+
/**
|
|
22161
|
+
* Gets current value of property {@link #getNoTypeahead noTypeahead}.
|
|
22162
|
+
*
|
|
22163
|
+
* Defines whether the value will be autcompleted to match an item
|
|
22164
|
+
*
|
|
22165
|
+
* Default value is `false`.
|
|
22166
|
+
*
|
|
22167
|
+
* @returns Value of property `noTypeahead`
|
|
22168
|
+
*/
|
|
22169
|
+
getNoTypeahead(): boolean;
|
|
21941
22170
|
/**
|
|
21942
22171
|
* Returns the indicates whether the dropdown is open. True if the dropdown is open, false otherwise.
|
|
21943
22172
|
*/
|
|
@@ -22054,6 +22283,12 @@ declare namespace sap {
|
|
|
22054
22283
|
*/
|
|
22055
22284
|
iIndex: int
|
|
22056
22285
|
): this;
|
|
22286
|
+
/**
|
|
22287
|
+
* Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
22288
|
+
*
|
|
22289
|
+
* @returns An array of the removed elements (might be empty)
|
|
22290
|
+
*/
|
|
22291
|
+
removeAllAriaLabelledBy(): sap.ui.core.ID[];
|
|
22057
22292
|
/**
|
|
22058
22293
|
* Removes all the controls from the aggregation {@link #getItems items}.
|
|
22059
22294
|
*
|
|
@@ -22062,6 +22297,17 @@ declare namespace sap {
|
|
|
22062
22297
|
* @returns An array of the removed elements (might be empty)
|
|
22063
22298
|
*/
|
|
22064
22299
|
removeAllItems(): sap.ui.webc.main.IMultiComboBoxItem[];
|
|
22300
|
+
/**
|
|
22301
|
+
* Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
22302
|
+
*
|
|
22303
|
+
* @returns The removed ariaLabelledBy or `null`
|
|
22304
|
+
*/
|
|
22305
|
+
removeAriaLabelledBy(
|
|
22306
|
+
/**
|
|
22307
|
+
* The ariaLabelledBy to be removed or its index or ID
|
|
22308
|
+
*/
|
|
22309
|
+
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
22310
|
+
): sap.ui.core.ID;
|
|
22065
22311
|
/**
|
|
22066
22312
|
* Removes a item from the aggregation {@link #getItems items}.
|
|
22067
22313
|
*
|
|
@@ -22073,6 +22319,21 @@ declare namespace sap {
|
|
|
22073
22319
|
*/
|
|
22074
22320
|
vItem: int | string | sap.ui.webc.main.IMultiComboBoxItem
|
|
22075
22321
|
): sap.ui.webc.main.IMultiComboBoxItem | null;
|
|
22322
|
+
/**
|
|
22323
|
+
* Sets a new value for property {@link #getAccessibleName accessibleName}.
|
|
22324
|
+
*
|
|
22325
|
+
* Defines the accessible aria name of the component.
|
|
22326
|
+
*
|
|
22327
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
22328
|
+
*
|
|
22329
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
22330
|
+
*/
|
|
22331
|
+
setAccessibleName(
|
|
22332
|
+
/**
|
|
22333
|
+
* New value for property `accessibleName`
|
|
22334
|
+
*/
|
|
22335
|
+
sAccessibleName: string
|
|
22336
|
+
): this;
|
|
22076
22337
|
/**
|
|
22077
22338
|
* Sets a new value for property {@link #getAllowCustomValues allowCustomValues}.
|
|
22078
22339
|
*
|
|
@@ -22137,6 +22398,23 @@ declare namespace sap {
|
|
|
22137
22398
|
*/
|
|
22138
22399
|
oIcon: sap.ui.webc.main.IIcon
|
|
22139
22400
|
): this;
|
|
22401
|
+
/**
|
|
22402
|
+
* Sets a new value for property {@link #getNoTypeahead noTypeahead}.
|
|
22403
|
+
*
|
|
22404
|
+
* Defines whether the value will be autcompleted to match an item
|
|
22405
|
+
*
|
|
22406
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
22407
|
+
*
|
|
22408
|
+
* Default value is `false`.
|
|
22409
|
+
*
|
|
22410
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
22411
|
+
*/
|
|
22412
|
+
setNoTypeahead(
|
|
22413
|
+
/**
|
|
22414
|
+
* New value for property `noTypeahead`
|
|
22415
|
+
*/
|
|
22416
|
+
bNoTypeahead?: boolean
|
|
22417
|
+
): this;
|
|
22140
22418
|
/**
|
|
22141
22419
|
* Sets a new value for property {@link #getPlaceholder placeholder}.
|
|
22142
22420
|
*
|
|
@@ -22270,6 +22548,108 @@ declare namespace sap {
|
|
|
22270
22548
|
sWidth: sap.ui.core.CSSSize
|
|
22271
22549
|
): this;
|
|
22272
22550
|
}
|
|
22551
|
+
/**
|
|
22552
|
+
* @SINCE 1.92.0
|
|
22553
|
+
* @EXPERIMENTAL (since 1.92.0)
|
|
22554
|
+
*
|
|
22555
|
+
* The `sap.ui.webc.main.MultiComboBoxGroupItem` is type of suggestion item, that can be used to split the
|
|
22556
|
+
* `sap.ui.webc.main.MultiComboBox` suggestions into groups.
|
|
22557
|
+
*/
|
|
22558
|
+
class MultiComboBoxGroupItem
|
|
22559
|
+
extends sap.ui.webc.common.WebComponent
|
|
22560
|
+
implements sap.ui.webc.main.IMultiComboBoxItem {
|
|
22561
|
+
__implements__sap_ui_webc_main_IMultiComboBoxItem: boolean;
|
|
22562
|
+
/**
|
|
22563
|
+
* Constructor for a new `MultiComboBoxGroupItem`.
|
|
22564
|
+
*
|
|
22565
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
22566
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
22567
|
+
* of the syntax of the settings object.
|
|
22568
|
+
*/
|
|
22569
|
+
constructor(
|
|
22570
|
+
/**
|
|
22571
|
+
* Initial settings for the new control
|
|
22572
|
+
*/
|
|
22573
|
+
mSettings?: sap.ui.webc.main.$MultiComboBoxGroupItemSettings
|
|
22574
|
+
);
|
|
22575
|
+
/**
|
|
22576
|
+
* Constructor for a new `MultiComboBoxGroupItem`.
|
|
22577
|
+
*
|
|
22578
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
22579
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
22580
|
+
* of the syntax of the settings object.
|
|
22581
|
+
*/
|
|
22582
|
+
constructor(
|
|
22583
|
+
/**
|
|
22584
|
+
* ID for the new control, generated automatically if no ID is given
|
|
22585
|
+
*/
|
|
22586
|
+
sId?: string,
|
|
22587
|
+
/**
|
|
22588
|
+
* Initial settings for the new control
|
|
22589
|
+
*/
|
|
22590
|
+
mSettings?: sap.ui.webc.main.$MultiComboBoxGroupItemSettings
|
|
22591
|
+
);
|
|
22592
|
+
|
|
22593
|
+
/**
|
|
22594
|
+
* Creates a new subclass of class sap.ui.webc.main.MultiComboBoxGroupItem with name `sClassName` and enriches
|
|
22595
|
+
* it with the information contained in `oClassInfo`.
|
|
22596
|
+
*
|
|
22597
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
22598
|
+
*
|
|
22599
|
+
* @returns Created class / constructor function
|
|
22600
|
+
*/
|
|
22601
|
+
static extend<T extends Record<string, unknown>>(
|
|
22602
|
+
/**
|
|
22603
|
+
* Name of the class being created
|
|
22604
|
+
*/
|
|
22605
|
+
sClassName: string,
|
|
22606
|
+
/**
|
|
22607
|
+
* Object literal with information about the class
|
|
22608
|
+
*/
|
|
22609
|
+
oClassInfo?: sap.ClassInfo<
|
|
22610
|
+
T,
|
|
22611
|
+
sap.ui.webc.main.MultiComboBoxGroupItem
|
|
22612
|
+
>,
|
|
22613
|
+
/**
|
|
22614
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
22615
|
+
* used by this class
|
|
22616
|
+
*/
|
|
22617
|
+
FNMetaImpl?: Function
|
|
22618
|
+
): Function;
|
|
22619
|
+
/**
|
|
22620
|
+
* Returns a metadata object for class sap.ui.webc.main.MultiComboBoxGroupItem.
|
|
22621
|
+
*
|
|
22622
|
+
* @returns Metadata object describing this class
|
|
22623
|
+
*/
|
|
22624
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
22625
|
+
/**
|
|
22626
|
+
* Gets current value of property {@link #getText text}.
|
|
22627
|
+
*
|
|
22628
|
+
* Defines the text of the component.
|
|
22629
|
+
*
|
|
22630
|
+
* Default value is `empty string`.
|
|
22631
|
+
*
|
|
22632
|
+
* @returns Value of property `text`
|
|
22633
|
+
*/
|
|
22634
|
+
getText(): string;
|
|
22635
|
+
/**
|
|
22636
|
+
* Sets a new value for property {@link #getText text}.
|
|
22637
|
+
*
|
|
22638
|
+
* Defines the text of the component.
|
|
22639
|
+
*
|
|
22640
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
22641
|
+
*
|
|
22642
|
+
* Default value is `empty string`.
|
|
22643
|
+
*
|
|
22644
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
22645
|
+
*/
|
|
22646
|
+
setText(
|
|
22647
|
+
/**
|
|
22648
|
+
* New value for property `text`
|
|
22649
|
+
*/
|
|
22650
|
+
sText?: string
|
|
22651
|
+
): this;
|
|
22652
|
+
}
|
|
22273
22653
|
/**
|
|
22274
22654
|
* @SINCE 1.92.0
|
|
22275
22655
|
* @EXPERIMENTAL (since 1.92.0)
|
|
@@ -23070,6 +23450,9 @@ declare namespace sap {
|
|
|
23070
23450
|
*
|
|
23071
23451
|
* Sets the maximum number of characters available in the input field.
|
|
23072
23452
|
*
|
|
23453
|
+
* **Note:** This property is not compatible with the ui5-input type InputType.Number. If the ui5-input
|
|
23454
|
+
* type is set to Number, the maxlength value is ignored.
|
|
23455
|
+
*
|
|
23073
23456
|
* @returns Value of property `maxlength`
|
|
23074
23457
|
*/
|
|
23075
23458
|
getMaxlength(): int;
|
|
@@ -23088,6 +23471,16 @@ declare namespace sap {
|
|
|
23088
23471
|
* @returns Value of property `name`
|
|
23089
23472
|
*/
|
|
23090
23473
|
getName(): string;
|
|
23474
|
+
/**
|
|
23475
|
+
* Gets current value of property {@link #getNoTypeahead noTypeahead}.
|
|
23476
|
+
*
|
|
23477
|
+
* Defines whether the value will be autcompleted to match an item
|
|
23478
|
+
*
|
|
23479
|
+
* Default value is `false`.
|
|
23480
|
+
*
|
|
23481
|
+
* @returns Value of property `noTypeahead`
|
|
23482
|
+
*/
|
|
23483
|
+
getNoTypeahead(): boolean;
|
|
23091
23484
|
/**
|
|
23092
23485
|
* Gets current value of property {@link #getPlaceholder placeholder}.
|
|
23093
23486
|
*
|
|
@@ -23443,6 +23836,9 @@ declare namespace sap {
|
|
|
23443
23836
|
*
|
|
23444
23837
|
* Sets the maximum number of characters available in the input field.
|
|
23445
23838
|
*
|
|
23839
|
+
* **Note:** This property is not compatible with the ui5-input type InputType.Number. If the ui5-input
|
|
23840
|
+
* type is set to Number, the maxlength value is ignored.
|
|
23841
|
+
*
|
|
23446
23842
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
23447
23843
|
*
|
|
23448
23844
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -23475,6 +23871,23 @@ declare namespace sap {
|
|
|
23475
23871
|
*/
|
|
23476
23872
|
sName?: string
|
|
23477
23873
|
): this;
|
|
23874
|
+
/**
|
|
23875
|
+
* Sets a new value for property {@link #getNoTypeahead noTypeahead}.
|
|
23876
|
+
*
|
|
23877
|
+
* Defines whether the value will be autcompleted to match an item
|
|
23878
|
+
*
|
|
23879
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
23880
|
+
*
|
|
23881
|
+
* Default value is `false`.
|
|
23882
|
+
*
|
|
23883
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
23884
|
+
*/
|
|
23885
|
+
setNoTypeahead(
|
|
23886
|
+
/**
|
|
23887
|
+
* New value for property `noTypeahead`
|
|
23888
|
+
*/
|
|
23889
|
+
bNoTypeahead?: boolean
|
|
23890
|
+
): this;
|
|
23478
23891
|
/**
|
|
23479
23892
|
* Sets a new value for property {@link #getPlaceholder placeholder}.
|
|
23480
23893
|
*
|
|
@@ -23958,6 +24371,7 @@ declare namespace sap {
|
|
|
23958
24371
|
* CSS Shadow Parts
|
|
23959
24372
|
* allow developers to style elements inside the Shadow DOM.
|
|
23960
24373
|
* The `sap.ui.webc.main.Panel` exposes the following CSS Shadow Parts:
|
|
24374
|
+
* - header - Used to style the wrapper of the header
|
|
23961
24375
|
* - content - Used to style the wrapper of the content
|
|
23962
24376
|
*
|
|
23963
24377
|
* Keyboard Handling:
|
|
@@ -24164,7 +24578,7 @@ declare namespace sap {
|
|
|
24164
24578
|
/**
|
|
24165
24579
|
* Gets content of aggregation {@link #getContent content}.
|
|
24166
24580
|
*
|
|
24167
|
-
*
|
|
24581
|
+
* Defines the content of the component. The content is visible only when the component is expanded.
|
|
24168
24582
|
*/
|
|
24169
24583
|
getContent(): sap.ui.core.Control[];
|
|
24170
24584
|
/**
|
|
@@ -26575,6 +26989,14 @@ declare namespace sap {
|
|
|
26575
26989
|
*/
|
|
26576
26990
|
mParameters?: object
|
|
26577
26991
|
): this;
|
|
26992
|
+
/**
|
|
26993
|
+
* Gets current value of property {@link #getAccessibleName accessibleName}.
|
|
26994
|
+
*
|
|
26995
|
+
* Defines the accessible aria name of the component.
|
|
26996
|
+
*
|
|
26997
|
+
* @returns Value of property `accessibleName`
|
|
26998
|
+
*/
|
|
26999
|
+
getAccessibleName(): string;
|
|
26578
27000
|
/**
|
|
26579
27001
|
* Gets current value of property {@link #getEnabled enabled}.
|
|
26580
27002
|
*
|
|
@@ -26688,6 +27110,21 @@ declare namespace sap {
|
|
|
26688
27110
|
* @returns Value of property `width`
|
|
26689
27111
|
*/
|
|
26690
27112
|
getWidth(): sap.ui.core.CSSSize;
|
|
27113
|
+
/**
|
|
27114
|
+
* Sets a new value for property {@link #getAccessibleName accessibleName}.
|
|
27115
|
+
*
|
|
27116
|
+
* Defines the accessible aria name of the component.
|
|
27117
|
+
*
|
|
27118
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
27119
|
+
*
|
|
27120
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
27121
|
+
*/
|
|
27122
|
+
setAccessibleName(
|
|
27123
|
+
/**
|
|
27124
|
+
* New value for property `accessibleName`
|
|
27125
|
+
*/
|
|
27126
|
+
sAccessibleName: string
|
|
27127
|
+
): this;
|
|
26691
27128
|
/**
|
|
26692
27129
|
* Sets a new value for property {@link #getEnabled enabled}.
|
|
26693
27130
|
*
|
|
@@ -28769,12 +29206,12 @@ declare namespace sap {
|
|
|
28769
29206
|
/**
|
|
28770
29207
|
* Gets current value of property {@link #getIcon icon}.
|
|
28771
29208
|
*
|
|
28772
|
-
* Defines the icon
|
|
28773
|
-
*
|
|
29209
|
+
* Defines the icon, displayed as graphical element within the component. The SAP-icons font provides numerous
|
|
29210
|
+
* options.
|
|
28774
29211
|
*
|
|
28775
29212
|
* Example:
|
|
28776
29213
|
*
|
|
28777
|
-
* See all the available icons
|
|
29214
|
+
* See all the available icons within the Icon Explorer.
|
|
28778
29215
|
*
|
|
28779
29216
|
* Default value is `empty string`.
|
|
28780
29217
|
*
|
|
@@ -28926,12 +29363,12 @@ declare namespace sap {
|
|
|
28926
29363
|
/**
|
|
28927
29364
|
* Sets a new value for property {@link #getIcon icon}.
|
|
28928
29365
|
*
|
|
28929
|
-
* Defines the icon
|
|
28930
|
-
*
|
|
29366
|
+
* Defines the icon, displayed as graphical element within the component. The SAP-icons font provides numerous
|
|
29367
|
+
* options.
|
|
28931
29368
|
*
|
|
28932
29369
|
* Example:
|
|
28933
29370
|
*
|
|
28934
|
-
* See all the available icons
|
|
29371
|
+
* See all the available icons within the Icon Explorer.
|
|
28935
29372
|
*
|
|
28936
29373
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
28937
29374
|
*
|
|
@@ -29777,6 +30214,14 @@ declare namespace sap {
|
|
|
29777
30214
|
*/
|
|
29778
30215
|
mParameters?: object
|
|
29779
30216
|
): this;
|
|
30217
|
+
/**
|
|
30218
|
+
* Gets current value of property {@link #getAccessibleName accessibleName}.
|
|
30219
|
+
*
|
|
30220
|
+
* Defines the accessible aria name of the component.
|
|
30221
|
+
*
|
|
30222
|
+
* @returns Value of property `accessibleName`
|
|
30223
|
+
*/
|
|
30224
|
+
getAccessibleName(): string;
|
|
29780
30225
|
/**
|
|
29781
30226
|
* Gets current value of property {@link #getEnabled enabled}.
|
|
29782
30227
|
*
|
|
@@ -29876,6 +30321,21 @@ declare namespace sap {
|
|
|
29876
30321
|
* @returns Value of property `width`
|
|
29877
30322
|
*/
|
|
29878
30323
|
getWidth(): sap.ui.core.CSSSize;
|
|
30324
|
+
/**
|
|
30325
|
+
* Sets a new value for property {@link #getAccessibleName accessibleName}.
|
|
30326
|
+
*
|
|
30327
|
+
* Defines the accessible aria name of the component.
|
|
30328
|
+
*
|
|
30329
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
30330
|
+
*
|
|
30331
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
30332
|
+
*/
|
|
30333
|
+
setAccessibleName(
|
|
30334
|
+
/**
|
|
30335
|
+
* New value for property `accessibleName`
|
|
30336
|
+
*/
|
|
30337
|
+
sAccessibleName: string
|
|
30338
|
+
): this;
|
|
29879
30339
|
/**
|
|
29880
30340
|
* Sets a new value for property {@link #getEnabled enabled}.
|
|
29881
30341
|
*
|
|
@@ -37049,12 +37509,12 @@ declare namespace sap {
|
|
|
37049
37509
|
/**
|
|
37050
37510
|
* Gets current value of property {@link #getIcon icon}.
|
|
37051
37511
|
*
|
|
37052
|
-
* Defines the icon
|
|
37053
|
-
*
|
|
37512
|
+
* Defines the icon, displayed as graphical element within the component. The SAP-icons font provides numerous
|
|
37513
|
+
* options.
|
|
37054
37514
|
*
|
|
37055
37515
|
* Example:
|
|
37056
37516
|
*
|
|
37057
|
-
* See all the available icons
|
|
37517
|
+
* See all the available icons within the Icon Explorer.
|
|
37058
37518
|
*
|
|
37059
37519
|
* Default value is `empty string`.
|
|
37060
37520
|
*
|
|
@@ -37224,12 +37684,12 @@ declare namespace sap {
|
|
|
37224
37684
|
/**
|
|
37225
37685
|
* Sets a new value for property {@link #getIcon icon}.
|
|
37226
37686
|
*
|
|
37227
|
-
* Defines the icon
|
|
37228
|
-
*
|
|
37687
|
+
* Defines the icon, displayed as graphical element within the component. The SAP-icons font provides numerous
|
|
37688
|
+
* options.
|
|
37229
37689
|
*
|
|
37230
37690
|
* Example:
|
|
37231
37691
|
*
|
|
37232
|
-
* See all the available icons
|
|
37692
|
+
* See all the available icons within the Icon Explorer.
|
|
37233
37693
|
*
|
|
37234
37694
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
37235
37695
|
*
|
|
@@ -39767,6 +40227,8 @@ declare namespace sap {
|
|
|
39767
40227
|
|
|
39768
40228
|
"sap/ui/webc/main/MultiComboBox": undefined;
|
|
39769
40229
|
|
|
40230
|
+
"sap/ui/webc/main/MultiComboBoxGroupItem": undefined;
|
|
40231
|
+
|
|
39770
40232
|
"sap/ui/webc/main/MultiComboBoxItem": undefined;
|
|
39771
40233
|
|
|
39772
40234
|
"sap/ui/webc/main/MultiInput": undefined;
|