@moneyforward/mfui-components 3.26.0 → 3.27.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.
Files changed (40) hide show
  1. package/dist/src/DropdownMenu/DropdownMenu.d.ts +1 -1
  2. package/dist/src/DropdownMenu/DropdownMenu.js +3 -3
  3. package/dist/src/DropdownMenu/DropdownMenu.types.d.ts +57 -5
  4. package/dist/src/DropdownMenu/DropdownMenuButtonTrigger.d.ts +46 -0
  5. package/dist/src/DropdownMenu/DropdownMenuButtonTrigger.js +56 -0
  6. package/dist/src/Sidebar/Sidebar.d.ts +63 -0
  7. package/dist/src/Sidebar/Sidebar.js +82 -0
  8. package/dist/src/Sidebar/Sidebar.types.d.ts +143 -0
  9. package/dist/src/Sidebar/Sidebar.types.js +1 -0
  10. package/dist/src/Sidebar/SidebarNavigationItem.d.ts +9 -0
  11. package/dist/src/Sidebar/SidebarNavigationItem.js +48 -0
  12. package/dist/src/Sidebar/SidebarServiceMenu.d.ts +23 -0
  13. package/dist/src/Sidebar/SidebarServiceMenu.js +20 -0
  14. package/dist/src/Sidebar/SidebarTenantMenu.d.ts +23 -0
  15. package/dist/src/Sidebar/SidebarTenantMenu.js +18 -0
  16. package/dist/src/Sidebar/SidebarUserMenu.d.ts +23 -0
  17. package/dist/src/Sidebar/SidebarUserMenu.js +18 -0
  18. package/dist/src/Sidebar/hooks/useSidebarResize.d.ts +28 -0
  19. package/dist/src/Sidebar/hooks/useSidebarResize.js +111 -0
  20. package/dist/src/Sidebar/index.d.ts +6 -0
  21. package/dist/src/Sidebar/index.js +1 -0
  22. package/dist/src/SplitView/SplitView.js +3 -1
  23. package/dist/src/SplitView/SplitView.types.d.ts +6 -0
  24. package/dist/src/SplitView/hooks/useSplitViewDrag.d.ts +1 -0
  25. package/dist/src/SplitView/hooks/useSplitViewDrag.js +11 -1
  26. package/dist/src/SplitView/hooks/useSplitViewKeyboard.d.ts +1 -0
  27. package/dist/src/SplitView/hooks/useSplitViewKeyboard.js +9 -2
  28. package/dist/src/Tooltip/hooks/useTooltipDisplayController.js +28 -1
  29. package/dist/src/index.d.ts +1 -0
  30. package/dist/src/index.js +1 -0
  31. package/dist/src/utilities/react/useIsomorphicLayoutEffect.d.ts +11 -0
  32. package/dist/src/utilities/react/useIsomorphicLayoutEffect.js +11 -0
  33. package/dist/styled-system/recipes/index.d.ts +2 -1
  34. package/dist/styled-system/recipes/index.js +1 -0
  35. package/dist/styled-system/recipes/sidebar-slot-recipe.d.ts +33 -0
  36. package/dist/styled-system/recipes/sidebar-slot-recipe.js +112 -0
  37. package/dist/styled-system/tokens/index.js +6 -6
  38. package/dist/styles.css +346 -6
  39. package/dist/tsconfig.build.tsbuildinfo +1 -1
  40. package/package.json +3 -3
@@ -5744,15 +5744,15 @@ const tokens = {
5744
5744
  "variable": "var(--mfui-colors-mfui\\.color\\.base\\.content\\.pressed)"
5745
5745
  },
5746
5746
  "colors.mfui.color.base.sub-content.none": {
5747
- "value": "#747474ff",
5747
+ "value": "#5e5e5eff",
5748
5748
  "variable": "var(--mfui-colors-mfui\\.color\\.base\\.sub-content\\.none)"
5749
5749
  },
5750
5750
  "colors.mfui.color.base.sub-content.hovered": {
5751
- "value": "#595959ff",
5751
+ "value": "#474747ff",
5752
5752
  "variable": "var(--mfui-colors-mfui\\.color\\.base\\.sub-content\\.hovered)"
5753
5753
  },
5754
5754
  "colors.mfui.color.base.sub-content.pressed": {
5755
- "value": "#424242ff",
5755
+ "value": "#303030ff",
5756
5756
  "variable": "var(--mfui-colors-mfui\\.color\\.base\\.sub-content\\.pressed)"
5757
5757
  },
