@ui5/webcomponents-compat 2.20.0-rc.2 → 2.20.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.
@@ -36,31 +36,31 @@
36
36
  "name": "Table",
37
37
  "slots": [
38
38
  {
39
- "name": "default",
40
- "description": "Defines the component rows.\n\n**Note:** Use `ui5-table-row` for the intended design.",
41
- "_ui5propertyName": "rows",
39
+ "name": "columns",
40
+ "description": "Defines the configuration for the columns of the component.\n\n**Note:** Use `ui5-table-column` for the intended design.",
42
41
  "_ui5type": {
43
- "text": "Array<ITableRow>",
42
+ "text": "Array<TableColumn>",
44
43
  "references": [
45
44
  {
46
- "name": "ITableRow",
45
+ "name": "TableColumn",
47
46
  "package": "@ui5/webcomponents-compat",
48
- "module": "dist/Table.js"
47
+ "module": "dist/TableColumn.js"
49
48
  }
50
49
  ]
51
50
  },
52
51
  "_ui5privacy": "public"
53
52
  },
54
53
  {
55
- "name": "columns",
56
- "description": "Defines the configuration for the columns of the component.\n\n**Note:** Use `ui5-table-column` for the intended design.",
54
+ "name": "default",
55
+ "description": "Defines the component rows.\n\n**Note:** Use `ui5-table-row` for the intended design.",
56
+ "_ui5propertyName": "rows",
57
57
  "_ui5type": {
58
- "text": "Array<TableColumn>",
58
+ "text": "Array<ITableRow>",
59
59
  "references": [
60
60
  {
61
- "name": "TableColumn",
61
+ "name": "ITableRow",
62
62
  "package": "@ui5/webcomponents-compat",
63
- "module": "dist/TableColumn.js"
63
+ "module": "dist/Table.js"
64
64
  }
65
65
  ]
66
66
  },
@@ -70,46 +70,46 @@
70
70
  "members": [
71
71
  {
72
72
  "kind": "field",
73
- "name": "noDataText",
73
+ "name": "accessibleName",
74
74
  "type": {
75
75
  "text": "string | undefined"
76
76
  },
77
- "description": "Defines the text that will be displayed when there is no data and `hideNoData` is not present.",
77
+ "description": "Defines the accessible ARIA name of the component.",
78
78
  "default": "undefined",
79
- "privacy": "public"
79
+ "privacy": "public",
80
+ "_ui5since": "2.0.0"
80
81
  },
81
82
  {
82
83
  "kind": "field",
83
- "name": "growingButtonText",
84
+ "name": "accessibleNameRef",
84
85
  "type": {
85
86
  "text": "string | undefined"
86
87
  },
87
- "description": "Defines the text that will be displayed inside the growing button at the bottom of the table,\nmeant for loading more rows upon press.\n\n**Note:** If not specified a built-in text will be displayed.\n\n**Note:** This property takes effect if `growing` is set to `Button`.",
88
+ "description": "Receives id(or many ids) of the elements that label the component.",
88
89
  "default": "undefined",
89
90
  "privacy": "public",
90
91
  "_ui5since": "2.0.0"
91
92
  },
92
93
  {
93
94
  "kind": "field",
94
- "name": "growingButtonSubtext",
95
+ "name": "busy",
95
96
  "type": {
96
- "text": "string | undefined"
97
+ "text": "boolean"
97
98
  },
98
- "description": "Defines the subtext that will be displayed under the `growingButtonText`.\n\n**Note:** This property takes effect if `growing` is set to `Button`.",
99
- "default": "undefined",
99
+ "default": "false",
100
+ "description": "Defines if the table is in busy state.\n\nIn this state the component's opacity is reduced\nand busy indicator is displayed at the bottom of the table.",
100
101
  "privacy": "public",
101
102
  "_ui5since": "2.0.0"
102
103
  },
103
104
  {
104
105
  "kind": "field",
105
- "name": "hideNoData",
106
+ "name": "busyDelay",
106
107
  "type": {
107
- "text": "boolean"
108
+ "text": "number"
108
109
  },
109
- "default": "false",
110
- "description": "Defines if the value of `noDataText` will be diplayed when there is no rows present in the table.",
111
- "privacy": "public",
112
- "_ui5since": "2.0.0"
110
+ "default": "1000",
111
+ "description": "Defines the delay in milliseconds, after which the busy indicator will show up for this component.",
112
+ "privacy": "public"
113
113
  },
114
114
  {
115
115
  "kind": "field",
@@ -131,34 +131,36 @@
131
131
  },
132
132
  {
133
133
  "kind": "field",
134
- "name": "busy",
134
+ "name": "growingButtonSubtext",
135
135
  "type": {
136
- "text": "boolean"
136
+ "text": "string | undefined"
137
137
  },
138
- "default": "false",
139
- "description": "Defines if the table is in busy state.\n\nIn this state the component's opacity is reduced\nand busy indicator is displayed at the bottom of the table.",
138
+ "description": "Defines the subtext that will be displayed under the `growingButtonText`.\n\n**Note:** This property takes effect if `growing` is set to `Button`.",
139
+ "default": "undefined",
140
140
  "privacy": "public",
141
141
  "_ui5since": "2.0.0"
142
142
  },
143
143
  {
144
144
  "kind": "field",
145
- "name": "busyDelay",
145
+ "name": "growingButtonText",
146
146
  "type": {
147
- "text": "number"
147
+ "text": "string | undefined"
148
148
  },
149
- "default": "1000",
150
- "description": "Defines the delay in milliseconds, after which the busy indicator will show up for this component.",
151
- "privacy": "public"
149
+ "description": "Defines the text that will be displayed inside the growing button at the bottom of the table,\nmeant for loading more rows upon press.\n\n**Note:** If not specified a built-in text will be displayed.\n\n**Note:** This property takes effect if `growing` is set to `Button`.",
150
+ "default": "undefined",
151
+ "privacy": "public",
152
+ "_ui5since": "2.0.0"
152
153
  },
153
154
  {
154
155
  "kind": "field",
155
- "name": "stickyColumnHeader",
156
+ "name": "hideNoData",
156
157
  "type": {
157
158
  "text": "boolean"
158
159
  },
159
160
  "default": "false",
160
- "description": "Determines whether the column headers remain fixed at the top of the page during\nvertical scrolling as long as the Web Component is in the viewport.\n\n**Restrictions:**\n\n- Browsers that do not support this feature:\n\n- Internet Explorer\n- Microsoft Edge lower than version 41 (EdgeHTML 16)\n- Mozilla Firefox lower than version 59\n\n- Scrolling behavior:\n\n- If the Web Component is placed in layout containers that have the `overflow: hidden`\nor `overflow: auto` style definition, this can\nprevent the sticky elements of the Web Component from becoming fixed at the top of the viewport.",
161
- "privacy": "public"
161
+ "description": "Defines if the value of `noDataText` will be diplayed when there is no rows present in the table.",
162
+ "privacy": "public",
163
+ "_ui5since": "2.0.0"
162
164
  },
163
165
  {
164
166
  "kind": "field",
@@ -180,55 +182,37 @@
180
182
  },
181
183
  {
182
184
  "kind": "field",
183
- "name": "accessibleName",
185
+ "name": "noDataText",
184
186
  "type": {
185
187
  "text": "string | undefined"
186
188
  },
187
- "description": "Defines the accessible ARIA name of the component.",
189
+ "description": "Defines the text that will be displayed when there is no data and `hideNoData` is not present.",
188
190
  "default": "undefined",
189
- "privacy": "public",
190
- "_ui5since": "2.0.0"
191
+ "privacy": "public"
191
192
  },
192
193
  {
193
194
  "kind": "field",
194
- "name": "accessibleNameRef",
195
+ "name": "stickyColumnHeader",
195
196
  "type": {
196
- "text": "string | undefined"
197
+ "text": "boolean"
197
198
  },
198
- "description": "Receives id(or many ids) of the elements that label the component.",
199
- "default": "undefined",
200
- "privacy": "public",
201
- "_ui5since": "2.0.0"
199
+ "default": "false",
200
+ "description": "Determines whether the column headers remain fixed at the top of the page during\nvertical scrolling as long as the Web Component is in the viewport.\n\n**Restrictions:**\n\n- Browsers that do not support this feature:\n\n- Internet Explorer\n- Microsoft Edge lower than version 41 (EdgeHTML 16)\n- Mozilla Firefox lower than version 59\n\n- Scrolling behavior:\n\n- If the Web Component is placed in layout containers that have the `overflow: hidden`\nor `overflow: auto` style definition, this can\nprevent the sticky elements of the Web Component from becoming fixed at the top of the viewport.",
201
+ "privacy": "public"
202
202
  }
203
203
  ],
204
204
  "events": [
205
205
  {
206
- "name": "row-click",
206
+ "name": "load-more",
207
207
  "_ui5privacy": "public",
208
208
  "type": {
209
- "text": "CustomEvent<TableRowClickEventDetail>",
210
- "references": [
211
- {
212
- "name": "TableRowClickEventDetail",
213
- "package": "@ui5/webcomponents-compat",
214
- "module": "dist/TableRow.js"
215
- }
216
- ]
209
+ "text": "CustomEvent"
217
210
  },
218
- "description": "Fired when a row in `Active` mode is clicked or `Enter` key is pressed.",
211
+ "description": "Fired when the user presses the `More` button or scrolls to the table's end.\n\n**Note:** The event will be fired if `growing` is set to `Button` or `Scroll`.",
219
212
  "_ui5Cancelable": false,
220
213
  "_ui5allowPreventDefault": false,
221
214
  "_ui5Bubbles": true,
222
- "_ui5parameters": [
223
- {
224
- "type": {
225
- "text": "HTMLElement"
226
- },
227
- "name": "row",
228
- "_ui5privacy": "public",
229
- "description": "the activated row."
230
- }
231
- ]
215
+ "_ui5since": "2.0.0"
232
216
  },
233
217
  {
234
218
  "name": "popin-change",
@@ -260,16 +244,32 @@
260
244
  ]
261
245
  },
262
246
  {
263
- "name": "load-more",
247
+ "name": "row-click",
264
248
  "_ui5privacy": "public",
265
249
  "type": {
266
- "text": "CustomEvent"
250
+ "text": "CustomEvent<TableRowClickEventDetail>",
251
+ "references": [
252
+ {
253
+ "name": "TableRowClickEventDetail",
254
+ "package": "@ui5/webcomponents-compat",
255
+ "module": "dist/TableRow.js"
256
+ }
257
+ ]
267
258
  },
268
- "description": "Fired when the user presses the `More` button or scrolls to the table's end.\n\n**Note:** The event will be fired if `growing` is set to `Button` or `Scroll`.",
259
+ "description": "Fired when a row in `Active` mode is clicked or `Enter` key is pressed.",
269
260
  "_ui5Cancelable": false,
270
261
  "_ui5allowPreventDefault": false,
271
262
  "_ui5Bubbles": true,
272
- "_ui5since": "2.0.0"
263
+ "_ui5parameters": [
264
+ {
265
+ "type": {
266
+ "text": "HTMLElement"
267
+ },
268
+ "name": "row",
269
+ "_ui5privacy": "public",
270
+ "description": "the activated row."
271
+ }
272
+ ]
273
273
  },
274
274
  {
275
275
  "name": "selection-change",
@@ -294,56 +294,56 @@
294
294
  "type": {
295
295
  "text": "Array"
296
296
  },
297
- "name": "selectedRows",
297
+ "name": "previouslySelectedRows",
298
298
  "_ui5privacy": "public",
299
- "description": "An array of the selected rows."
299
+ "description": "An array of the previously selected rows."
300
300
  },
301
301
  {
302
302
  "type": {
303
303
  "text": "Array"
304
304
  },
305
- "name": "previouslySelectedRows",
305
+ "name": "selectedRows",
306
306
  "_ui5privacy": "public",
307
- "description": "An array of the previously selected rows."
307
+ "description": "An array of the selected rows."
308
308
  }
309
309
  ]
310
310
  }
