@ui5/webcomponents 1.9.2 → 1.9.3
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/CHANGELOG.md +8 -0
- package/dist/TabContainer.js +3 -3
- package/dist/TreeItem.js +5 -5
- package/dist/TreeItemBase.js +12 -11
- package/dist/TreeItemCustom.js +5 -5
- package/dist/api.json +1 -1
- package/package.json +6 -6
- package/src/TabContainer.js +3 -3
- package/src/TreeItem.js +5 -5
- package/src/TreeItemBase.js +12 -11
- package/src/TreeItemCustom.js +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.9.3](https://github.com/SAP/ui5-webcomponents/compare/v1.9.2...v1.9.3) (2022-12-16)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @ui5/webcomponents
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [1.9.1](https://github.com/SAP/ui5-webcomponents/compare/v1.9.0...v1.9.1) (2022-11-10)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @ui5/webcomponents
|
package/dist/TabContainer.js
CHANGED
|
@@ -230,7 +230,7 @@ const metadata = {
|
|
|
230
230
|
/**
|
|
231
231
|
* Sets the background color of the Tab Container's header as <code>Solid</code>, <code>Transparent</code>, or <code>Translucent</code>.
|
|
232
232
|
*
|
|
233
|
-
* @type {sap.ui.webcomponents.main.types.TabContainerBackgroundDesign
|
|
233
|
+
* @type {sap.ui.webcomponents.main.types.TabContainerBackgroundDesign}
|
|
234
234
|
* @defaultvalue "Solid"
|
|
235
235
|
* @since 1.10.0
|
|
236
236
|
* @public
|
|
@@ -243,7 +243,7 @@ const metadata = {
|
|
|
243
243
|
/**
|
|
244
244
|
* Sets the background color of the Tab Container's content as <code>Solid</code>, <code>Transparent</code>, or <code>Translucent</code>.
|
|
245
245
|
*
|
|
246
|
-
* @type {sap.ui.webcomponents.main.types.TabContainerBackgroundDesign
|
|
246
|
+
* @type {sap.ui.webcomponents.main.types.TabContainerBackgroundDesign}
|
|
247
247
|
* @defaultvalue "Solid"
|
|
248
248
|
* @since 1.10.0
|
|
249
249
|
* @public
|
|
@@ -654,7 +654,7 @@ class TabContainer extends UI5Element {
|
|
|
654
654
|
* <code>[ ui5-tab#First, ui5-tab#Nested, ui5-tab#Second, ui5-tab-separator#sep, ui5-tab#Third ]</code>
|
|
655
655
|
* @public
|
|
656
656
|
* @readonly
|
|
657
|
-
*
|
|
657
|
+
* @type {sap.ui.webcomponents.main.ITab[]}
|
|
658
658
|
* @returns {sap.ui.webcomponents.main.ITab[]}
|
|
659
659
|
*/
|
|
660
660
|
get allItems() {
|
package/dist/TreeItem.js
CHANGED
|
@@ -11,7 +11,7 @@ import treeItemCss from "./generated/themes/TreeItem.css.js";
|
|
|
11
11
|
*/
|
|
12
12
|
const metadata = {
|
|
13
13
|
tag: "ui5-tree-item",
|
|
14
|
-
properties: /** @lends sap.ui.
|
|
14
|
+
properties: /** @lends sap.ui.webcomponents.main.TreeItem.prototype */ {
|
|
15
15
|
|
|
16
16
|
/**
|
|
17
17
|
* Defines the text of the tree item.
|
|
@@ -38,7 +38,7 @@ const metadata = {
|
|
|
38
38
|
* Defines the state of the <code>additionalText</code>.
|
|
39
39
|
* <br>
|
|
40
40
|
* Available options are: <code>"None"</code> (by default), <code>"Success"</code>, <code>"Warning"</code>, <code>"Information"</code> and <code>"Error"</code>.
|
|
41
|
-
* @type {sap.ui.
|
|
41
|
+
* @type {sap.ui.webcomponents.base.types.ValueState}
|
|
42
42
|
* @defaultvalue "None"
|
|
43
43
|
* @public
|
|
44
44
|
* @since 1.0.0-rc.15
|
|
@@ -74,11 +74,11 @@ const metadata = {
|
|
|
74
74
|
*
|
|
75
75
|
* @constructor
|
|
76
76
|
* @author SAP SE
|
|
77
|
-
* @alias sap.ui.
|
|
78
|
-
* @extends sap.ui.
|
|
77
|
+
* @alias sap.ui.webcomponents.main.TreeItem
|
|
78
|
+
* @extends sap.ui.webcomponents.main.TreeItemBase
|
|
79
79
|
* @tagname ui5-tree-item
|
|
80
80
|
* @public
|
|
81
|
-
* @implements sap.ui.
|
|
81
|
+
* @implements sap.ui.webcomponents.main.ITreeItem
|
|
82
82
|
* @since 1.0.0-rc.8
|
|
83
83
|
*/
|
|
84
84
|
class TreeItem extends TreeItemBase {
|
package/dist/TreeItemBase.js
CHANGED
|
@@ -26,12 +26,12 @@ import HasPopup from "./types/HasPopup.js";
|
|
|
26
26
|
const metadata = {
|
|
27
27
|
languageAware: true,
|
|
28
28
|
managedSlots: true,
|
|
29
|
-
properties: /** @lends sap.ui.
|
|
29
|
+
properties: /** @lends sap.ui.webcomponents.main.TreeItemBase.prototype */ {
|
|
30
30
|
|
|
31
31
|
/**
|
|
32
32
|
* Defines the indentation of the tree list item. Use level 1 for tree list items, representing top-level tree nodes.
|
|
33
33
|
*
|
|
34
|
-
* @type {sap.ui.
|
|
34
|
+
* @type {sap.ui.webcomponents.base.types.Integer}
|
|
35
35
|
* @protected
|
|
36
36
|
* @defaultValue 1
|
|
37
37
|
*/
|
|
@@ -114,7 +114,7 @@ const metadata = {
|
|
|
114
114
|
* Defines the state of the <code>additionalText</code>.
|
|
115
115
|
* <br>
|
|
116
116
|
* Available options are: <code>"None"</code> (by default), <code>"Success"</code>, <code>"Warning"</code>, <code>"Information"</code> and <code>"Error"</code>.
|
|
117
|
-
* @type {sap.ui.
|
|
117
|
+
* @type {sap.ui.webcomponents.base.types.ValueState}
|
|
118
118
|
* @defaultvalue "None"
|
|
119
119
|
* @public
|
|
120
120
|
* @since 1.0.0-rc.15
|
|
@@ -203,7 +203,7 @@ const metadata = {
|
|
|
203
203
|
|
|
204
204
|
/**
|
|
205
205
|
* Defines the availability and type of interactive popup element that can be triggered by the component on which the property is set.
|
|
206
|
-
* @type {sap.ui.
|
|
206
|
+
* @type {sap.ui.webcomponents.main.types.HasPopup}
|
|
207
207
|
* @since 1.10.0
|
|
208
208
|
* @private
|
|
209
209
|
*/
|
|
@@ -212,14 +212,14 @@ const metadata = {
|
|
|
212
212
|
noAttribute: true,
|
|
213
213
|
},
|
|
214
214
|
},
|
|
215
|
-
slots: /** @lends sap.ui.
|
|
215
|
+
slots: /** @lends sap.ui.webcomponents.main.TreeItemBase.prototype */ {
|
|
216
216
|
/**
|
|
217
217
|
* Defines the items of the component.
|
|
218
218
|
* <br />
|
|
219
219
|
* <br />
|
|
220
220
|
* <b>Note:</b> Use <code>ui5-tree-item</code> or <code>ui5-tree-item-custom</code>
|
|
221
221
|
*
|
|
222
|
-
* @type {sap.ui.
|
|
222
|
+
* @type {sap.ui.webcomponents.main.ITreeItem}
|
|
223
223
|
* @slot items
|
|
224
224
|
* @public
|
|
225
225
|
*/
|
|
@@ -228,7 +228,7 @@ const metadata = {
|
|
|
228
228
|
propertyName: "items",
|
|
229
229
|
},
|
|
230
230
|
},
|
|
231
|
-
events: /** @lends sap.ui.
|
|
231
|
+
events: /** @lends sap.ui.webcomponents.main.TreeItemBase.prototype */ {
|
|
232
232
|
|
|
233
233
|
/**
|
|
234
234
|
* Fired when the user interacts with the expand/collapse button of the tree list item.
|
|
@@ -245,7 +245,7 @@ const metadata = {
|
|
|
245
245
|
/**
|
|
246
246
|
* Fired when the user drills down into the tree hierarchy by pressing the right arrow on the tree node.
|
|
247
247
|
*
|
|
248
|
-
* @event sap.ui.
|
|
248
|
+
* @event sap.ui.webcomponents.main.TreeItemBase#step-in
|
|
249
249
|
* @param {HTMLElement} item the item on which right arrow was pressed.
|
|
250
250
|
* @protected
|
|
251
251
|
*/
|
|
@@ -258,7 +258,7 @@ const metadata = {
|
|
|
258
258
|
/**
|
|
259
259
|
* Fired when the user goes up the tree hierarchy by pressing the left arrow on the tree node.
|
|
260
260
|
*
|
|
261
|
-
* @event sap.ui.
|
|
261
|
+
* @event sap.ui.webcomponents.main.TreeItemBase#step-out
|
|
262
262
|
* @param {HTMLElement} item the item on which left arrow was pressed.
|
|
263
263
|
* @protected
|
|
264
264
|
*/
|
|
@@ -277,8 +277,8 @@ const metadata = {
|
|
|
277
277
|
* @abstract
|
|
278
278
|
* @constructor
|
|
279
279
|
* @author SAP SE
|
|
280
|
-
* @alias sap.ui.
|
|
281
|
-
* @extends sap.ui.
|
|
280
|
+
* @alias sap.ui.webcomponents.main.TreeItemBase
|
|
281
|
+
* @extends sap.ui.webcomponents.main.ListItem
|
|
282
282
|
* @public
|
|
283
283
|
*/
|
|
284
284
|
class TreeItemBase extends ListItem {
|
|
@@ -377,6 +377,7 @@ class TreeItemBase extends ListItem {
|
|
|
377
377
|
/**
|
|
378
378
|
* Used to duck-type TreeItem elements without using instanceof
|
|
379
379
|
* @returns {boolean}
|
|
380
|
+
* @type { boolean }
|
|
380
381
|
* @public
|
|
381
382
|
*/
|
|
382
383
|
get isTreeItem() {
|
package/dist/TreeItemCustom.js
CHANGED
|
@@ -11,7 +11,7 @@ import treeItemCustomCss from "./generated/themes/TreeItem.css.js";
|
|
|
11
11
|
*/
|
|
12
12
|
const metadata = {
|
|
13
13
|
tag: "ui5-tree-item-custom",
|
|
14
|
-
properties: /** @lends sap.ui.
|
|
14
|
+
properties: /** @lends sap.ui.webcomponents.main.TreeItemCustom.prototype */ {
|
|
15
15
|
/**
|
|
16
16
|
* Defines whether the tree list item should display the selection element.
|
|
17
17
|
*
|
|
@@ -23,7 +23,7 @@ const metadata = {
|
|
|
23
23
|
type: Boolean,
|
|
24
24
|
},
|
|
25
25
|
},
|
|
26
|
-
slots: /** @lends sap.ui.
|
|
26
|
+
slots: /** @lends sap.ui.webcomponents.main.TreeItemCustom.prototype */ {
|
|
27
27
|
/**
|
|
28
28
|
* Defines the content of the <code>ui5-tree-item</code>.
|
|
29
29
|
*
|
|
@@ -62,11 +62,11 @@ const metadata = {
|
|
|
62
62
|
*
|
|
63
63
|
* @constructor
|
|
64
64
|
* @author SAP SE
|
|
65
|
-
* @alias sap.ui.
|
|
66
|
-
* @extends sap.ui.
|
|
65
|
+
* @alias sap.ui.webcomponents.main.TreeItemCustom
|
|
66
|
+
* @extends sap.ui.webcomponents.main.TreeItemBase
|
|
67
67
|
* @tagname ui5-tree-item-custom
|
|
68
68
|
* @public
|
|
69
|
-
* @implements sap.ui.
|
|
69
|
+
* @implements sap.ui.webcomponents.main.ITreeItem
|
|
70
70
|
* @since 1.0.0-rc.8
|
|
71
71
|
*/
|
|
72
72
|
class TreeItemCustom extends TreeItemBase {
|