Skip to content

Commit b1cf00e

Browse files
uicontentgjulivan
authored andcommitted
chore(@mendix/data-widgets): update changelog
1 parent a1565ae commit b1cf00e

File tree

5 files changed

+50
-48
lines changed

5 files changed

+50
-48
lines changed

packages/modules/data-widgets/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
## [2.27.2] DataWidgets - 2024-12-12
10+
911
### Fixed
1012

1113
- We've stopped showing the loading indicator when all data were already loaded. The loading indicator was incorrectly displayed during client refresh operations involving a microflow.

packages/modules/data-widgets/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@mendix/data-widgets",
33
"moduleName": "Data Widgets",
4-
"version": "2.27.2",
4+
"version": "2.27.3",
55
"license": "Apache-2.0",
66
"copyright": "© Mendix Technology BV 2023. All rights reserved.",
77
"private": true,

packages/pluggableWidgets/gallery-web/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@mendix/gallery-web",
33
"widgetName": "Gallery",
4-
"version": "1.13.0",
4+
"version": "1.13.1",
55
"description": "A flexible gallery widget that renders columns, rows and layouts.",
66
"copyright": "© Mendix Technology BV 2023. All rights reserved.",
77
"license": "Apache-2.0",

packages/pluggableWidgets/gallery-web/src/package.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<package xmlns="http://www.mendix.com/package/1.0/">
3-
<clientModule name="Gallery" version="1.13.0" xmlns="http://www.mendix.com/clientModule/1.0/">
3+
<clientModule name="Gallery" version="1.13.1" xmlns="http://www.mendix.com/clientModule/1.0/">
44
<widgetFiles>
55
<widgetFile path="Gallery.xml" />
66
</widgetFiles>
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,48 @@
11
{
2-
"name": "@mendix/widget-plugin-grid",
3-
"version": "0.1.0",
4-
"description": "Data grid related code.",
5-
"license": "Apache-2.0",
6-
"copyright": "© Mendix Technology BV 2023. All rights reserved.",
7-
"repository": {
8-
"type": "git",
9-
"url": "https://github.com/mendix/web-widgets.git"
10-
},
11-
"type": "module",
12-
"exports": {
13-
"./*": "./dist/*.js",
14-
"./internal/*": null,
15-
"./internal": null
16-
},
17-
"typesVersions": {
18-
"*": {
19-
"*": [
20-
"./dist/*.d.ts"
21-
]
2+
"name": "@mendix/widget-plugin-grid",
3+
"version": "0.2.0",
4+
"description": "Data grid related code.",
5+
"license": "Apache-2.0",
6+
"copyright": "© Mendix Technology BV 2023. All rights reserved.",
7+
"repository": {
8+
"type": "git",
9+
"url": "https://github.com/mendix/web-widgets.git"
10+
},
11+
"type": "module",
12+
"exports": {
13+
"./*": "./dist/*.js",
14+
"./internal/*": null,
15+
"./internal": null
16+
},
17+
"typesVersions": {
18+
"*": {
19+
"*": [
20+
"./dist/*.d.ts"
21+
]
22+
}
23+
},
24+
"files": [
25+
"dist",
26+
"!*.map"
27+
],
28+
"scripts": {
29+
"compile": "tsc",
30+
"format": "prettier --write .",
31+
"lint": "eslint --ext .ts,.tsx ./src",
32+
"prepare": "tsc",
33+
"dev": "tsc --watch",
34+
"test": "jest"
35+
},
36+
"devDependencies": {
37+
"@mendix/eslint-config-web-widgets": "workspace:*",
38+
"@mendix/prettier-config-web-widgets": "workspace:*",
39+
"@mendix/tsconfig-web-widgets": "workspace:*",
40+
"@mendix/widget-plugin-hooks": "workspace:*",
41+
"@mendix/widget-plugin-platform": "workspace:*",
42+
"@mendix/widget-plugin-test-utils": "workspace:*",
43+
"@swc/core": "^1.7.26",
44+
"@swc/jest": "^0.2.36",
45+
"classnames": "^2.3.2",
46+
"jest-environment-jsdom": "^29.4.1"
2247
}
23-
},
24-
"files": [
25-
"dist",
26-
"!*.map"
27-
],
28-
"scripts": {
29-
"compile": "tsc",
30-
"format": "prettier --write .",
31-
"lint": "eslint --ext .ts,.tsx ./src",
32-
"prepare": "tsc",
33-
"dev": "tsc --watch",
34-
"test": "jest"
35-
},
36-
"devDependencies": {
37-
"@mendix/eslint-config-web-widgets": "workspace:*",
38-
"@mendix/prettier-config-web-widgets": "workspace:*",
39-
"@mendix/tsconfig-web-widgets": "workspace:*",
40-
"@mendix/widget-plugin-hooks": "workspace:*",
41-
"@mendix/widget-plugin-platform": "workspace:*",
42-
"@mendix/widget-plugin-test-utils": "workspace:*",
43-
"@swc/core": "^1.7.26",
44-
"@swc/jest": "^0.2.36",
45-
"classnames": "^2.3.2",
46-
"jest-environment-jsdom": "^29.4.1"
47-
}
4848
}

0 commit comments

Comments
 (0)