311
311
  ],
312
312
  "attributes": [
313
313
  {
314
- "description": "Defines the text that will be displayed when there is no data and `hideNoData` is not present.",
315
- "name": "no-data-text",
314
+ "description": "Defines the accessible ARIA name of the component.",
315
+ "name": "accessible-name",
316
316
  "default": "undefined",
317
- "fieldName": "noDataText",
317
+ "fieldName": "accessibleName",
318
318
  "type": {
319
319
  "text": "string | undefined"
320
320
  }
321
321
  },
322
322
  {
323
- "description": "Defines the text that will be displayed inside the growing button at the bottom of the table,\nmeant for loading more rows upon press.\n\n**Note:** If not specified a built-in text will be displayed.\n\n**Note:** This property takes effect if `growing` is set to `Button`.",
324
- "name": "growing-button-text",
323
+ "description": "Receives id(or many ids) of the elements that label the component.",
324
+ "name": "accessible-name-ref",
325
325
  "default": "undefined",
326
- "fieldName": "growingButtonText",
326
+ "fieldName": "accessibleNameRef",
327
327
  "type": {
328
328
  "text": "string | undefined"
329
329
  }
330
330
  },
331
331
  {
332
- "description": "Defines the subtext that will be displayed under the `growingButtonText`.\n\n**Note:** This property takes effect if `growing` is set to `Button`.",
333
- "name": "growing-button-subtext",
334
- "default": "undefined",
335
- "fieldName": "growingButtonSubtext",
332
+ "description": "Defines if the table is in busy state.\n\nIn this state the component's opacity is reduced\nand busy indicator is displayed at the bottom of the table.",
333
+ "name": "busy",
334
+ "default": "false",
335
+ "fieldName": "busy",
336
336
  "type": {
337
- "text": "string | undefined"
337
+ "text": "boolean"
338
338
  }
339
339
  },
340
340
  {
341
- "description": "Defines if the value of `noDataText` will be diplayed when there is no rows present in the table.",
342
- "name": "hide-no-data",
343
- "default": "false",
344
- "fieldName": "hideNoData",
341
+ "description": "Defines the delay in milliseconds, after which the busy indicator will show up for this component.",
342
+ "name": "busy-delay",
343
+ "default": "1000",
344
+ "fieldName": "busyDelay",
345
345
  "type": {
346
- "text": "boolean"
346
+ "text": "number"
347
347
  }
348
348
  },
349
349
  {
@@ -356,28 +356,28 @@
356
356
  }
357
357
  },
