Skip to content

Commit e54536c

Browse files
authored
[UIA-1386] Release module v10.0.6 (#70)
1 parent 70d079d commit e54536c

16 files changed

Lines changed: 78 additions & 61 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [Unreleased]
88

9+
## [10.0.6] - 2025-04-10
10+
11+
### Fixed:
12+
- We migrated from SASS to CSS variables to ensure compatibility with Atlas 4.
13+
914
## [10.0.5] - 2025-10-13
1015

1116
### Fixed:

dist/UnitTesting_10.0.6.mpk

3.42 MB
Binary file not shown.

src/UnitTesting.mpr

0 Bytes
Binary file not shown.

src/project-settings.user.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@
1414
"suppressedRecommendations": [],
1515
"hasShownRecommendationsNotificationForThisApp": true,
1616
"type": "Mendix.Modeler.MxAssist.PerformanceBot.Serialization.Configuration.PerformanceBotConfiguration, Mendix.Modeler.MxAssist.PerformanceBot.Serialization, Version=10.21.0.0, Culture=neutral, PublicKeyToken=null"
17+
},
18+
{
19+
"antivirusExcludedProjectDirectory": "",
20+
"type": "Mendix.Modeler.ProjectHandling.View.ProjectDirectory.ProjectDirectoryConfiguration, Mendix.Modeler.ProjectHandling.View, Version=10.21.0.0, Culture=neutral, PublicKeyToken=null"
1721
}
1822
]
1923
}

src/themesource/suitewithverylongmodulenamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongname/native/design-properties.json renamed to src/themesource/suitewithverylongmodulenamemodulewithlongnamemodulewithlongnamemodulewithlongname/native/design-properties.json

File renamed without changes.

src/themesource/suitewithverylongmodulenamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongname/native/main.js renamed to src/themesource/suitewithverylongmodulenamemodulewithlongnamemodulewithlongnamemodulewithlongname/native/main.js

File renamed without changes.

src/themesource/suitewithverylongmodulenamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongname/settings.json renamed to src/themesource/suitewithverylongmodulenamemodulewithlongnamemodulewithlongnamemodulewithlongname/settings.json

File renamed without changes.

src/themesource/suitewithverylongmodulenamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongname/web/design-properties.json renamed to src/themesource/suitewithverylongmodulenamemodulewithlongnamemodulewithlongnamemodulewithlongname/web/design-properties.json

File renamed without changes.

src/themesource/suitewithverylongmodulenamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongnamemodulewithlongname/web/main.scss renamed to src/themesource/suitewithverylongmodulenamemodulewithlongnamemodulewithlongnamemodulewithlongname/web/main.scss

File renamed without changes.

src/themesource/unittesting/web/_filters.scss

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,43 +7,46 @@ $filter-breakpoint: 1650px !default;
77
.btn.mx-unit-test-filter-button:active,
88
.btn.mx-unit-test-filter-button:focus {
99
background-color: transparent;
10-
color: $font-color-default;
11-
padding: $spacing-smaller $spacing-small;
10+
color: var(--font-color-default);
11+
padding: var(--spacing-smaller) var(--spacing-small);
1212

1313
&.mx-unit-test-filter-button-default {
1414
border-color: transparent;
1515
}
1616

1717
&.mx-unit-test-filter-button-default:hover {
18-
border-color: $color-default-dark;
18+
border-color: var(--color-default-dark);
1919
}
2020

2121
&.mx-unit-test-filter-button-active {
2222
&.btn-danger {
23-
background-color: $color-danger-lighter;
23+
background-color: var(--color-danger-lighter);
2424
}
2525

2626
&.btn-success {
27-
background-color: $color-success-lighter;
27+
background-color: var(--color-success-lighter);
2828
}
2929

3030
&.btn-default {
31-
background-color: $brand-default;
32-
border-color: $color-default-dark;
31+
background-color: var(--brand-default);
32+
border-color: var(--color-default-dark);
3333
}
3434
}
3535

3636
&.mx-unit-test-filter-button-active:hover {
3737
&.btn-danger {
38-
background-color: lighten($color-danger-lighter, 5%);
38+
background-color: var(--color-danger-lighter);
39+
filter: brightness(1.02);
3940
}
4041

4142
&.btn-success {
42-
background-color: lighten($color-success-lighter, 5%)
43+
background-color: var(--color-success-lighter);
44+
filter: brightness(1.02);
4345
}
4446

4547
&.btn-default {
46-
background-color: lighten($brand-default, 5%);
48+
background-color: var(--brand-default);
49+
filter: brightness(1.02);
4750
}
4851
}
4952
}

0 commit comments

Comments
 (0)