@fundamental-styles/mcp 0.41.6-rc.5 → 0.41.6-rc.7
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/data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.41.6-rc.7](https://github.com/SAP/fundamental-styles/compare/v0.41.6-rc.6...v0.41.6-rc.7) (2026-05-11)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **styles:** restyle scrollbar for BTP vertical nav [ci visual] ([#6301](https://github.com/SAP/fundamental-styles/issues/6301)) ([b6bb9d0](https://github.com/SAP/fundamental-styles/commit/b6bb9d06be5eea530f4328e60d8f8f777ec42507))
|
|
11
|
+
|
|
12
|
+
## [0.41.6-rc.6](https://github.com/SAP/fundamental-styles/compare/v0.41.6-rc.5...v0.41.6-rc.6) (2026-05-11)
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package fundamental-styles
|
|
15
|
+
|
|
6
16
|
## [0.41.6-rc.5](https://github.com/SAP/fundamental-styles/compare/v0.41.6-rc.4...v0.41.6-rc.5) (2026-05-11)
|
|
7
17
|
|
|
8
18
|
**Note:** Version bump only for package fundamental-styles
|
|
@@ -6851,9 +6861,9 @@ Co-authored-by: droshev <mladen.droshev@sap.com>
|
|
|
6851
6861
|
|
|
6852
6862
|
- added a new modifier class to fd-row to achieve even alignment of its elements:fd-row--top in a form.
|
|
6853
6863
|
Before:
|
|
6854
|
-
|
|
6855
|
-
|
|
6856
|
-
|
|
6864
|
+
<div class="fd-row">
|
|
6865
|
+
After:
|
|
6866
|
+
<div class="fd-row fd-row--top">
|
|
6857
6867
|
|
|
6858
6868
|
### Bug Fixes
|
|
6859
6869
|
|
|
@@ -1,10 +1,16 @@
|
|
|
1
|
-
|
|
2
1
|
<div class="fd-form-group">
|
|
3
2
|
<div class="fd-form-item">
|
|
4
3
|
<div class="fd-form-label" id="label1">Default Switch</div>
|
|
5
4
|
<label class="fd-switch">
|
|
6
5
|
<span class="fd-switch__control">
|
|
7
|
-
<input
|
|
6
|
+
<input
|
|
7
|
+
class="fd-switch__input"
|
|
8
|
+
type="checkbox"
|
|
9
|
+
name=""
|
|
10
|
+
value=""
|
|
11
|
+
aria-labelledby="label1"
|
|
12
|
+
id="y21YO3251"
|
|
13
|
+
/>
|
|
8
14
|
<div class="fd-switch__slider">
|
|
9
15
|
<div class="fd-switch__track">
|
|
10
16
|
<i role="presentation" class="fd-switch__icon fd-switch__icon--on sap-icon--accept"></i>
|
|
@@ -19,7 +25,14 @@
|
|
|
19
25
|
<div class="fd-form-label" id="label7">Disabled Switch</div>
|
|
20
26
|
<label class="fd-switch is-disabled">
|
|
21
27
|
<span class="fd-switch__control">
|
|
22
|
-
<input
|
|
28
|
+
<input
|
|
29
|
+
class="fd-switch__input"
|
|
30
|
+
type="checkbox"
|
|
31
|
+
name=""
|
|
32
|
+
value=""
|
|
33
|
+
aria-labelledby="label7"
|
|
34
|
+
id="y21Y13431"
|
|
35
|
+
/>
|
|
23
36
|
<div class="fd-switch__slider">
|
|
24
37
|
<div class="fd-switch__track">
|
|
25
38
|
<i role="presentation" class="fd-switch__icon fd-switch__icon--on sap-icon--accept"></i>
|
package/package.json
CHANGED