358
358
  {
359
- "description": "Defines if the table is in busy state.\n\nIn this state the component's opacity is reduced\nand busy indicator is displayed at the bottom of the table.",
360
- "name": "busy",
361
- "default": "false",
362
- "fieldName": "busy",
359
+ "description": "Defines the subtext that will be displayed under the `growingButtonText`.\n\n**Note:** This property takes effect if `growing` is set to `Button`.",
360
+ "name": "growing-button-subtext",
361
+ "default": "undefined",
362
+ "fieldName": "growingButtonSubtext",
363
363
  "type": {
364
- "text": "boolean"
364
+ "text": "string | undefined"
365
365
  }
366
366
  },
367
367
  {
368
- "description": "Defines the delay in milliseconds, after which the busy indicator will show up for this component.",
369
- "name": "busy-delay",
370
- "default": "1000",
371
- "fieldName": "busyDelay",
368
+ "description": "Defines the text that will be displayed inside the growing button at the bottom of the table,\nmeant for loading more rows upon press.\n\n**Note:** If not specified a built-in text will be displayed.\n\n**Note:** This property takes effect if `growing` is set to `Button`.",
369
+ "name": "growing-button-text",
370
+ "default": "undefined",
371
+ "fieldName": "growingButtonText",
372
372
  "type": {
373
- "text": "number"
373
+ "text": "string | undefined"
374
374
  }
375
375
  },
