@sap/ux-specification 1.124.21 → 1.124.23
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 +31 -0
- package/dist/documentation/v2/v2-AnalyticalListPage.html +2 -2
- package/dist/documentation/v2/v2-ApplicationV2.html +2 -2
- package/dist/documentation/v2/v2-ListReport.html +2 -2
- package/dist/documentation/v2/v2-ListReportNew.html +2 -2
- package/dist/documentation/v2/v2-ObjectPage.html +2 -2
- package/dist/documentation/v2/v2-OverviewPage.html +2 -2
- package/dist/documentation/v4/v4-ApplicationV4.html +2 -2
- package/dist/documentation/v4/v4-BuildingBlocks.html +2 -2
- package/dist/documentation/v4/v4-FreestylePage.html +2 -2
- package/dist/documentation/v4/v4-ListReport.html +2 -2
- package/dist/documentation/v4/v4-ObjectPage.html +2 -2
- package/dist/index-min.js +110 -110
- package/dist/index-min.js.map +4 -4
- package/dist/schemas/v2/ListReportNewConfig.json +42 -0
- package/dist/specification/package.json +9 -9
- package/dist/specification/scripts/extractDocu.js +65 -56
- package/dist/specification/scripts/extractDocu.js.map +1 -1
- package/dist/specification/scripts/schema/to-json-schema.d.ts.map +1 -1
- package/dist/specification/scripts/schema/to-json-schema.js +3 -2
- package/dist/specification/scripts/schema/to-json-schema.js.map +1 -1
- package/dist/specification/src/api.js +2 -2
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.d.ts +1 -1
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.js +1 -2
- package/dist/specification/src/sync/v2/generate/schemaAdaptation.js.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Action.d.ts +5 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Action.d.ts.map +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Action.js +24 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/Action.js.map +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/ListHeader.d.ts +12 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/ListHeader.d.ts.map +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/ListHeader.js +58 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/ListHeader.js.map +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.d.ts +7 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.d.ts.map +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.js +23 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/controls/index.js.map +1 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/pages/ListReportNew.d.ts +2 -0
- package/dist/specification/src/sync/v2/genericSchemaHandling/pages/ListReportNew.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/pages/ListReportNew.js +15 -2
- package/dist/specification/src/sync/v2/genericSchemaHandling/pages/ListReportNew.js.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/pages/pageAccess.d.ts +3 -3
- package/dist/specification/src/sync/v2/genericSchemaHandling/pages/pageAccess.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/genericSchemaHandling/pages/pageAccess.js +10 -8
- package/dist/specification/src/sync/v2/genericSchemaHandling/pages/pageAccess.js.map +1 -1
- package/dist/specification/src/sync/v2/import/importPage.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/import/importPage.js +1 -2
- package/dist/specification/src/sync/v2/import/importPage.js.map +1 -1
- package/dist/specification/src/sync/v2/utils.d.ts +5 -6
- package/dist/specification/src/sync/v2/utils.d.ts.map +1 -1
- package/dist/specification/src/sync/v2/utils.js +8 -17
- package/dist/specification/src/sync/v2/utils.js.map +1 -1
- package/dist/types/src/common/types.d.ts +1 -5
- package/dist/types/src/common/types.d.ts.map +1 -1
- package/dist/types/src/common/types.js.map +1 -1
- package/package.json +9 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap/ux-specification",
|
|
3
|
-
"version": "1.124.
|
|
3
|
+
"version": "1.124.23",
|
|
4
4
|
"displayName": "SAP Fiori tools - Specification",
|
|
5
5
|
"description": "SAP Fiori tools - Specification",
|
|
6
6
|
"files": [
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"bundle": "node esbuild",
|
|
22
22
|
"bundle:dev": "node esbuild --minify=false",
|
|
23
23
|
"bundle:watch": "node esbuild --watch --stats --minify=false",
|
|
24
|
-
"build": "npm-run-all -l -s clean:before -s compile -p create-json-schemas macros copy-templates -p copy-json-schemas htmlV2 htmlV4 -s bundle",
|
|
24
|
+
"build": "npm-run-all -l -s clean:before -s compile -p create-json-schemas macros copy-templates -p copy-json-schemas -s htmlV2 htmlV4 -s bundle",
|
|
25
25
|
"build:dev": "npm-run-all -l -s clean:before -s compile -p create-json-schemas copy-templates -s copy-json-schemas bundle:dev",
|
|
26
|
-
"build:doc": "npm-run-all -l -s clean:doc -s compile -
|
|
26
|
+
"build:doc": "npm-run-all -l -s clean:doc -s compile -s htmlV2 htmlV4 -s bundle",
|
|
27
27
|
"build:schemas": "npm-run-all -l -s create-json-schemas copy-json-schemas",
|
|
28
28
|
"build:snap": "yarn build:dev && yarn update-snapshots",
|
|
29
29
|
"create-json-schemas": "ts-node ./scripts/schema/index.ts ",
|
|
@@ -44,18 +44,18 @@
|
|
|
44
44
|
"test:ci": "jest --ci --forceExit --detectOpenHandles && node ../../scripts/scov.js reports/test/unit/coverage/lcov.info",
|
|
45
45
|
"update-snapshots": "jest --updateSnapshot",
|
|
46
46
|
"watch": "npm-run-all -l -s clean:before -p compile create-json-schemas macros copy-templates -p copy-json-schemas -s bundle:watch",
|
|
47
|
-
"watch:doc": "npm-run-all -l -s clean:doc -s compile -
|
|
47
|
+
"watch:doc": "npm-run-all -l -s clean:doc -s compile -s htmlV2 htmlV4 -s bundle:watch"
|
|
48
48
|
},
|
|
49
49
|
"publisher": "SAPSE",
|
|
50
50
|
"license": "SEE LICENSE IN LICENSE",
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@sap-ux/fe-fpm-writer": "0.
|
|
52
|
+
"@sap-ux/fe-fpm-writer": "0.36.0",
|
|
53
53
|
"@sap-ux/vocabularies-types": "0.13.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@sap-ux/annotation-converter": "0.10.3",
|
|
57
57
|
"@sap-ux/edmx-parser": "0.8.2",
|
|
58
|
-
"@sap/ux-specification-types": "1.124.
|
|
58
|
+
"@sap/ux-specification-types": "1.124.23",
|
|
59
59
|
"@sapui5/types": "latest-1.124",
|
|
60
60
|
"@types/d3": "7.4.3",
|
|
61
61
|
"@types/jquery": "3.5.31",
|
|
@@ -63,13 +63,13 @@
|
|
|
63
63
|
"@ui5/flexibility-utils": "0.1.3",
|
|
64
64
|
"@xml-tools/ast": "5.0.5",
|
|
65
65
|
"@xml-tools/parser": "1.0.11",
|
|
66
|
-
"axios": "1.
|
|
66
|
+
"axios": "1.11.0",
|
|
67
67
|
"copyfiles": "2.4.1",
|
|
68
68
|
"d3": "7.9.0",
|
|
69
69
|
"deepmerge": "4.3.1",
|
|
70
70
|
"ejs": "3.1.10",
|
|
71
71
|
"excel4node": "1.8.2",
|
|
72
|
-
"i18next": "
|
|
72
|
+
"i18next": "25.3.0",
|
|
73
73
|
"jquery": "3.7.1",
|
|
74
74
|
"jsdom": "25.0.1",
|
|
75
75
|
"lodash.unset": "4.5.2",
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"path": "0.12.7",
|
|
78
78
|
"reflect-metadata": "0.2.2",
|
|
79
79
|
"semver": "7.7.2",
|
|
80
|
-
"typescript-json-schema": "0.
|
|
80
|
+
"typescript-json-schema": "0.65.1",
|
|
81
81
|
"xml-js": "1.6.11"
|
|
82
82
|
},
|
|
83
83
|
"husky": {
|