mod-arch-kubeflow 1.2.1 → 1.4.0
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/README.md +1 -1
- package/dist/style/MUI-theme.scss +9 -0
- package/package.json +4 -5
package/README.md
CHANGED
|
@@ -888,6 +888,10 @@
|
|
|
888
888
|
}
|
|
889
889
|
}
|
|
890
890
|
|
|
891
|
+
.mui-theme .pf-v6-c-menu__list-item.pf-m-focus {
|
|
892
|
+
--pf-v6-c-menu__item--BackgroundColor: var(--mui-palette-action-focus);
|
|
893
|
+
}
|
|
894
|
+
|
|
891
895
|
.mui-theme .pf-v6-c-menu-toggle {
|
|
892
896
|
--pf-v6-c-menu-toggle__toggle-icon--MinHeight: var(--mui-menu-toggle__toggle-icon--MinHeight);
|
|
893
897
|
--pf-v6-c-menu-toggle__controls--MinWidth: var(--mui-menu-toggle__controls--MinWidth);
|
|
@@ -1552,6 +1556,11 @@ left: 0;
|
|
|
1552
1556
|
border-width: var(--mui-form--focus--BorderWidth); // Thicker border for focus state (intentional for emphasis)
|
|
1553
1557
|
--pf-v6-c-menu-toggle--BackgroundColor: var(--mui-palette-common-white);
|
|
1554
1558
|
}
|
|
1559
|
+
|
|
1560
|
+
// Fix text input alignment in typeahead
|
|
1561
|
+
input.pf-v6-c-text-input-group__text-input {
|
|
1562
|
+
padding-left: var(--mui-spacing-16px);
|
|
1563
|
+
}
|
|
1555
1564
|
}
|
|
1556
1565
|
|
|
1557
1566
|
.mui-theme .workspacekind-file-upload {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mod-arch-kubeflow",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"description": "Kubeflow-specific theme and UI components for modular architecture micro-frontend projects",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -55,12 +55,11 @@
|
|
|
55
55
|
"peerDependencies": {
|
|
56
56
|
"@mui/material": "^7.0.0",
|
|
57
57
|
"react": ">=18.2.0",
|
|
58
|
-
"react-dom": ">=18.2.0"
|
|
58
|
+
"react-dom": ">=18.2.0",
|
|
59
|
+
"@mui/material": "^7.3.4"
|
|
59
60
|
},
|
|
60
61
|
"devDependencies": {
|
|
61
|
-
"@
|
|
62
|
-
"@emotion/styled": "^11.13.0",
|
|
63
|
-
"@mui/material": "^7.0.0",
|
|
62
|
+
"@mui/material": "^7.3.4",
|
|
64
63
|
"@types/react": "^18.3.1",
|
|
65
64
|
"npm-run-all2": "^7.0.1",
|
|
66
65
|
"react": "^18.3.1",
|