5758
5758
  "colors.mfui.color.base.inverted-content.none": {
@@ -5940,15 +5940,15 @@ const tokens = {
5940
5940
  "variable": "var(--mfui-colors-mfui\\.color\\.disabled\\.background)"
5941
5941
  },
5942
5942
  "colors.mfui.color.link.content.none": {
5943
- "value": "#2e72d8ff",
5943
+ "value": "#165cb7ff",
5944
5944
  "variable": "var(--mfui-colors-mfui\\.color\\.link\\.content\\.none)"
5945
5945
  },
5946
5946
  "colors.mfui.color.link.content.hovered": {
5947
- "value": "#0d57b1ff",
5947
+ "value": "#004396ff",
5948
5948
  "variable": "var(--mfui-colors-mfui\\.color\\.link\\.content\\.hovered)"
5949
5949
  },
5950
5950
  "colors.mfui.color.link.content.pressed": {
5951
- "value": "#003e90ff",
5951
+ "value": "#072977ff",
5952
5952
  "variable": "var(--mfui-colors-mfui\\.color\\.link\\.content\\.pressed)"
5953
5953
  },
5954
5954
  "colors.mfui.color.neutral.content.none": {
package/dist/styles.css CHANGED
@@ -156,9 +156,9 @@
156
156
  --mfui-colors-mfui\.color\.base\.content\.none: #262626ff;
157
157
  --mfui-colors-mfui\.color\.base\.content\.hovered: #111111ff;
158
158
  --mfui-colors-mfui\.color\.base\.content\.pressed: #000000ff;
159
- --mfui-colors-mfui\.color\.base\.sub-content\.none: #747474ff;
160
- --mfui-colors-mfui\.color\.base\.sub-content\.hovered: #595959ff;
161
- --mfui-colors-mfui\.color\.base\.sub-content\.pressed: #424242ff;
159
+ --mfui-colors-mfui\.color\.base\.sub-content\.none: #5e5e5eff;
160
+ --mfui-colors-mfui\.color\.base\.sub-content\.hovered: #474747ff;
161
+ --mfui-colors-mfui\.color\.base\.sub-content\.pressed: #303030ff;
162
162
  --mfui-colors-mfui\.color\.base\.inverted-content\.none: #ffffffff;
163
163
  --mfui-colors-mfui\.color\.base\.inverted-content\.hovered: #f9f9f9ff;
164
164
  --mfui-colors-mfui\.color\.base\.inverted-content\.pressed: #e8e8e8ff;
@@ -179,9 +179,9 @@
179
179
  --mfui-colors-mfui\.color\.disabled\.content: #d1d1d1ff;
180
180
  --mfui-colors-mfui\.color\.disabled\.border: #ccccccff;
181
181
  --mfui-colors-mfui\.color\.disabled\.background: #e8e8e8ff;
182
- --mfui-colors-mfui\.color\.link\.content\.none: #2e72d8ff;
183
- --mfui-colors-mfui\.color\.link\.content\.hovered: #0d57b1ff;
184
- --mfui-colors-mfui\.color\.link\.content\.pressed: #003e90ff;
182
+ --mfui-colors-mfui\.color\.link\.content\.none: #165cb7ff;
183
+ --mfui-colors-mfui\.color\.link\.content\.hovered: #004396ff;
184
+ --mfui-colors-mfui\.color\.link\.content\.pressed: #072977ff;
185
185
  --mfui-colors-mfui\.color\.neutral\.content\.none: #747474ff;
186
186
  --mfui-colors-mfui\.color\.neutral\.content\.hovered: #595959ff;
187
187
  --mfui-colors-mfui\.color\.neutral\.content\.pressed: #424242ff;
@@ -5905,6 +5905,346 @@ li:last-child > .mfui-cXGJls {
5905
5905
  height: var(--mfui-sizes-mfui\.size\.dimension\.control-container\.height\.comfort);
5906
5906
  }
5907
5907
 
5908
+ .mfui-doETf {
5909
+ position: relative;
5910
+ display: flex;
5911
+ flex-direction: column;
5912
+ background-color: var(--mfui-colors-mfui\.color\.neutral\.thin-background\.none);
5913
+ width: 200px;
5914
+ height: 100%;
5915
+ }
5916
+
5917
+ .mfui-doETf[data-mfui-dragging] {
5918
+ -webkit-user-select: none;
5919
+ user-select: none;
5920
+ }
5921
+
5922
+ .mfui-eiwAgy {
5923
+ padding-inline: var(--mfui-spacing-mfui\.size\.padding\.main-content\.horizontal\.comfort);
5924
+ padding-block: var(--mfui-spacing-mfui\.size\.padding\.container\.vertical\.comfort);
5925
+ flex-shrink: 0;
5926
+ display: flex;
5927
+ align-items: center;
5928
+ justify-content: space-between;
5929
+ }
5930
+
5931
+ .mfui-dXVlzk,.mfui-iaZfLW {
5932
+ display: inline-flex;
5933
+ align-items: center;
5934
+ }
5935
+
5936
+ .mfui-eCoQhk {
5937
+ flex: 1 1 0%;
5938
+ display: flex;
5939
+ flex-direction: column;
5940
+ min-height: 0;
5941
+ }
5942
+
5943
+ .mfui-jfalmU {
5944
+ flex-shrink: 0;
5945
+ }
5946
+
5947
+ .mfui-cUHRzB {
5948
+ flex: 1 1 0%;
5949
+ min-height: 0;
5950
+ padding-top: 6px;
5951
+ }
5952
+
5953
+ .mfui-iKnjCN {
5954
+ padding: 0;
5955
+ margin: 0;
5956
+ list-style: none;
5957
+ }
5958
+
5959
+ .mfui-fBhmQk {
5960
+ padding-inline: 14px;
5961
+ padding-block: 3px;
5962
+ }
5963
+
5964
+ .mfui-fBhmQk > .mfui-Tooltip__root {
5965
+ display: block;
5966
+ }
5967
+
5968
+ .mfui-jQneDG {
5969
+ margin-inline: 14px;
5970
+ margin-block: 3px;
5971
+ border-top: 1px solid;
5972
+ border-color: var(--mfui-colors-mfui\.color\.neutral\.sub-border\.none);
5973
+ }
5974
+
5975
+ .mfui-hoqJKf {
5976
+ margin: 0;
5977
+ padding: 0;
5978
+ border: none;
5979
+ font: inherit;
5980
+ text-decoration: none;
5981
+ border-radius: 6px;
5982
+ display: flex;
5983
+ align-items: center;
5984
+ appearance: none;
5985
+ -webkit-appearance: none;
5986
+ text-align: start;
5987
+ background-color: var(--mfui-colors-mfui\.color\.neutral\.thin-background\.none);
5988
+ color: var(--mfui-colors-mfui\.color\.base\.content\.none);
5989
+ cursor: pointer;
5990
+ width: 100%;
5991
+ }
5992
+
5993
+ .mfui-hoqJKf[aria-current=page] {
5994
+ background-color: var(--mfui-colors-mfui\.color\.primary\.background\.none);
5995
+ }
5996
+
5997
+ .mfui-hoqJKf[aria-current=page],.mfui-hoqJKf[aria-current=page] .mfui-Sidebar__navigationLinkIcon {
5998
+ color: var(--mfui-colors-mfui\.color\.base\.inverted-content\.none);
5999
+ }
6000
+
6001
+ .mfui-hoqJKf[aria-current=page] .mfui-Sidebar__navigationLinkLabel {
6002
+ font-weight: var(--mfui-font-weights-mfui\.typography\.font-weight\.label);
6003
+ }
6004
+
6005
+ .mfui-hoqJKf:is(:focus-visible, [data-focus-visible]) {
6006
+ background-color: var(--mfui-colors-mfui\.color\.neutral\.thin-background\.hovered);
6007
+ color: var(--mfui-colors-mfui\.color\.base\.content\.hovered);
6008
+ }
6009
+
6010
+ .mfui-hoqJKf:is(:focus-visible, [data-focus-visible])[aria-current=page] {
6011
+ background-color: var(--mfui-colors-mfui\.color\.primary\.background\.hovered);
6012
+ color: var(--mfui-colors-mfui\.color\.base\.inverted-content\.none);
6013
+ }
6014
+
6015
+ .mfui-hoqJKf:is(:hover, [data-hover]) {
6016
+ background-color: var(--mfui-colors-mfui\.color\.neutral\.thin-background\.hovered);
6017
+ color: var(--mfui-colors-mfui\.color\.base\.content\.hovered);
6018
+ }
6019
+
6020
+ .mfui-hoqJKf:is(:hover, [data-hover])[aria-current=page] {
6021
+ background-color: var(--mfui-colors-mfui\.color\.primary\.background\.hovered);
6022
+ color: var(--mfui-colors-mfui\.color\.base\.inverted-content\.none);
6023
+ }
6024
+
6025
+ .mfui-hoqJKf:is(:active, [data-active]) {
6026
+ background-color: var(--mfui-colors-mfui\.color\.neutral\.thin-background\.pressed);
6027
+ color: var(--mfui-colors-mfui\.color\.base\.content\.pressed);
6028
+ }
6029
+
6030
+ .mfui-hoqJKf:is(:active, [data-active])[aria-current=page] {
6031
+ background-color: var(--mfui-colors-mfui\.color\.primary\.background\.pressed);
6032
+ color: var(--mfui-colors-mfui\.color\.base\.inverted-content\.none);
6033
+ }
6034
+
6035
+ .mfui-jOPsct {
6036
+ padding: 4px 7px;
6037
+ gap: 7px;
6038
+ border-radius: 6px;
6039
+ flex: 1 0 0;
6040
+ display: flex;
6041
+ align-items: flex-start;
6042
+ color: inherit;
6043
+ min-width: 1px;
6044
+ }
6045
+
6046
+ .mfui-iENmzA {
6047
+ overflow: hidden;
6048
+ display: flex;
6049
+ align-items: center;
6050
+ justify-content: center;
6051
+ flex-shrink: 0;
6052
+ color: var(--mfui-colors-mfui\.color\.neutral\.content\.none);
6053
+ width: 18px;
6054
+ height: 24px;
6055
+ }
6056
+
6057
+ .mfui-gWmGAB {
6058
+ flex: 1 0 0;
6059
+ overflow-wrap: break-word;
6060
+ color: inherit;
6061
+ min-width: 1px;
6062
+ overflow: hidden;
6063
+ display: -webkit-box;
6064
+ -webkit-line-clamp: var(--mfui-sidebar-max-lines,1);
6065
+ -webkit-box-orient: vertical;
6066
+ }
6067
+
6068
+ .mfui-eZotJE {
6069
+ border-top: 1px solid;
6070
+ border-color: var(--mfui-colors-mfui\.color\.neutral\.thin-border\.none);
6071
+ flex-shrink: 0;
6072
+ background-color: var(--mfui-colors-mfui\.color\.neutral\.thin-background\.none);
6073
+ padding-top: 3px;
6074
+ }
6075
+
6076
+ .mfui-dsYgTD {
6077
+ padding-inline: 14px;
6078
+ padding-block: 3px;
6079
+ }
6080
+
6081
+ .mfui-dsYgTD.mfui-Sidebar__serviceMenu .mfui-Sidebar__serviceTrigger {
6082
+ padding: 4px 7px;
6083
+ margin: 0;
6084
+ border: none;
6085
+ gap: 7px;
6086
+ border-radius: 6px;
6087
+ display: flex;
6088
+ align-items: center;
6089
+ justify-content: flex-start;
6090
+ appearance: none;
6091
+ -webkit-appearance: none;
6092
+ text-align: start;
6093
+ background-color: transparent;
6094
+ color: var(--mfui-colors-mfui\.color\.base\.content\.none);
6095
+ width: 100%;
6096
+ min-width: 0;
6097
+ height: auto;
6098
+ }
6099
+
6100
+ .mfui-dsYgTD.mfui-Sidebar__serviceMenu .mfui-Sidebar__serviceTrigger .mfui-Typography__root {
6101
+ flex: 1 0 0;
6102
+ overflow: hidden;
6103
+ text-overflow: ellipsis;
6104
+ white-space: nowrap;
6105
+ min-width: 1px;
6106
+ }
6107
+
6108
+ .mfui-dsYgTD.mfui-Sidebar__serviceMenu .mfui-Sidebar__serviceTrigger:is(:hover, [data-hover]),.mfui-dsYgTD.mfui-Sidebar__serviceMenu .mfui-Sidebar__serviceTrigger:is(:focus-visible, [data-focus-visible]) {
6109
+ background-color: var(--mfui-colors-mfui\.color\.neutral\.thin-background\.hovered);
6110
+ color: var(--mfui-colors-mfui\.color\.base\.content\.hovered);
6111
+ }
6112
+
6113
+ .mfui-dsYgTD.mfui-Sidebar__serviceMenu .mfui-Sidebar__serviceTrigger:is(:active, [data-active]),.mfui-dsYgTD.mfui-Sidebar__serviceMenu .mfui-Sidebar__serviceTrigger:is([aria-expanded=true], [data-expanded], [data-state="expanded"]) {
6114
+ background-color: var(--mfui-colors-mfui\.color\.neutral\.thin-background\.pressed);
6115
+ color: var(--mfui-colors-mfui\.color\.base\.content\.pressed);
6116
+ }
6117
+
6118
+ .mfui-dsYgTD.mfui-Sidebar__serviceMenu .mfui-Sidebar__serviceTrigger:is([aria-expanded=true], [data-expanded], [data-state="expanded"]):is(:hover, [data-hover]) {
6119
+ background-color: var(--mfui-colors-mfui\.color\.neutral\.thin-background\.hovered);
6120
+ color: var(--mfui-colors-mfui\.color\.base\.content\.hovered);
6121
+ }
6122
+
6123
+ .mfui-dsYgTD.mfui-Sidebar__serviceMenu .mfui-Sidebar__serviceTrigger .mfui-Button__leftIcon {
6124
+ font-size: 18px;
6125
+ flex-shrink: 0;
6126
+ color: var(--mfui-colors-mfui\.color\.neutral\.content\.none);
6127
+ }
6128
+
6129
+ .mfui-SeHWc {
6130
+ gap: var(--mfui-spacing-mfui\.size\.spacing\.paragraph\.horizontal\.comfort);
6131
+ display: flex;
6132
+ align-items: center;
6133
+ padding-top: 4px;
6134
+ padding-bottom: 4px;
6135
+ padding-left: 19px;
6136
+ padding-right: 21px;
6137
+ }
6138
+
6139
+ .mfui-cIxYdj {
6140
+ gap: 4px;
6141
+ padding-inline: 14px;
6142
+ display: flex;
6143
+ flex-direction: column;
6144
+ align-items: flex-start;
6145
+ justify-content: center;
6146
+ padding-top: 6px;
6147
+ padding-bottom: 6px;
6148
+ width: 100%;
6149
+ }
6150
+
6151
+ .mfui-eaAbaG {
6152
+ width: 100%;
6153
+ }
6154
+
6155
+ .mfui-eaAbaG.mfui-Sidebar__footerUserIdMenuItem .mfui-Sidebar__tenantTrigger {
6156
+ margin: 0;
6157
+ border: none;
6158
+ padding-inline: 7px;
6159
+ padding-block: 3px;
6160
+ border-radius: 3px;
6161
+ display: flex;
6162
+ align-items: center;
6163
+ justify-content: flex-start;
6164
+ appearance: none;
6165
+ -webkit-appearance: none;
6166
+ text-align: start;
6167
+ background-color: transparent;
6168
+ color: var(--mfui-colors-mfui\.color\.base\.content\.none);
6169
+ width: 100%;
6170
+ min-width: 0;
6171
+ height: auto;
6172
+ }
6173
+
6174
+ .mfui-eaAbaG.mfui-Sidebar__footerUserIdMenuItem .mfui-Sidebar__tenantTrigger:is(:hover, [data-hover]),.mfui-eaAbaG.mfui-Sidebar__footerUserIdMenuItem .mfui-Sidebar__tenantTrigger:is(:focus-visible, [data-focus-visible]) {
6175
+ background-color: var(--mfui-colors-mfui\.color\.neutral\.thin-background\.hovered);
6176
+ color: var(--mfui-colors-mfui\.color\.base\.content\.hovered);
6177
+ }
6178
+
6179
+ .mfui-eaAbaG.mfui-Sidebar__footerUserIdMenuItem .mfui-Sidebar__tenantTrigger:is(:active, [data-active]),.mfui-eaAbaG.mfui-Sidebar__footerUserIdMenuItem .mfui-Sidebar__tenantTrigger:is([aria-expanded=true], [data-expanded], [data-state="expanded"]) {
6180
+ background-color: var(--mfui-colors-mfui\.color\.neutral\.thin-background\.pressed);
6181
+ color: var(--mfui-colors-mfui\.color\.base\.content\.pressed);
6182
+ }
6183
+
6184
+ .mfui-eaAbaG.mfui-Sidebar__footerUserIdMenuItem .mfui-Sidebar__tenantTrigger:is([aria-expanded=true], [data-expanded], [data-state="expanded"]):is(:hover, [data-hover]) {
6185
+ background-color: var(--mfui-colors-mfui\.color\.neutral\.thin-background\.hovered);
6186
+ color: var(--mfui-colors-mfui\.color\.base\.content\.hovered);
6187
+ }
6188
+
6189
+ .mfui-eaAbaG.mfui-Sidebar__footerUserIdMenuItem .mfui-Sidebar__userTrigger {
6190
+ margin: 0;
6191
+ border: none;
6192
+ padding-inline: 7px;
6193
+ padding-block: 0;
6194
+ border-radius: 3px;
6195
+ display: flex;
6196
+ align-items: center;
6197
+ justify-content: flex-start;
6198
+ appearance: none;
6199
+ -webkit-appearance: none;
6200
+ text-align: start;
6201
+ background-color: transparent;
6202
+ color: var(--mfui-colors-mfui\.color\.base\.content\.none);
6203
+ width: 100%;
6204
+ min-width: 0;
6205
+ height: auto;
6206
+ }
6207
+
6208
+ .mfui-eaAbaG.mfui-Sidebar__footerUserIdMenuItem .mfui-Sidebar__userTrigger:is(:hover, [data-hover]),.mfui-eaAbaG.mfui-Sidebar__footerUserIdMenuItem .mfui-Sidebar__userTrigger:is(:focus-visible, [data-focus-visible]) {
6209
+ background-color: var(--mfui-colors-mfui\.color\.neutral\.thin-background\.hovered);
6210
+ color: var(--mfui-colors-mfui\.color\.base\.content\.hovered);
6211
+ }
6212
+
6213
+ .mfui-eaAbaG.mfui-Sidebar__footerUserIdMenuItem .mfui-Sidebar__userTrigger:is(:active, [data-active]),.mfui-eaAbaG.mfui-Sidebar__footerUserIdMenuItem .mfui-Sidebar__userTrigger:is([aria-expanded=true], [data-expanded], [data-state="expanded"]) {
6214
+ background-color: var(--mfui-colors-mfui\.color\.neutral\.thin-background\.pressed);
6215
+ color: var(--mfui-colors-mfui\.color\.base\.content\.pressed);
6216
+ }
6217
+
6218
+ .mfui-eaAbaG.mfui-Sidebar__footerUserIdMenuItem .mfui-Sidebar__userTrigger:is([aria-expanded=true], [data-expanded], [data-state="expanded"]):is(:hover, [data-hover]) {
6219
+ background-color: var(--mfui-colors-mfui\.color\.neutral\.thin-background\.hovered);
6220
+ color: var(--mfui-colors-mfui\.color\.base\.content\.hovered);
6221
+ }
6222
+
6223
+ .mfui-cYwDQn {
6224
+ outline: 2px solid transparent;
6225
+ outline-offset: 2px;
6226
+ position: absolute;
6227
+ cursor: col-resize;
6228
+ top: 0;
6229
+ bottom: 0;
6230
+ right: 0;
6231
+ width: 0;
6232
+ padding-left: 8px;
6233
+ border-right-width: var(--mfui-border-widths-mfui\.size\.border\.base\.width\.comfort);
6234
+ border-right-style: solid;
6235
+ border-right-color: var(--mfui-colors-mfui\.color\.neutral\.sub-border\.none);
6236
+ }
6237
+
6238
+ .mfui-cYwDQn[data-mfui-dragging],.mfui-cYwDQn:is(:focus-visible, [data-focus-visible]) {
6239
+ border-right-width: var(--mfui-border-widths-mfui\.size\.border\.indicator\.width\.comfort);
6240
+ border-right-color: var(--mfui-colors-mfui\.color\.neutral\.border\.pressed);
6241
+ }
6242
+
6243
+ .mfui-cYwDQn:is(:hover, [data-hover]) {
6244
+ border-right-width: var(--mfui-border-widths-mfui\.size\.border\.indicator\.width\.comfort);
6245
+ border-right-color: var(--mfui-colors-mfui\.color\.neutral\.border\.hovered);
6246
+ }
6247
+
5908
6248
  @media screen and (min-width: 37.5rem) {
5909
6249
  .mfui-hveqnu {
5910
6250
  width: var(--mfui-sizes-mfui\.layout\.area\.horizontal\.fixed);