376
376
  {
377
- "description": "Determines whether the column headers remain fixed at the top of the page during\nvertical scrolling as long as the Web Component is in the viewport.\n\n**Restrictions:**\n\n- Browsers that do not support this feature:\n\n- Internet Explorer\n- Microsoft Edge lower than version 41 (EdgeHTML 16)\n- Mozilla Firefox lower than version 59\n\n- Scrolling behavior:\n\n- If the Web Component is placed in layout containers that have the `overflow: hidden`\nor `overflow: auto` style definition, this can\nprevent the sticky elements of the Web Component from becoming fixed at the top of the viewport.",
378
- "name": "sticky-column-header",
377
+ "description": "Defines if the value of `noDataText` will be diplayed when there is no rows present in the table.",
378
+ "name": "hide-no-data",
379
379
  "default": "false",
380
- "fieldName": "stickyColumnHeader",
380
+ "fieldName": "hideNoData",
381
381
  "type": {
382
382
  "text": "boolean"
383
383
  }
@@ -392,21 +392,21 @@
392
392
  }
393
393
  },
394
394
  {
395
- "description": "Defines the accessible ARIA name of the component.",
396
- "name": "accessible-name",
395
+ "description": "Defines the text that will be displayed when there is no data and `hideNoData` is not present.",
396
+ "name": "no-data-text",
397
397
  "default": "undefined",
398
- "fieldName": "accessibleName",
398
+ "fieldName": "noDataText",
399
399
  "type": {
400
400
  "text": "string | undefined"
401
401
  }
402
402
  },
