Skip to content

Commit 4c9c110

Browse files
authored
[WC-3003] Use screen breakpoints from variables in gallery [2.32] (#1722)
2 parents 4c040b2 + 8d1d692 commit 4c9c110

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

packages/modules/data-widgets/src/themesource/datawidgets/web/_gallery.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
44
Override styles of Gallery widget
55
========================================================================== */
6-
$gallery-screen-lg: 992px;
7-
$gallery-screen-md: 768px;
6+
$gallery-screen-lg: $screen-lg;
7+
$gallery-screen-md: $screen-md;
88

99
@mixin grid-items($number, $suffix) {
1010
@for $i from 1 through $number {

packages/pluggableWidgets/gallery-web/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
### Fixed
10+
11+
- We fixed an issue where gallery widget wasn't following screen breakpoints defined in custom-variables file.
12+
913
## [1.14.1] - 2025-05-26
1014

1115
### Added

packages/pluggableWidgets/gallery-web/package.json

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

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

Lines changed: 1 addition & 1 deletion
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.14.1" xmlns="http://www.mendix.com/clientModule/1.0/">
3+
<clientModule name="Gallery" version="1.14.2" xmlns="http://www.mendix.com/clientModule/1.0/">
44
<widgetFiles>
55
<widgetFile path="Gallery.xml" />
66
</widgetFiles>

0 commit comments

Comments
 (0)