@fundamental-styles/mcp 0.41.7-rc.3 → 0.41.7-rc.5
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 +11 -3
- package/data/component-semantic-tags.json +834 -0
- package/data/examples/Components/menu/mobile-mode.example.html +54 -44
- package/data/html-examples.json +132 -1
- package/data/interaction-patterns.json +137 -0
- package/package.json +1 -1
- package/src/data/component-dependencies.d.ts +41 -0
- package/src/data/component-dependencies.js +378 -0
- package/src/data/component-dependencies.js.map +1 -0
- package/src/data/load-catalog.d.ts +2 -0
- package/src/data/load-catalog.js +4 -1
- package/src/data/load-catalog.js.map +1 -1
- package/src/helpers.d.ts +20 -0
- package/src/helpers.js +167 -0
- package/src/helpers.js.map +1 -1
- package/src/server.js +962 -110
- package/src/server.js.map +1 -1
- package/src/types/semantic-tags.d.ts +16 -0
- package/src/types/semantic-tags.js +6 -0
- package/src/types/semantic-tags.js.map +1 -0
package/data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.7-rc.5](https://github.com/SAP/fundamental-styles/compare/v0.41.7-rc.4...v0.41.7-rc.5) (2026-05-22)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package fundamental-styles
|
|
9
|
+
|
|
10
|
+
## [0.41.7-rc.4](https://github.com/SAP/fundamental-styles/compare/v0.41.7-rc.3...v0.41.7-rc.4) (2026-05-21)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package fundamental-styles
|
|
13
|
+
|
|
6
14
|
## [0.41.7-rc.3](https://github.com/SAP/fundamental-styles/compare/v0.41.7-rc.2...v0.41.7-rc.3) (2026-05-15)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package fundamental-styles
|
|
@@ -6881,9 +6889,9 @@ Co-authored-by: droshev <mladen.droshev@sap.com>
|
|
|
6881
6889
|
|
|
6882
6890
|
- added a new modifier class to fd-row to achieve even alignment of its elements:fd-row--top in a form.
|
|
6883
6891
|
Before:
|
|
6884
|
-
|
|
6885
|
-
|
|
6886
|
-
|
|
6892
|
+
<div class="fd-row">
|
|
6893
|
+
After:
|
|
6894
|
+
<div class="fd-row fd-row--top">
|
|
6887
6895
|
|
|
6888
6896
|
### Bug Fixes
|
|
6889
6897
|
|