403
403
  {
404
- "description": "Receives id(or many ids) of the elements that label the component.",
405
- "name": "accessible-name-ref",
406
- "default": "undefined",
407
- "fieldName": "accessibleNameRef",
404
+ "description": "Determines whether the column headers remain fixed at the top of the page during\nvertical scrolling as long as the Web Component is in the viewport.\n\n**Restrictions:**\n\n- Browsers that do not support this feature:\n\n- Internet Explorer\n- Microsoft Edge lower than version 41 (EdgeHTML 16)\n- Mozilla Firefox lower than version 59\n\n- Scrolling behavior:\n\n- If the Web Component is placed in layout containers that have the `overflow: hidden`\nor `overflow: auto` style definition, this can\nprevent the sticky elements of the Web Component from becoming fixed at the top of the viewport.",
405
+ "name": "sticky-column-header",
406
+ "default": "false",
407
+ "fieldName": "stickyColumnHeader",
408
408
  "type": {
409
- "text": "string | undefined"
409
+ "text": "boolean"
410
410
  }
411
411
  }
412
412
  ],
@@ -522,32 +522,22 @@
522
522
  "members": [
523
523
  {
524
524
  "kind": "field",
525
- "name": "minWidth",
526
- "type": {
527
- "text": "number"
528
- },
529
- "default": "Infinity",
530
- "description": "Defines the minimum table width required to display this column. By default it is always displayed.\n\nThe responsive behavior of the `ui5-table` is determined by this property. As an example, by setting\n`minWidth` property to `400` sets the minimum width to 400 pixels, and\tshows this column on tablet (and desktop) but hides it on mobile.\n\nFor further responsive design options, see `demandPopin` property.",
531
- "privacy": "public"
532
- },
533
- {
534
- "kind": "field",
535
- "name": "popinText",
525
+ "name": "demandPopin",
536
526
  "type": {
537
- "text": "string | undefined"
527
+ "text": "boolean"
538
528
  },
539
- "description": "The text for the column when it pops in.",
540
- "default": "undefined",
529
+ "default": "false",
530
+ "description": "According to your `minWidth` settings, the component can be hidden\nin different screen sizes.\n\nSetting this property to `true`, shows this column as pop-in instead of hiding it.",
541
531
  "privacy": "public"
542
532
  },
543
533
  {
544
534
  "kind": "field",
545
- "name": "demandPopin",
535
+ "name": "minWidth",
546
536
  "type": {
547
- "text": "boolean"
537
+ "text": "number"
548
538
  },
549
- "default": "false",
550
- "description": "According to your `minWidth` settings, the component can be hidden\nin different screen sizes.\n\nSetting this property to `true`, shows this column as pop-in instead of hiding it.",
539
+ "default": "Infinity",
540
+ "description": "Defines the minimum table width required to display this column. By default it is always displayed.\n\nThe responsive behavior of the `ui5-table` is determined by this property. As an example, by setting\n`minWidth` property to `400` sets the minimum width to 400 pixels, and\tshows this column on tablet (and desktop) but hides it on mobile.\n\nFor further responsive design options, see `demandPopin` property.",
551
541
  "privacy": "public"
552
542
  },
553
543
  {
@@ -566,27 +556,19 @@
566
556
  "default": "\"Block\"",
567
557
  "description": "Defines how the popin row is displayed.\n\n**The available values are:**\n\n- `Block`\n- `Inline`",
568
558
  "privacy": "public"
569
- }
570
- ],
571
- "attributes": [
572
- {
573
- "description": "Defines the minimum table width required to display this column. By default it is always displayed.\n\nThe responsive behavior of the `ui5-table` is determined by this property. As an example, by setting\n`minWidth` property to `400` sets the minimum width to 400 pixels, and\tshows this column on tablet (and desktop) but hides it on mobile.\n\nFor further responsive design options, see `demandPopin` property.",
574
- "name": "min-width",
575
- "default": "Infinity",
576
- "fieldName": "minWidth",
577
- "type": {
578
- "text": "number"
579
- }
580
559
  },
581
560
  {
582
- "description": "The text for the column when it pops in.",
583
- "name": "popin-text",
584
- "default": "undefined",
585
- "fieldName": "popinText",
561
+ "kind": "field",
562
+ "name": "popinText",
586
563
  "type": {
587
564
  "text": "string | undefined"
588
- }
589
- },
565
+ },
566
+ "description": "The text for the column when it pops in.",
567
+ "default": "undefined",
568
+ "privacy": "public"
569
+ }
570
+ ],
571
+ "attributes": [
590
572
  {
591
573
  "description": "According to your `minWidth` settings, the component can be hidden\nin different screen sizes.\n\nSetting this property to `true`, shows this column as pop-in instead of hiding it.",
592
574
  "name": "demand-popin",
@@ -596,6 +578,15 @@
596
578
  "text": "boolean"
597
579
  }
598
580
  },
