@fundamental-styles/mcp 0.41.6-rc.6 → 0.41.6
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](https://github.com/SAP/fundamental-styles/compare/v0.41.6-rc.7...v0.41.6) (2026-05-11)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package fundamental-styles
|
|
9
|
+
|
|
10
|
+
## [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)
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
- **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))
|
|
15
|
+
|
|
6
16
|
## [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)
|
|
7
17
|
|
|
8
18
|
**Note:** Version bump only for package fundamental-styles
|
|
@@ -6855,9 +6865,9 @@ Co-authored-by: droshev <mladen.droshev@sap.com>
|
|
|
6855
6865
|
|
|
6856
6866
|
- added a new modifier class to fd-row to achieve even alignment of its elements:fd-row--top in a form.
|
|
6857
6867
|
Before:
|
|
6858
|
-
|
|
6859
|
-
|
|
6860
|
-
|
|
6868
|
+
<div class="fd-row">
|
|
6869
|
+
After:
|
|
6870
|
+
<div class="fd-row fd-row--top">
|
|
6861
6871
|
|
|
6862
6872
|
### Bug Fixes
|
|
6863
6873
|
|
|
@@ -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