@ui5/manifest 1.62.1 → 1.63.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -2
- package/mapping.json +3 -1
- package/package.json +22 -22
- package/schema.json +217 -78
- package/schema_cil.json +152 -72
- package/types/manifest.d.ts +113 -63
package/CHANGELOG.md
CHANGED
|
@@ -2,10 +2,16 @@
|
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
4
4
|
|
|
5
|
-
A list of unreleased changes can be found [here](https://github.com/SAP/ui5-manifest/compare/v1.
|
|
5
|
+
A list of unreleased changes can be found [here](https://github.com/SAP/ui5-manifest/compare/v1.63.1...HEAD).
|
|
6
|
+
|
|
7
|
+
<a name="v1.63.1"></a>
|
|
8
|
+
## [v1.63.1] - 2024-04-08
|
|
9
|
+
|
|
10
|
+
<a name="v1.63.0"></a>
|
|
11
|
+
## [v1.63.0] - 2024-03-07
|
|
6
12
|
|
|
7
13
|
<a name="v1.62.1"></a>
|
|
8
|
-
## [v1.62.1] -
|
|
14
|
+
## [v1.62.1] - 2024-02-12
|
|
9
15
|
|
|
10
16
|
<a name="v1.62.0"></a>
|
|
11
17
|
## [v1.62.0] - 2024-02-12
|
|
@@ -58,6 +64,8 @@ A list of unreleased changes can be found [here](https://github.com/SAP/ui5-mani
|
|
|
58
64
|
<a name="v1.48.1"></a>
|
|
59
65
|
## v1.48.1 - 2022-11-10
|
|
60
66
|
|
|
67
|
+
[v1.63.1]: https://github.com/SAP/ui5-manifest/compare/v1.63.0...v1.63.1
|
|
68
|
+
[v1.63.0]: https://github.com/SAP/ui5-manifest/compare/v1.62.1...v1.63.0
|
|
61
69
|
[v1.62.1]: https://github.com/SAP/ui5-manifest/compare/v1.62.0...v1.62.1
|
|
62
70
|
[v1.62.0]: https://github.com/SAP/ui5-manifest/compare/v1.61.1...v1.62.0
|
|
63
71
|
[v1.61.1]: https://github.com/SAP/ui5-manifest/compare/v1.60.0...v1.61.1
|
package/mapping.json
CHANGED
package/package.json
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
2
|
+
"name": "@ui5/manifest",
|
|
3
|
+
"version": "1.63.1",
|
|
4
|
+
"description": "This project contains the flattend json schema for the ui5 manifest.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/SAP/ui5-manifest.git"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"version": "git-chglog --next-tag v$npm_package_version -o CHANGELOG.md && git add CHANGELOG.md",
|
|
11
|
+
"prepublishOnly": "git push --follow-tags",
|
|
12
|
+
"release-note": "git-chglog -c .chglog/release-config.yml v$npm_package_version"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"ui5",
|
|
16
|
+
"manifest"
|
|
17
|
+
],
|
|
18
|
+
"author": "SAP SE",
|
|
19
|
+
"license": "Apache-2.0",
|
|
20
|
+
"bugs": {
|
|
21
|
+
"url": "https://github.com/SAP/ui5-manifest/issues"
|
|
22
|
+
},
|
|
23
|
+
"homepage": "https://github.com/SAP/ui5-manifest#readme"
|
|
24
24
|
}
|
package/schema.json
CHANGED
|
@@ -78,7 +78,9 @@
|
|
|
78
78
|
"1.58.0",
|
|
79
79
|
"1.59.0",
|
|
80
80
|
"1.60.0",
|
|
81
|
-
"1.61.0"
|
|
81
|
+
"1.61.0",
|
|
82
|
+
"1.62.0",
|
|
83
|
+
"1.63.0"
|
|
82
84
|
]
|
|
83
85
|
},
|
|
84
86
|
"start_url": {
|
|
@@ -573,7 +575,8 @@
|
|
|
573
575
|
"1.14.0",
|
|
574
576
|
"1.15.0",
|
|
575
577
|
"1.16.0",
|
|
576
|
-
"1.17.0"
|
|
578
|
+
"1.17.0",
|
|
579
|
+
"1.18.0"
|
|
577
580
|
]
|
|
578
581
|
},
|
|
579
582
|
"resources": {
|
|
@@ -1985,7 +1988,8 @@
|
|
|
1985
1988
|
"1.40.0",
|
|
1986
1989
|
"1.41.0",
|
|
1987
1990
|
"1.42.0",
|
|
1988
|
-
"1.43.0"
|
|
1991
|
+
"1.43.0",
|
|
1992
|
+
"1.44.0"
|
|
1989
1993
|
]
|
|
1990
1994
|
},
|
|
1991
1995
|
"designtime": {
|
|
@@ -2074,6 +2078,10 @@
|
|
|
2074
2078
|
"additionalProperties": {
|
|
2075
2079
|
"$ref": "#/definitions/Configuration.NoData"
|
|
2076
2080
|
}
|
|
2081
|
+
},
|
|
2082
|
+
"componentData": {
|
|
2083
|
+
"description": "[Experimental] Object which will be passed to the component as 'componentData'",
|
|
2084
|
+
"type": "object"
|
|
2077
2085
|
}
|
|
2078
2086
|
}
|
|
2079
2087
|
},
|
|
@@ -4439,13 +4447,25 @@
|
|
|
4439
4447
|
"description": "The horizontal alignment of the texts",
|
|
4440
4448
|
"type": "string"
|
|
4441
4449
|
},
|
|
4450
|
+
"padding": {
|
|
4451
|
+
"description": "Set to 'MediumStart' to have medium size padding in the beginning of the texts.",
|
|
4452
|
+
"type": "string"
|
|
4453
|
+
},
|
|
4442
4454
|
"textColor": {
|
|
4443
4455
|
"description": "The color of the texts",
|
|
4444
4456
|
"type": "string"
|
|
4445
4457
|
},
|
|
4458
|
+
"textFilter": {
|
|
4459
|
+
"description": "The CSS filter which will be applied to the text.",
|
|
4460
|
+
"type": "string"
|
|
4461
|
+
},
|
|
4446
4462
|
"background": {
|
|
4447
4463
|
"description": "The background behind the texts and over the image",
|
|
4448
4464
|
"type": "string"
|
|
4465
|
+
},
|
|
4466
|
+
"animation": {
|
|
4467
|
+
"description": "Defines the animation that should be used to show up the overlay.",
|
|
4468
|
+
"type": "string"
|
|
4449
4469
|
}
|
|
4450
4470
|
}
|
|
4451
4471
|
}
|
|
@@ -5111,6 +5131,22 @@
|
|
|
5111
5131
|
}
|
|
5112
5132
|
}
|
|
5113
5133
|
},
|
|
5134
|
+
"wrappingType": {
|
|
5135
|
+
"description": "The wrapping type for texts",
|
|
5136
|
+
"type": "string",
|
|
5137
|
+
"oneOf": [
|
|
5138
|
+
{
|
|
5139
|
+
"enum": [
|
|
5140
|
+
"Normal",
|
|
5141
|
+
"Hyphenated"
|
|
5142
|
+
],
|
|
5143
|
+
"default": "Normal"
|
|
5144
|
+
},
|
|
5145
|
+
{
|
|
5146
|
+
"$ref": "#/definitions/simpleBinding"
|
|
5147
|
+
}
|
|
5148
|
+
]
|
|
5149
|
+
},
|
|
5114
5150
|
"closeButton": {
|
|
5115
5151
|
"description": "[Experimental] Represents attributes of the Close button",
|
|
5116
5152
|
"type": "object",
|
|
@@ -5460,6 +5496,10 @@
|
|
|
5460
5496
|
"description": "[Experimental] Represents the Close button when a card is opened by the ShowCard action.",
|
|
5461
5497
|
"$ref": "#/definitions/closeButton"
|
|
5462
5498
|
},
|
|
5499
|
+
"wrappingType": {
|
|
5500
|
+
"description": "[Experimental] The wrapping type for texts inside the header.",
|
|
5501
|
+
"$ref": "#/definitions/wrappingType"
|
|
5502
|
+
},
|
|
5463
5503
|
"visible": {
|
|
5464
5504
|
"description": "[Experimental] Visibility of the header",
|
|
5465
5505
|
"$ref": "#/definitions/visibility"
|
|
@@ -5540,6 +5580,10 @@
|
|
|
5540
5580
|
"description": "[Experimental] Represents the Close button when a card is opened by the ShowCard action.",
|
|
5541
5581
|
"$ref": "#/definitions/closeButton"
|
|
5542
5582
|
},
|
|
5583
|
+
"wrappingType": {
|
|
5584
|
+
"description": "[Experimental] The wrapping type for texts inside the header.",
|
|
5585
|
+
"$ref": "#/definitions/wrappingType"
|
|
5586
|
+
},
|
|
5543
5587
|
"visible": {
|
|
5544
5588
|
"description": "[Experimental] Visibility of the header",
|
|
5545
5589
|
"$ref": "#/definitions/visibility"
|
|
@@ -5986,6 +6030,28 @@
|
|
|
5986
6030
|
"$ref": "#/definitions/simpleBinding"
|
|
5987
6031
|
}
|
|
5988
6032
|
]
|
|
6033
|
+
},
|
|
6034
|
+
"actionsStrip": {
|
|
6035
|
+
"description": "Defines actions items that can be triggered when the action button is pressed",
|
|
6036
|
+
"type": "array",
|
|
6037
|
+
"maxItems": 1,
|
|
6038
|
+
"items": {
|
|
6039
|
+
"type": "object",
|
|
6040
|
+
"additionalProperties": false,
|
|
6041
|
+
"properties": {
|
|
6042
|
+
"actions": {
|
|
6043
|
+
"description": "Defines actions that will be triggered when the action button is pressed",
|
|
6044
|
+
"type": "array",
|
|
6045
|
+
"items": {
|
|
6046
|
+
"$ref": "#/definitions/action"
|
|
6047
|
+
}
|
|
6048
|
+
},
|
|
6049
|
+
"text": {
|
|
6050
|
+
"type": "string",
|
|
6051
|
+
"description": "The action button text"
|
|
6052
|
+
}
|
|
6053
|
+
}
|
|
6054
|
+
}
|
|
5989
6055
|
}
|
|
5990
6056
|
}
|
|
5991
6057
|
}
|
|
@@ -7537,6 +7603,93 @@
|
|
|
7537
7603
|
}
|
|
7538
7604
|
}
|
|
7539
7605
|
},
|
|
7606
|
+
"actualTargetAdditionComponentUsage": {
|
|
7607
|
+
"type": "object",
|
|
7608
|
+
"required": [
|
|
7609
|
+
"usage",
|
|
7610
|
+
"type"
|
|
7611
|
+
],
|
|
7612
|
+
"properties": {
|
|
7613
|
+
"usage": {
|
|
7614
|
+
"description": "Represents the componentUsage of the component that will be created",
|
|
7615
|
+
"type": "string"
|
|
7616
|
+
},
|
|
7617
|
+
"id": {
|
|
7618
|
+
"description": "Represents the id of the created view or component",
|
|
7619
|
+
"type": "string"
|
|
7620
|
+
},
|
|
7621
|
+
"type": {
|
|
7622
|
+
"description": "Represents the type of the type Component",
|
|
7623
|
+
"type": "string",
|
|
7624
|
+
"enum": [
|
|
7625
|
+
"Component"
|
|
7626
|
+
]
|
|
7627
|
+
},
|
|
7628
|
+
"level": {
|
|
7629
|
+
"description": "Represents the level of the current component which is used to define the transition direction when navigate to this component",
|
|
7630
|
+
"type": "number",
|
|
7631
|
+
"multipleOf": 1
|
|
7632
|
+
}
|
|
7633
|
+
}
|
|
7634
|
+
},
|
|
7635
|
+
"actualTargetAdditionStandard": {
|
|
7636
|
+
"type": "object",
|
|
7637
|
+
"required": [
|
|
7638
|
+
"name"
|
|
7639
|
+
],
|
|
7640
|
+
"properties": {
|
|
7641
|
+
"name": {
|
|
7642
|
+
"description": "Represents the name of a view or component that will be created",
|
|
7643
|
+
"type": "string"
|
|
7644
|
+
},
|
|
7645
|
+
"id": {
|
|
7646
|
+
"description": "Represents the id of the created view or component",
|
|
7647
|
+
"type": "string"
|
|
7648
|
+
},
|
|
7649
|
+
"path": {
|
|
7650
|
+
"description": "Represents a prefix that is prepended in front of the view or component name",
|
|
7651
|
+
"type": "string"
|
|
7652
|
+
},
|
|
7653
|
+
"type": {
|
|
7654
|
+
"description": "Represents the type of the type View or Component",
|
|
7655
|
+
"type": "string",
|
|
7656
|
+
"enum": [
|
|
7657
|
+
"View",
|
|
7658
|
+
"Component"
|
|
7659
|
+
]
|
|
7660
|
+
},
|
|
7661
|
+
"level": {
|
|
7662
|
+
"description": "Represents the level of the current view/component which is used to define the transition direction when navigate to this view/component",
|
|
7663
|
+
"type": "number",
|
|
7664
|
+
"multipleOf": 1
|
|
7665
|
+
}
|
|
7666
|
+
}
|
|
7667
|
+
},
|
|
7668
|
+
"legacyTargetAddition": {
|
|
7669
|
+
"type": "object",
|
|
7670
|
+
"required": [
|
|
7671
|
+
"viewName"
|
|
7672
|
+
],
|
|
7673
|
+
"properties": {
|
|
7674
|
+
"viewName": {
|
|
7675
|
+
"description": "Represents the name of a view that will be created",
|
|
7676
|
+
"type": "string"
|
|
7677
|
+
},
|
|
7678
|
+
"viewId": {
|
|
7679
|
+
"description": "Represents the id of the created view",
|
|
7680
|
+
"type": "string"
|
|
7681
|
+
},
|
|
7682
|
+
"viewPath": {
|
|
7683
|
+
"description": "Represents a prefix that is prepended in front of the viewName",
|
|
7684
|
+
"type": "string"
|
|
7685
|
+
},
|
|
7686
|
+
"viewLevel": {
|
|
7687
|
+
"description": "Represents the level of the current view which is used to define the transition direction when navigate to this view",
|
|
7688
|
+
"type": "number",
|
|
7689
|
+
"multipleOf": 1
|
|
7690
|
+
}
|
|
7691
|
+
}
|
|
7692
|
+
},
|
|
7540
7693
|
"routeWithoutName": {
|
|
7541
7694
|
"description": "Represents the definition of route without the option 'name'. This is used when routes are defined in an object.",
|
|
7542
7695
|
"type": "object",
|
|
@@ -7579,6 +7732,58 @@
|
|
|
7579
7732
|
}
|
|
7580
7733
|
]
|
|
7581
7734
|
},
|
|
7735
|
+
"actualTargetAdditionStandardWithoutRequiredProp": {
|
|
7736
|
+
"type": "object",
|
|
7737
|
+
"properties": {
|
|
7738
|
+
"name": {
|
|
7739
|
+
"description": "Represents the name of a view or component that will be created",
|
|
7740
|
+
"type": "string"
|
|
7741
|
+
},
|
|
7742
|
+
"id": {
|
|
7743
|
+
"description": "Represents the id of the created view or component",
|
|
7744
|
+
"type": "string"
|
|
7745
|
+
},
|
|
7746
|
+
"path": {
|
|
7747
|
+
"description": "Represents a prefix that is prepended in front of the view or component name",
|
|
7748
|
+
"type": "string"
|
|
7749
|
+
},
|
|
7750
|
+
"type": {
|
|
7751
|
+
"description": "Represents the type of the type View or Component",
|
|
7752
|
+
"type": "string",
|
|
7753
|
+
"enum": [
|
|
7754
|
+
"View",
|
|
7755
|
+
"Component"
|
|
7756
|
+
]
|
|
7757
|
+
},
|
|
7758
|
+
"level": {
|
|
7759
|
+
"description": "Represents the level of the current view/component which is used to define the transition direction when navigate to this view/component",
|
|
7760
|
+
"type": "number",
|
|
7761
|
+
"multipleOf": 1
|
|
7762
|
+
}
|
|
7763
|
+
}
|
|
7764
|
+
},
|
|
7765
|
+
"legacyTargetAdditionWithoutRequiredProp": {
|
|
7766
|
+
"type": "object",
|
|
7767
|
+
"properties": {
|
|
7768
|
+
"viewName": {
|
|
7769
|
+
"description": "Represents the name of a view that will be created",
|
|
7770
|
+
"type": "string"
|
|
7771
|
+
},
|
|
7772
|
+
"viewId": {
|
|
7773
|
+
"description": "Represents the id of the created view",
|
|
7774
|
+
"type": "string"
|
|
7775
|
+
},
|
|
7776
|
+
"viewPath": {
|
|
7777
|
+
"description": "Represents a prefix that is prepended in front of the viewName",
|
|
7778
|
+
"type": "string"
|
|
7779
|
+
},
|
|
7780
|
+
"viewLevel": {
|
|
7781
|
+
"description": "Represents the level of the current view which is used to define the transition direction when navigate to this view",
|
|
7782
|
+
"type": "number",
|
|
7783
|
+
"multipleOf": 1
|
|
7784
|
+
}
|
|
7785
|
+
}
|
|
7786
|
+
},
|
|
7582
7787
|
"target": {
|
|
7583
7788
|
"description": "Represents the definition of each target",
|
|
7584
7789
|
"type": "object",
|
|
@@ -7618,11 +7823,6 @@
|
|
|
7618
7823
|
"description": "Represents the name of another target which will also be displayed once this target is displayed",
|
|
7619
7824
|
"type": "string"
|
|
7620
7825
|
},
|
|
7621
|
-
"viewLevel": {
|
|
7622
|
-
"description": "Represents the level of the current view which is used to define the transition direction when navigate to this view",
|
|
7623
|
-
"type": "number",
|
|
7624
|
-
"multipleOf": 1
|
|
7625
|
-
},
|
|
7626
7826
|
"transition": {
|
|
7627
7827
|
"description": "Represents the type of transition when navigating from previous view to this view",
|
|
7628
7828
|
"anyOf": [
|
|
@@ -7811,15 +8011,17 @@
|
|
|
7811
8011
|
"$ref": "#/definitions/routeTarget"
|
|
7812
8012
|
}
|
|
7813
8013
|
}
|
|
7814
|
-
},
|
|
7815
|
-
"viewPath": {
|
|
7816
|
-
"description": "Represents a prefix that is prepended in front of the viewName",
|
|
7817
|
-
"type": "string"
|
|
7818
8014
|
}
|
|
7819
8015
|
}
|
|
7820
8016
|
},
|
|
7821
8017
|
{
|
|
7822
8018
|
"$ref": "#/definitions/target"
|
|
8019
|
+
},
|
|
8020
|
+
{
|
|
8021
|
+
"$ref": "#/definitions/legacyTargetAdditionWithoutRequiredProp"
|
|
8022
|
+
},
|
|
8023
|
+
{
|
|
8024
|
+
"$ref": "#/definitions/actualTargetAdditionStandardWithoutRequiredProp"
|
|
7823
8025
|
}
|
|
7824
8026
|
]
|
|
7825
8027
|
},
|
|
@@ -7855,24 +8057,7 @@
|
|
|
7855
8057
|
"$ref": "#/definitions/target"
|
|
7856
8058
|
},
|
|
7857
8059
|
{
|
|
7858
|
-
"
|
|
7859
|
-
"required": [
|
|
7860
|
-
"viewName"
|
|
7861
|
-
],
|
|
7862
|
-
"properties": {
|
|
7863
|
-
"viewName": {
|
|
7864
|
-
"description": "Represents the name of a view that will be created",
|
|
7865
|
-
"type": "string"
|
|
7866
|
-
},
|
|
7867
|
-
"viewId": {
|
|
7868
|
-
"description": "Represents the id of the created view",
|
|
7869
|
-
"type": "string"
|
|
7870
|
-
},
|
|
7871
|
-
"viewPath": {
|
|
7872
|
-
"description": "Represents a prefix that is prepended in front of the viewName",
|
|
7873
|
-
"type": "string"
|
|
7874
|
-
}
|
|
7875
|
-
}
|
|
8060
|
+
"$ref": "#/definitions/legacyTargetAddition"
|
|
7876
8061
|
}
|
|
7877
8062
|
]
|
|
7878
8063
|
},
|
|
@@ -7884,56 +8069,10 @@
|
|
|
7884
8069
|
{
|
|
7885
8070
|
"oneOf": [
|
|
7886
8071
|
{
|
|
7887
|
-
"
|
|
7888
|
-
"required": [
|
|
7889
|
-
"name"
|
|
7890
|
-
],
|
|
7891
|
-
"properties": {
|
|
7892
|
-
"name": {
|
|
7893
|
-
"description": "Represents the name of a view or component that will be created",
|
|
7894
|
-
"type": "string"
|
|
7895
|
-
},
|
|
7896
|
-
"id": {
|
|
7897
|
-
"description": "Represents the id of the created view or component",
|
|
7898
|
-
"type": "string"
|
|
7899
|
-
},
|
|
7900
|
-
"path": {
|
|
7901
|
-
"description": "Represents a prefix that is prepended in front of the view or component name",
|
|
7902
|
-
"type": "string"
|
|
7903
|
-
},
|
|
7904
|
-
"type": {
|
|
7905
|
-
"description": "Represents the type of the type View or Component",
|
|
7906
|
-
"type": "string",
|
|
7907
|
-
"enum": [
|
|
7908
|
-
"View",
|
|
7909
|
-
"Component"
|
|
7910
|
-
]
|
|
7911
|
-
}
|
|
7912
|
-
}
|
|
8072
|
+
"$ref": "#/definitions/actualTargetAdditionStandard"
|
|
7913
8073
|
},
|
|
7914
8074
|
{
|
|
7915
|
-
"
|
|
7916
|
-
"required": [
|
|
7917
|
-
"usage",
|
|
7918
|
-
"type"
|
|
7919
|
-
],
|
|
7920
|
-
"properties": {
|
|
7921
|
-
"usage": {
|
|
7922
|
-
"description": "Represents the componentUsage of the component that will be created",
|
|
7923
|
-
"type": "string"
|
|
7924
|
-
},
|
|
7925
|
-
"id": {
|
|
7926
|
-
"description": "Represents the id of the created view or component",
|
|
7927
|
-
"type": "string"
|
|
7928
|
-
},
|
|
7929
|
-
"type": {
|
|
7930
|
-
"description": "Represents the type of the type Component",
|
|
7931
|
-
"type": "string",
|
|
7932
|
-
"enum": [
|
|
7933
|
-
"Component"
|
|
7934
|
-
]
|
|
7935
|
-
}
|
|
7936
|
-
}
|
|
8075
|
+
"$ref": "#/definitions/actualTargetAdditionComponentUsage"
|
|
7937
8076
|
}
|
|
7938
8077
|
]
|
|
7939
8078
|
}
|
package/schema_cil.json
CHANGED
|
@@ -43,7 +43,8 @@
|
|
|
43
43
|
"1.23.0",
|
|
44
44
|
"1.24.0",
|
|
45
45
|
"1.25.0",
|
|
46
|
-
"1.26.0"
|
|
46
|
+
"1.26.0",
|
|
47
|
+
"1.27.0"
|
|
47
48
|
]
|
|
48
49
|
},
|
|
49
50
|
"start_url": {
|
|
@@ -379,7 +380,8 @@
|
|
|
379
380
|
"1.9.0",
|
|
380
381
|
"1.10.0",
|
|
381
382
|
"1.11.0",
|
|
382
|
-
"1.12.0"
|
|
383
|
+
"1.12.0",
|
|
384
|
+
"1.13.0"
|
|
383
385
|
]
|
|
384
386
|
},
|
|
385
387
|
"resources": {
|
|
@@ -2434,6 +2436,93 @@
|
|
|
2434
2436
|
}
|
|
2435
2437
|
}
|
|
2436
2438
|
},
|
|
2439
|
+
"actualTargetAdditionComponentUsage": {
|
|
2440
|
+
"type": "object",
|
|
2441
|
+
"required": [
|
|
2442
|
+
"usage",
|
|
2443
|
+
"type"
|
|
2444
|
+
],
|
|
2445
|
+
"properties": {
|
|
2446
|
+
"usage": {
|
|
2447
|
+
"description": "Represents the componentUsage of the component that will be created",
|
|
2448
|
+
"type": "string"
|
|
2449
|
+
},
|
|
2450
|
+
"id": {
|
|
2451
|
+
"description": "Represents the id of the created view or component",
|
|
2452
|
+
"type": "string"
|
|
2453
|
+
},
|
|
2454
|
+
"type": {
|
|
2455
|
+
"description": "Represents the type of the type Component",
|
|
2456
|
+
"type": "string",
|
|
2457
|
+
"enum": [
|
|
2458
|
+
"Component"
|
|
2459
|
+
]
|
|
2460
|
+
},
|
|
2461
|
+
"level": {
|
|
2462
|
+
"description": "Represents the level of the current component which is used to define the transition direction when navigate to this component",
|
|
2463
|
+
"type": "number",
|
|
2464
|
+
"multipleOf": 1
|
|
2465
|
+
}
|
|
2466
|
+
}
|
|
2467
|
+
},
|
|
2468
|
+
"actualTargetAdditionStandard": {
|
|
2469
|
+
"type": "object",
|
|
2470
|
+
"required": [
|
|
2471
|
+
"name"
|
|
2472
|
+
],
|
|
2473
|
+
"properties": {
|
|
2474
|
+
"name": {
|
|
2475
|
+
"description": "Represents the name of a view or component that will be created",
|
|
2476
|
+
"type": "string"
|
|
2477
|
+
},
|
|
2478
|
+
"id": {
|
|
2479
|
+
"description": "Represents the id of the created view or component",
|
|
2480
|
+
"type": "string"
|
|
2481
|
+
},
|
|
2482
|
+
"path": {
|
|
2483
|
+
"description": "Represents a prefix that is prepended in front of the view or component name",
|
|
2484
|
+
"type": "string"
|
|
2485
|
+
},
|
|
2486
|
+
"type": {
|
|
2487
|
+
"description": "Represents the type of the type View or Component",
|
|
2488
|
+
"type": "string",
|
|
2489
|
+
"enum": [
|
|
2490
|
+
"View",
|
|
2491
|
+
"Component"
|
|
2492
|
+
]
|
|
2493
|
+
},
|
|
2494
|
+
"level": {
|
|
2495
|
+
"description": "Represents the level of the current view/component which is used to define the transition direction when navigate to this view/component",
|
|
2496
|
+
"type": "number",
|
|
2497
|
+
"multipleOf": 1
|
|
2498
|
+
}
|
|
2499
|
+
}
|
|
2500
|
+
},
|
|
2501
|
+
"legacyTargetAddition": {
|
|
2502
|
+
"type": "object",
|
|
2503
|
+
"required": [
|
|
2504
|
+
"viewName"
|
|
2505
|
+
],
|
|
2506
|
+
"properties": {
|
|
2507
|
+
"viewName": {
|
|
2508
|
+
"description": "Represents the name of a view that will be created",
|
|
2509
|
+
"type": "string"
|
|
2510
|
+
},
|
|
2511
|
+
"viewId": {
|
|
2512
|
+
"description": "Represents the id of the created view",
|
|
2513
|
+
"type": "string"
|
|
2514
|
+
},
|
|
2515
|
+
"viewPath": {
|
|
2516
|
+
"description": "Represents a prefix that is prepended in front of the viewName",
|
|
2517
|
+
"type": "string"
|
|
2518
|
+
},
|
|
2519
|
+
"viewLevel": {
|
|
2520
|
+
"description": "Represents the level of the current view which is used to define the transition direction when navigate to this view",
|
|
2521
|
+
"type": "number",
|
|
2522
|
+
"multipleOf": 1
|
|
2523
|
+
}
|
|
2524
|
+
}
|
|
2525
|
+
},
|
|
2437
2526
|
"routeWithoutName": {
|
|
2438
2527
|
"description": "Represents the definition of route without the option 'name'. This is used when routes are defined in an object.",
|
|
2439
2528
|
"type": "object",
|
|
@@ -2476,6 +2565,58 @@
|
|
|
2476
2565
|
}
|
|
2477
2566
|
]
|
|
2478
2567
|
},
|
|
2568
|
+
"actualTargetAdditionStandardWithoutRequiredProp": {
|
|
2569
|
+
"type": "object",
|
|
2570
|
+
"properties": {
|
|
2571
|
+
"name": {
|
|
2572
|
+
"description": "Represents the name of a view or component that will be created",
|
|
2573
|
+
"type": "string"
|
|
2574
|
+
},
|
|
2575
|
+
"id": {
|
|
2576
|
+
"description": "Represents the id of the created view or component",
|
|
2577
|
+
"type": "string"
|
|
2578
|
+
},
|
|
2579
|
+
"path": {
|
|
2580
|
+
"description": "Represents a prefix that is prepended in front of the view or component name",
|
|
2581
|
+
"type": "string"
|
|
2582
|
+
},
|
|
2583
|
+
"type": {
|
|
2584
|
+
"description": "Represents the type of the type View or Component",
|
|
2585
|
+
"type": "string",
|
|
2586
|
+
"enum": [
|
|
2587
|
+
"View",
|
|
2588
|
+
"Component"
|
|
2589
|
+
]
|
|
2590
|
+
},
|
|
2591
|
+
"level": {
|
|
2592
|
+
"description": "Represents the level of the current view/component which is used to define the transition direction when navigate to this view/component",
|
|
2593
|
+
"type": "number",
|
|
2594
|
+
"multipleOf": 1
|
|
2595
|
+
}
|
|
2596
|
+
}
|
|
2597
|
+
},
|
|
2598
|
+
"legacyTargetAdditionWithoutRequiredProp": {
|
|
2599
|
+
"type": "object",
|
|
2600
|
+
"properties": {
|
|
2601
|
+
"viewName": {
|
|
2602
|
+
"description": "Represents the name of a view that will be created",
|
|
2603
|
+
"type": "string"
|
|
2604
|
+
},
|
|
2605
|
+
"viewId": {
|
|
2606
|
+
"description": "Represents the id of the created view",
|
|
2607
|
+
"type": "string"
|
|
2608
|
+
},
|
|
2609
|
+
"viewPath": {
|
|
2610
|
+
"description": "Represents a prefix that is prepended in front of the viewName",
|
|
2611
|
+
"type": "string"
|
|
2612
|
+
},
|
|
2613
|
+
"viewLevel": {
|
|
2614
|
+
"description": "Represents the level of the current view which is used to define the transition direction when navigate to this view",
|
|
2615
|
+
"type": "number",
|
|
2616
|
+
"multipleOf": 1
|
|
2617
|
+
}
|
|
2618
|
+
}
|
|
2619
|
+
},
|
|
2479
2620
|
"target": {
|
|
2480
2621
|
"description": "Represents the definition of each target",
|
|
2481
2622
|
"type": "object",
|
|
@@ -3023,15 +3164,17 @@
|
|
|
3023
3164
|
"$ref": "#/definitions/routeTarget"
|
|
3024
3165
|
}
|
|
3025
3166
|
}
|
|
3026
|
-
},
|
|
3027
|
-
"viewPath": {
|
|
3028
|
-
"description": "Represents a prefix that is prepended in front of the viewName",
|
|
3029
|
-
"type": "string"
|
|
3030
3167
|
}
|
|
3031
3168
|
}
|
|
3032
3169
|
},
|
|
3033
3170
|
{
|
|
3034
3171
|
"$ref": "#/definitions/target"
|
|
3172
|
+
},
|
|
3173
|
+
{
|
|
3174
|
+
"$ref": "#/definitions/legacyTargetAdditionWithoutRequiredProp"
|
|
3175
|
+
},
|
|
3176
|
+
{
|
|
3177
|
+
"$ref": "#/definitions/actualTargetAdditionStandardWithoutRequiredProp"
|
|
3035
3178
|
}
|
|
3036
3179
|
]
|
|
3037
3180
|
},
|
|
@@ -3067,24 +3210,7 @@
|
|
|
3067
3210
|
"$ref": "#/definitions/target"
|
|
3068
3211
|
},
|
|
3069
3212
|
{
|
|
3070
|
-
"
|
|
3071
|
-
"required": [
|
|
3072
|
-
"viewName"
|
|
3073
|
-
],
|
|
3074
|
-
"properties": {
|
|
3075
|
-
"viewName": {
|
|
3076
|
-
"description": "Represents the name of a view that will be created",
|
|
3077
|
-
"type": "string"
|
|
3078
|
-
},
|
|
3079
|
-
"viewId": {
|
|
3080
|
-
"description": "Represents the id of the created view",
|
|
3081
|
-
"type": "string"
|
|
3082
|
-
},
|
|
3083
|
-
"viewPath": {
|
|
3084
|
-
"description": "Represents a prefix that is prepended in front of the viewName",
|
|
3085
|
-
"type": "string"
|
|
3086
|
-
}
|
|
3087
|
-
}
|
|
3213
|
+
"$ref": "#/definitions/legacyTargetAddition"
|
|
3088
3214
|
}
|
|
3089
3215
|
]
|
|
3090
3216
|
},
|
|
@@ -3096,56 +3222,10 @@
|
|
|
3096
3222
|
{
|
|
3097
3223
|
"oneOf": [
|
|
3098
3224
|
{
|
|
3099
|
-
"
|
|
3100
|
-
"required": [
|
|
3101
|
-
"name"
|
|
3102
|
-
],
|
|
3103
|
-
"properties": {
|
|
3104
|
-
"name": {
|
|
3105
|
-
"description": "Represents the name of a view or component that will be created",
|
|
3106
|
-
"type": "string"
|
|
3107
|
-
},
|
|
3108
|
-
"id": {
|
|
3109
|
-
"description": "Represents the id of the created view or component",
|
|
3110
|
-
"type": "string"
|
|
3111
|
-
},
|
|
3112
|
-
"path": {
|
|
3113
|
-
"description": "Represents a prefix that is prepended in front of the view or component name",
|
|
3114
|
-
"type": "string"
|
|
3115
|
-
},
|
|
3116
|
-
"type": {
|
|
3117
|
-
"description": "Represents the type of the type View or Component",
|
|
3118
|
-
"type": "string",
|
|
3119
|
-
"enum": [
|
|
3120
|
-
"View",
|
|
3121
|
-
"Component"
|
|
3122
|
-
]
|
|
3123
|
-
}
|
|
3124
|
-
}
|
|
3225
|
+
"$ref": "#/definitions/actualTargetAdditionStandard"
|
|
3125
3226
|
},
|
|
3126
3227
|
{
|
|
3127
|
-
"
|
|
3128
|
-
"required": [
|
|
3129
|
-
"usage",
|
|
3130
|
-
"type"
|
|
3131
|
-
],
|
|
3132
|
-
"properties": {
|
|
3133
|
-
"usage": {
|
|
3134
|
-
"description": "Represents the componentUsage of the component that will be created",
|
|
3135
|
-
"type": "string"
|
|
3136
|
-
},
|
|
3137
|
-
"id": {
|
|
3138
|
-
"description": "Represents the id of the created view or component",
|
|
3139
|
-
"type": "string"
|
|
3140
|
-
},
|
|
3141
|
-
"type": {
|
|
3142
|
-
"description": "Represents the type of the type Component",
|
|
3143
|
-
"type": "string",
|
|
3144
|
-
"enum": [
|
|
3145
|
-
"Component"
|
|
3146
|
-
]
|
|
3147
|
-
}
|
|
3148
|
-
}
|
|
3228
|
+
"$ref": "#/definitions/actualTargetAdditionComponentUsage"
|
|
3149
3229
|
}
|
|
3150
3230
|
]
|
|
3151
3231
|
}
|
package/types/manifest.d.ts
CHANGED
|
@@ -175,7 +175,8 @@ export type JSONSchemaForSAPUI5Namespace = {
|
|
|
175
175
|
| "1.14.0"
|
|
176
176
|
| "1.15.0"
|
|
177
177
|
| "1.16.0"
|
|
178
|
-
| "1.17.0"
|
|
178
|
+
| "1.17.0"
|
|
179
|
+
| "1.18.0";
|
|
179
180
|
resources?: Resource;
|
|
180
181
|
/**
|
|
181
182
|
* Represents the explicit usage declaration for UI5 reuse components
|
|
@@ -704,7 +705,9 @@ export interface SAPJSONSchemaForWebApplicationManifestFile {
|
|
|
704
705
|
| "1.58.0"
|
|
705
706
|
| "1.59.0"
|
|
706
707
|
| "1.60.0"
|
|
707
|
-
| "1.61.0"
|
|
708
|
+
| "1.61.0"
|
|
709
|
+
| "1.62.0"
|
|
710
|
+
| "1.63.0";
|
|
708
711
|
/**
|
|
709
712
|
* Represents the URL that the developer would prefer the user agent load when the user launches the web application
|
|
710
713
|
*/
|
|
@@ -1676,10 +1679,6 @@ export interface Target {
|
|
|
1676
1679
|
* Represents the name of another target which will also be displayed once this target is displayed
|
|
1677
1680
|
*/
|
|
1678
1681
|
parent?: string;
|
|
1679
|
-
/**
|
|
1680
|
-
* Represents the level of the current view which is used to define the transition direction when navigate to this view
|
|
1681
|
-
*/
|
|
1682
|
-
viewLevel?: number;
|
|
1683
1682
|
/**
|
|
1684
1683
|
* Represents the type of transition when navigating from previous view to this view
|
|
1685
1684
|
*/
|
|
@@ -1771,12 +1770,10 @@ export interface Routing {
|
|
|
1771
1770
|
*/
|
|
1772
1771
|
target: [] | [string | RouteTargetObject] | string | RouteTargetObject;
|
|
1773
1772
|
};
|
|
1774
|
-
/**
|
|
1775
|
-
* Represents a prefix that is prepended in front of the viewName
|
|
1776
|
-
*/
|
|
1777
|
-
viewPath?: string;
|
|
1778
1773
|
[k: string]: unknown;
|
|
1779
|
-
} & Target
|
|
1774
|
+
} & Target &
|
|
1775
|
+
LegacyTargetAdditionWithoutRequiredProp &
|
|
1776
|
+
ActualTargetAdditionStandardWithoutRequiredProp;
|
|
1780
1777
|
routes?:
|
|
1781
1778
|
| Route[]
|
|
1782
1779
|
| {
|
|
@@ -1791,61 +1788,114 @@ export interface Routing {
|
|
|
1791
1788
|
* via the `patternProperty` "[\s\S]*".
|
|
1792
1789
|
*/
|
|
1793
1790
|
[k: string]:
|
|
1794
|
-
| (Target &
|
|
1795
|
-
|
|
1796
|
-
* Represents the name of a view that will be created
|
|
1797
|
-
*/
|
|
1798
|
-
viewName: string;
|
|
1799
|
-
/**
|
|
1800
|
-
* Represents the id of the created view
|
|
1801
|
-
*/
|
|
1802
|
-
viewId?: string;
|
|
1803
|
-
/**
|
|
1804
|
-
* Represents a prefix that is prepended in front of the viewName
|
|
1805
|
-
*/
|
|
1806
|
-
viewPath?: string;
|
|
1807
|
-
[k: string]: unknown;
|
|
1808
|
-
})
|
|
1809
|
-
| (Target &
|
|
1810
|
-
(
|
|
1811
|
-
| {
|
|
1812
|
-
/**
|
|
1813
|
-
* Represents the name of a view or component that will be created
|
|
1814
|
-
*/
|
|
1815
|
-
name: string;
|
|
1816
|
-
/**
|
|
1817
|
-
* Represents the id of the created view or component
|
|
1818
|
-
*/
|
|
1819
|
-
id?: string;
|
|
1820
|
-
/**
|
|
1821
|
-
* Represents a prefix that is prepended in front of the view or component name
|
|
1822
|
-
*/
|
|
1823
|
-
path?: string;
|
|
1824
|
-
/**
|
|
1825
|
-
* Represents the type of the type View or Component
|
|
1826
|
-
*/
|
|
1827
|
-
type?: "View" | "Component";
|
|
1828
|
-
[k: string]: unknown;
|
|
1829
|
-
}
|
|
1830
|
-
| {
|
|
1831
|
-
/**
|
|
1832
|
-
* Represents the componentUsage of the component that will be created
|
|
1833
|
-
*/
|
|
1834
|
-
usage: string;
|
|
1835
|
-
/**
|
|
1836
|
-
* Represents the id of the created view or component
|
|
1837
|
-
*/
|
|
1838
|
-
id?: string;
|
|
1839
|
-
/**
|
|
1840
|
-
* Represents the type of the type Component
|
|
1841
|
-
*/
|
|
1842
|
-
type: "Component";
|
|
1843
|
-
[k: string]: unknown;
|
|
1844
|
-
}
|
|
1845
|
-
));
|
|
1791
|
+
| (Target & LegacyTargetAddition)
|
|
1792
|
+
| (Target & (ActualTargetAdditionStandard | ActualTargetAdditionComponentUsage));
|
|
1846
1793
|
};
|
|
1847
1794
|
[k: string]: unknown;
|
|
1848
1795
|
}
|
|
1796
|
+
export interface LegacyTargetAdditionWithoutRequiredProp {
|
|
1797
|
+
/**
|
|
1798
|
+
* Represents the name of a view that will be created
|
|
1799
|
+
*/
|
|
1800
|
+
viewName?: string;
|
|
1801
|
+
/**
|
|
1802
|
+
* Represents the id of the created view
|
|
1803
|
+
*/
|
|
1804
|
+
viewId?: string;
|
|
1805
|
+
/**
|
|
1806
|
+
* Represents a prefix that is prepended in front of the viewName
|
|
1807
|
+
*/
|
|
1808
|
+
viewPath?: string;
|
|
1809
|
+
/**
|
|
1810
|
+
* Represents the level of the current view which is used to define the transition direction when navigate to this view
|
|
1811
|
+
*/
|
|
1812
|
+
viewLevel?: number;
|
|
1813
|
+
[k: string]: unknown;
|
|
1814
|
+
}
|
|
1815
|
+
export interface ActualTargetAdditionStandardWithoutRequiredProp {
|
|
1816
|
+
/**
|
|
1817
|
+
* Represents the name of a view or component that will be created
|
|
1818
|
+
*/
|
|
1819
|
+
name?: string;
|
|
1820
|
+
/**
|
|
1821
|
+
* Represents the id of the created view or component
|
|
1822
|
+
*/
|
|
1823
|
+
id?: string;
|
|
1824
|
+
/**
|
|
1825
|
+
* Represents a prefix that is prepended in front of the view or component name
|
|
1826
|
+
*/
|
|
1827
|
+
path?: string;
|
|
1828
|
+
/**
|
|
1829
|
+
* Represents the type of the type View or Component
|
|
1830
|
+
*/
|
|
1831
|
+
type?: "View" | "Component";
|
|
1832
|
+
/**
|
|
1833
|
+
* Represents the level of the current view/component which is used to define the transition direction when navigate to this view/component
|
|
1834
|
+
*/
|
|
1835
|
+
level?: number;
|
|
1836
|
+
[k: string]: unknown;
|
|
1837
|
+
}
|
|
1838
|
+
export interface LegacyTargetAddition {
|
|
1839
|
+
/**
|
|
1840
|
+
* Represents the name of a view that will be created
|
|
1841
|
+
*/
|
|
1842
|
+
viewName: string;
|
|
1843
|
+
/**
|
|
1844
|
+
* Represents the id of the created view
|
|
1845
|
+
*/
|
|
1846
|
+
viewId?: string;
|
|
1847
|
+
/**
|
|
1848
|
+
* Represents a prefix that is prepended in front of the viewName
|
|
1849
|
+
*/
|
|
1850
|
+
viewPath?: string;
|
|
1851
|
+
/**
|
|
1852
|
+
* Represents the level of the current view which is used to define the transition direction when navigate to this view
|
|
1853
|
+
*/
|
|
1854
|
+
viewLevel?: number;
|
|
1855
|
+
[k: string]: unknown;
|
|
1856
|
+
}
|
|
1857
|
+
export interface ActualTargetAdditionStandard {
|
|
1858
|
+
/**
|
|
1859
|
+
* Represents the name of a view or component that will be created
|
|
1860
|
+
*/
|
|
1861
|
+
name: string;
|
|
1862
|
+
/**
|
|
1863
|
+
* Represents the id of the created view or component
|
|
1864
|
+
*/
|
|
1865
|
+
id?: string;
|
|
1866
|
+
/**
|
|
1867
|
+
* Represents a prefix that is prepended in front of the view or component name
|
|
1868
|
+
*/
|
|
1869
|
+
path?: string;
|
|
1870
|
+
/**
|
|
1871
|
+
* Represents the type of the type View or Component
|
|
1872
|
+
*/
|
|
1873
|
+
type?: "View" | "Component";
|
|
1874
|
+
/**
|
|
1875
|
+
* Represents the level of the current view/component which is used to define the transition direction when navigate to this view/component
|
|
1876
|
+
*/
|
|
1877
|
+
level?: number;
|
|
1878
|
+
[k: string]: unknown;
|
|
1879
|
+
}
|
|
1880
|
+
export interface ActualTargetAdditionComponentUsage {
|
|
1881
|
+
/**
|
|
1882
|
+
* Represents the componentUsage of the component that will be created
|
|
1883
|
+
*/
|
|
1884
|
+
usage: string;
|
|
1885
|
+
/**
|
|
1886
|
+
* Represents the id of the created view or component
|
|
1887
|
+
*/
|
|
1888
|
+
id?: string;
|
|
1889
|
+
/**
|
|
1890
|
+
* Represents the type of the type Component
|
|
1891
|
+
*/
|
|
1892
|
+
type: "Component";
|
|
1893
|
+
/**
|
|
1894
|
+
* Represents the level of the current component which is used to define the transition direction when navigate to this component
|
|
1895
|
+
*/
|
|
1896
|
+
level?: number;
|
|
1897
|
+
[k: string]: unknown;
|
|
1898
|
+
}
|
|
1849
1899
|
/**
|
|
1850
1900
|
* Represents ABAP platform specific attributes
|
|
1851
1901
|
*/
|