@sap-ux/control-property-editor 0.7.16 → 0.7.18
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 +12 -0
- package/dist/app.css +1 -1
- package/dist/app.css.map +3 -3
- package/dist/app.js +44 -44
- package/dist/app.js.map +4 -4
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/eslint.config.js +1 -1
- package/package.json +4 -4
- package/src/i18n.ts +2 -1
- package/test/unit/panels/quick-actions/QuickActionList.test.tsx +1 -1
package/eslint.config.js
CHANGED
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"displayName": "Control Property Editor",
|
|
4
4
|
"description": "Control Property Editor",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
|
-
"version": "0.7.
|
|
6
|
+
"version": "0.7.18",
|
|
7
7
|
"main": "dist/app.js",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"source-map-support": "0.5.16",
|
|
41
41
|
"stream-browserify": "3.0.0",
|
|
42
42
|
"ts-import-plugin": "3.0.0",
|
|
43
|
-
"ts-jest": "29.4.
|
|
43
|
+
"ts-jest": "29.4.6",
|
|
44
44
|
"postcss-modules": "6.0.1",
|
|
45
45
|
"ejs": "3.1.10",
|
|
46
46
|
"@ui5/fs": "3.0.4",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"esbuild-plugin-copy": "2.1.1",
|
|
49
49
|
"@esbuild-plugins/node-modules-polyfill": "0.2.2",
|
|
50
50
|
"uuid": "11.0.5",
|
|
51
|
-
"@sap-ux/ui-components": "1.27.
|
|
52
|
-
"@sap-ux-private/control-property-editor-common": "0.7.
|
|
51
|
+
"@sap-ux/ui-components": "1.27.9",
|
|
52
|
+
"@sap-ux-private/control-property-editor-common": "0.7.7"
|
|
53
53
|
},
|
|
54
54
|
"engines": {
|
|
55
55
|
"node": ">=20.x"
|
package/src/i18n.ts
CHANGED
|
@@ -273,7 +273,7 @@ describe('QuickActionList', () => {
|
|
|
273
273
|
quickAction2.click();
|
|
274
274
|
quickAction2 = screen.getByRole('button', { name: /quick action 2/i });
|
|
275
275
|
expect(quickAction2).toBeEnabled();
|
|
276
|
-
quickAction2 = screen.getByRole('menuitem', { name: /
|
|
276
|
+
quickAction2 = screen.getByRole('menuitem', { name: /submenu2/i });
|
|
277
277
|
expect(quickAction2.getAttribute('aria-disabled')).toBe('true');
|
|
278
278
|
|
|
279
279
|
// nested quick action - single child
|