581
+ {
582
+ "description": "Defines the minimum table width required to display this column. By default it is always displayed.\n\nThe responsive behavior of the `ui5-table` is determined by this property. As an example, by setting\n`minWidth` property to `400` sets the minimum width to 400 pixels, and\tshows this column on tablet (and desktop) but hides it on mobile.\n\nFor further responsive design options, see `demandPopin` property.",
583
+ "name": "min-width",
584
+ "default": "Infinity",
585
+ "fieldName": "minWidth",
586
+ "type": {
587
+ "text": "number"
588
+ }
589
+ },
599
590
  {
600
591
  "description": "Defines how the popin row is displayed.\n\n**The available values are:**\n\n- `Block`\n- `Inline`",
601
592
  "name": "popin-display",
@@ -604,6 +595,15 @@
604
595
  "type": {
605
596
  "text": "\"Block\" | \"Inline\""
606
597
  }
598
+ },
599
+ {
600
+ "description": "The text for the column when it pops in.",
601
+ "name": "popin-text",
602
+ "default": "undefined",
603
+ "fieldName": "popinText",
604
+ "type": {
605
+ "text": "string | undefined"
606
+ }
607
607
  }
608
608
  ],
609
609
  "superclass": {
@@ -707,13 +707,13 @@
707
707
  "description": "### Overview\n\nThe `ui5-table-row` component represents a row in the `ui5-table`.",
708
708
  "name": "TableRow",
709
709
  "cssParts": [
710
- {
711
- "description": "Used to style the native `tr` element",
712
- "name": "row"
713
- },
714
710
  {
715
711
  "description": "Used to style the `tr` element when a row pops in",
716
712
  "name": "popin-row"
713
+ },
714
+ {
715
+ "description": "Used to style the native `tr` element",
716
+ "name": "row"
717
717
  }
718
718
  ],
719
719
  "slots": [
@@ -737,19 +737,12 @@
737
737
  "members": [
738
738
  {
739
739
  "kind": "field",
740
- "name": "type",
740
+ "name": "navigated",
741
741
  "type": {
742
- "text": "TableRowType",
743
- "references": [
744
- {
745
- "name": "TableRowType",
746
- "package": "@ui5/webcomponents-compat",
747
- "module": "dist/types/TableRowType.js"
748
- }
749
- ]
742
+ "text": "boolean"
750
743
  },
751
- "default": "\"Inactive\"",
752
- "description": "Defines the visual indication and behavior of the component.\n\n**Note:** When set to `Active`, the item will provide visual response upon press,\nwhile with type `Inactive`-will not.",
744
+ "default": "false",
745
+ "description": "Indicates if the table row is navigated.",
753
746
  "privacy": "public",
754
747
  "_ui5since": "2.0.0"
755
748
  },
@@ -766,24 +759,31 @@
766
759
  },
767
760
  {
768
761
  "kind": "field",
769
- "name": "navigated",
762
+ "name": "type",
770
763
  "type": {
771
- "text": "boolean"
764
+ "text": "TableRowType",
765
+ "references": [
766
+ {
767
+ "name": "TableRowType",
768
+ "package": "@ui5/webcomponents-compat",
769
+ "module": "dist/types/TableRowType.js"
770
+ }
771
+ ]
772
772
  },
773
- "default": "false",
774
- "description": "Indicates if the table row is navigated.",
773
+ "default": "\"Inactive\"",
774
+ "description": "Defines the visual indication and behavior of the component.\n\n**Note:** When set to `Active`, the item will provide visual response upon press,\nwhile with type `Inactive`-will not.",
775
775
  "privacy": "public",
776
776
  "_ui5since": "2.0.0"
777
777
  }
778
778
  ],
779
779
  "attributes": [
780
780
  {
781
- "description": "Defines the visual indication and behavior of the component.\n\n**Note:** When set to `Active`, the item will provide visual response upon press,\nwhile with type `Inactive`-will not.",
782
- "name": "type",
783
- "default": "\"Inactive\"",
784
- "fieldName": "type",
781
+ "description": "Indicates if the table row is navigated.",
782
+ "name": "navigated",
783
+ "default": "false",
784
+ "fieldName": "navigated",
785
785
  "type": {
786
- "text": "\"Inactive\" | \"Active\""
786
+ "text": "boolean"
787
787
  }
788
788
  },
789
789
  {
@@ -796,12 +796,12 @@
796
796
  }
797
797
  },
798
798
  {
799
- "description": "Indicates if the table row is navigated.",
800
- "name": "navigated",
801
- "default": "false",
802
- "fieldName": "navigated",
799
+ "description": "Defines the visual indication and behavior of the component.\n\n**Note:** When set to `Active`, the item will provide visual response upon press,\nwhile with type `Inactive`-will not.",
800
+ "name": "type",
801
+ "default": "\"Inactive\"",
802
+ "fieldName": "type",
803
803
  "type": {
804
- "text": "boolean"
804
+ "text": "\"Inactive\" | \"Active\""
805
805
  }
806
806
  }
807
807
  ],
