@sap/ux-specification 1.120.15 → 1.120.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/CHANGELOG.md +49 -0
  2. package/dist/documentation/v2/v2-AnalyticalListPage.html +2 -2
  3. package/dist/documentation/v2/v2-ApplicationV2.html +2 -2
  4. package/dist/documentation/v2/v2-ListReport.html +2 -2
  5. package/dist/documentation/v2/v2-ObjectPage.html +2 -2
  6. package/dist/documentation/v2/v2-OverviewPage.html +2 -2
  7. package/dist/documentation/v4/v4-ApplicationV4.html +2 -2
  8. package/dist/documentation/v4/v4-BuildingBlocks.html +2 -2
  9. package/dist/documentation/v4/v4-FreestylePage.html +2 -2
  10. package/dist/documentation/v4/v4-ListReport.html +2 -2
  11. package/dist/documentation/v4/v4-ObjectPage.html +2 -2
  12. package/dist/index-min.js +53 -53
  13. package/dist/index-min.js.map +4 -4
  14. package/dist/schemas/v4/ApplicationV4.json +71 -0
  15. package/dist/schemas/v4/BuildingBlocksConfig.json +495 -164
  16. package/dist/specification/package.json +9 -9
  17. package/dist/specification/src/api.d.ts +8 -0
  18. package/dist/specification/src/api.d.ts.map +1 -1
  19. package/dist/specification/src/api.js +11 -3
  20. package/dist/specification/src/api.js.map +1 -1
  21. package/dist/specification/src/sync/v4/application.d.ts +2 -1
  22. package/dist/specification/src/sync/v4/application.d.ts.map +1 -1
  23. package/dist/specification/src/sync/v4/application.js +7 -0
  24. package/dist/specification/src/sync/v4/application.js.map +1 -1
  25. package/dist/specification/src/sync/v4/export/utils.d.ts.map +1 -1
  26. package/dist/specification/src/sync/v4/export/utils.js +3 -0
  27. package/dist/specification/src/sync/v4/export/utils.js.map +1 -1
  28. package/dist/types/src/apiTypes.d.ts +14 -9
  29. package/dist/types/src/apiTypes.d.ts.map +1 -1
  30. package/dist/types/src/apiTypes.js +8 -7
  31. package/dist/types/src/apiTypes.js.map +1 -1
  32. package/dist/types/src/v4/application.d.ts +5 -1
  33. package/dist/types/src/v4/application.d.ts.map +1 -1
  34. package/package.json +10 -10
@@ -41,6 +41,10 @@
41
41
  "$ref": "#/definitions/ControllerExtensions",
42
42
  "description": "Controller extensions allow users to extensiate default behaviour with custom controllers code."
43
43
  },
44
+ "dependencies": {
45
+ "$ref": "#/definitions/Dependencies",
46
+ "description": "Dependencies of the application."
47
+ },
44
48
  "title": {
45
49
  "description": "To change the application header, in your project artifacts, change the i18n property file\nfor your app under webapp/i18n/i18n.properties ->appTitle. Then, refer to the title as\n{{appTitle}} in the sap.app section of the manifest file.",
46
50
  "i18nClassification": "TIT: Title of the application",
@@ -118,6 +122,73 @@
118
122
  },
119
123
  "additionalProperties": false
120
124
  },
125
+ "Dependencies": {
126
+ "type": "object",
127
+ "properties": {
128
+ "minUI5Version": {
129
+ "description": "Represents the minimum version of SAP UI5 that your component requires. It is either a specific version or an array of versions where each major version can only be included once. If array contains more than one version and if version 1 is included it must be at least 1.120.x.",
130
+ "anyOf": [
131
+ {
132
+ "type": "array",
133
+ "items": {
134
+ "type": "string"
135
+ }
136
+ },
137
+ {
138
+ "type": "string"
139
+ }
140
+ ]
141
+ },
142
+ "libs": {
143
+ "description": "Represents the id (namespace) of the libraries that should be loaded by UI5 Core to be used in your component",
144
+ "type": "object",
145
+ "additionalProperties": {
146
+ "$ref": "#/definitions/Lib"
147
+ }
148
+ },
149
+ "components": {
150
+ "description": "Represents the id (namespace) of the components that should be loaded by UI5 Core to be used in your component",
151
+ "type": "object",
152
+ "additionalProperties": {
153
+ "$ref": "#/definitions/Component"
154
+ }
155
+ }
156
+ },
157
+ "additionalProperties": false,
158
+ "required": [
159
+ "minUI5Version"
160
+ ]
161
+ },
162
+ "Lib": {
163
+ "description": "Represents sapui5 library name\n\nThis interface was referenced by `undefined`'s JSON-Schema definition\nvia the `patternProperty` \"^([a-z][a-z0-9]{0,39})(\\.[a-z][a-z0-9]{0,39})*$\".",
164
+ "type": "object",
165
+ "additionalProperties": {},
166
+ "properties": {
167
+ "minVersion": {
168
+ "description": "Represents minimal version of ui5 library",
169
+ "type": "string"
170
+ },
171
+ "lazy": {
172
+ "description": "Represents Indicator to lazy loading lib",
173
+ "type": "boolean"
174
+ }
175
+ }
176
+ },
177
+ "Component": {
178
+ "description": "Represents sapui5 component name\n\nThis interface was referenced by `undefined`'s JSON-Schema definition\nvia the `patternProperty` \"^([a-zA-Z_$][a-zA-Z0-9_$]{0,39}\\.)*([a-zA-Z_$][a-zA-Z0-9_$]{0,39})$\".",
179
+ "type": "object",
180
+ "additionalProperties": {},
181
+ "properties": {
182
+ "minVersion": {
183
+ "description": "Represents minimal version of ui5 component",
184
+ "type": "string"
185
+ },
186
+ "lazy": {
187
+ "description": "Represents Indicator to lazy loading component",
188
+ "type": "boolean"
189
+ }
190
+ }
191
+ },
121
192
  "PagesV4": {
122
193
  "type": "object",
123
194
  "additionalProperties": {