@@ -907,18 +907,18 @@
907
907
  "kind": "field",
908
908
  "static": true,
909
909
  "privacy": "public",
910
- "description": "Component `load-more` is fired upon scroll.",
911
- "default": "Scroll",
912
- "name": "Scroll",
910
+ "description": "Component growing is not enabled.",
911
+ "default": "None",
912
+ "name": "None",
913
913
  "readonly": true
914
914
  },
915
915
  {
916
916
  "kind": "field",
917
917
  "static": true,
918
918
  "privacy": "public",
919
- "description": "Component growing is not enabled.",
920
- "default": "None",
921
- "name": "None",
919
+ "description": "Component `load-more` is fired upon scroll.",
920
+ "default": "Scroll",
921
+ "name": "Scroll",
922
922
  "readonly": true
923
923
  }
924
924
  ]
@@ -949,27 +949,27 @@
949
949
  "kind": "field",
950
950
  "static": true,
951
951
  "privacy": "public",
952
- "description": "Default mode (no selection).",
953
- "default": "None",
954
- "name": "None",
952
+ "description": "Multi selection mode (more than one table row can be selected).",
953
+ "default": "MultiSelect",
954
+ "name": "MultiSelect",
955
955
  "readonly": true
956
956
  },
957
957
  {
958
958
  "kind": "field",
959
959
  "static": true,
960
960
  "privacy": "public",
961
- "description": "Single selection mode (only one table row can be selected).",
962
- "default": "SingleSelect",
963
- "name": "SingleSelect",
961
+ "description": "Default mode (no selection).",
962
+ "default": "None",
963
+ "name": "None",
964
964
  "readonly": true
965
965
  },
966
966
  {
967
967
  "kind": "field",
968
968
  "static": true,
969
969
  "privacy": "public",
970
- "description": "Multi selection mode (more than one table row can be selected).",
971
- "default": "MultiSelect",
972
- "name": "MultiSelect",
970
+ "description": "Single selection mode (only one table row can be selected).",
971
+ "default": "SingleSelect",
972
+ "name": "SingleSelect",
973
973
  "readonly": true
974
974
  }
975
975
  ]
@@ -1000,18 +1000,18 @@
1000
1000
  "kind": "field",
1001
1001
  "static": true,
1002
1002
  "privacy": "public",
1003
- "description": "Indicates that the table row does not have any active feedback when item is pressed.",
1004
- "default": "Inactive",
1005
- "name": "Inactive",
1003
+ "description": "Indicates that the table row is clickable via active feedback when item is pressed.",
1004
+ "default": "Active",
1005
+ "name": "Active",
1006
1006
  "readonly": true
1007
1007
  },
1008
1008
  {
1009
1009
  "kind": "field",
1010
1010
  "static": true,
1011
1011
  "privacy": "public",
1012
- "description": "Indicates that the table row is clickable via active feedback when item is pressed.",
1013
- "default": "Active",
1014
- "name": "Active",
1012
+ "description": "Indicates that the table row does not have any active feedback when item is pressed.",
1013
+ "default": "Inactive",
1014
+ "name": "Inactive",
1015
1015
  "readonly": true
1016
1016
  }
1017
1017
  ]