@moneyforward/mfui-components 3.0.0 → 3.2.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 (42) hide show
  1. package/dist/src/DateTimeSelection/shared/BasePicker/BasePicker.d.ts +1 -1
  2. package/dist/src/DateTimeSelection/shared/BasePicker/BasePicker.js +4 -4
  3. package/dist/src/DateTimeSelection/shared/BasePicker/BasePicker.types.d.ts +1 -1
  4. package/dist/src/DateTimeSelection/shared/BaseRangePicker/BaseRangePicker.d.ts +1 -1
  5. package/dist/src/DateTimeSelection/shared/BaseRangePicker/BaseRangePicker.js +4 -4
  6. package/dist/src/DateTimeSelection/shared/BaseRangePicker/BaseRangePicker.types.d.ts +8 -0
  7. package/dist/src/FileBox/FileBox.js +2 -3
  8. package/dist/src/FileDropZone/FileDropZone.js +6 -7
  9. package/dist/src/Pagination/ItemsPerPage/ItemsPerPage.js +2 -2
  10. package/dist/src/Pagination/PagePicker/PagePicker.js +2 -2
  11. package/dist/src/Popover/Popover.js +1 -1
  12. package/dist/src/SelectBox/SelectBox.js +46 -8
  13. package/dist/src/SelectBox/SelectBox.types.d.ts +80 -1
  14. package/dist/src/SelectBox/hooks/useInfiniteScroll.d.ts +22 -0
  15. package/dist/src/SelectBox/hooks/useInfiniteScroll.js +65 -0
  16. package/dist/src/TextBox/TextBox.js +2 -2
  17. package/dist/src/ToggleSwitch/ToggleSwitch.d.ts +9 -0
  18. package/dist/src/ToggleSwitch/ToggleSwitch.js +32 -0
  19. package/dist/src/ToggleSwitch/ToggleSwitch.types.d.ts +6 -0
  20. package/dist/src/ToggleSwitch/ToggleSwitch.types.js +1 -0
  21. package/dist/src/ToggleSwitch/index.d.ts +2 -0
  22. package/dist/src/ToggleSwitch/index.js +2 -0
  23. package/dist/src/index.d.ts +1 -0
  24. package/dist/src/index.js +1 -0
  25. package/dist/src/shared/ClearButton/ClearButton.d.ts +4 -3
  26. package/dist/src/shared/ClearButton/ClearButton.js +14 -2
  27. package/dist/src/utilities/dom/getTargetDomNode.js +4 -2
  28. package/dist/src/utilities/dom/useFixedColumns.js +36 -10
  29. package/dist/styled-system/css/conditions.js +1 -1
  30. package/dist/styled-system/jsx/is-valid-prop.js +1 -1
  31. package/dist/styled-system/recipes/clear-button-slot-recipe.d.ts +36 -0
  32. package/dist/styled-system/recipes/clear-button-slot-recipe.js +38 -0
  33. package/dist/styled-system/recipes/index.d.ts +3 -1
  34. package/dist/styled-system/recipes/index.js +2 -0
  35. package/dist/styled-system/recipes/select-box-slot-recipe.d.ts +2 -2
  36. package/dist/styled-system/recipes/select-box-slot-recipe.js +22 -1
  37. package/dist/styled-system/recipes/toggle-switch-slot-recipe.d.ts +33 -0
  38. package/dist/styled-system/recipes/toggle-switch-slot-recipe.js +36 -0
  39. package/dist/styled-system/types/conditions.d.ts +10 -0
  40. package/dist/styles.css +256 -24
  41. package/dist/tsconfig.build.tsbuildinfo +1 -1
  42. package/package.json +1 -1
package/dist/styles.css CHANGED
@@ -202,7 +202,9 @@
202
202
  --mfui-colors-mfui\.color\.neutral\.thin-border\.hovered: #ddddddff;
203
203
  --mfui-colors-mfui\.color\.neutral\.thin-border\.pressed: #d1d1d1ff;
204
204
  --mfui-colors-mfui\.color\.primary\.content\.none: #2e72d8ff;
205
- --mfui-colors-mfui\.color\.primary\.border\.none: #2e72d8ff;
205
+ --mfui-colors-mfui\.color\.primary\.content\.hovered: #0d57b1ff;
206
+ --mfui-colors-mfui\.color\.primary\.content\.pressed: #003e90ff;
207
+ --mfui-colors-mfui\.color\.primary\.border\.none: #2e72d8ff;
206
208
  --mfui-colors-mfui\.color\.primary\.background\.none: #2e72d8ff;
207
209
  --mfui-colors-mfui\.color\.primary\.background\.hovered: #0d57b1ff;
208
210
  --mfui-colors-mfui\.color\.primary\.background\.pressed: #003e90ff;
@@ -271,7 +273,11 @@
271
273
  --mfui-sizes-mfui\.size\.dimension\.month-calendar-cell\.width\.comfort: 49px;
272
274
  --mfui-sizes-mfui\.size\.dimension\.month-calendar-cell\.height\.comfort: 48px;
273
275
  --mfui-sizes-mfui\.size\.dimension\.this-month-indicator\.diameter\.comfort: 42px;
274
- --mfui-sizes-mfui\.size\.target\.minimum\.comfort: 24px;
276
+ --mfui-sizes-mfui\.size\.dimension\.toggle-switch-container\.width\.comfort: 44px;
277
+ --mfui-sizes-mfui\.size\.dimension\.toggle-switch-container\.height\.comfort: 24px;
278
+ --mfui-sizes-mfui\.size\.dimension\.toggle-switch-handle-on\.diameter\.comfort: 20px;
279
+ --mfui-sizes-mfui\.size\.dimension\.toggle-switch-handle-off\.diameter\.comfort: 18px;
280
+ --mfui-sizes-mfui\.size\.target\.minimum\.comfort: 24px;
275
281
  --mfui-sizes-mfui\.size\.target\.button\.comfort: 56px;
276
282
  --mfui-sizes-mfui\.size\.target\.button\.condensed: 42px;
277
283
  --mfui-sizes-mfui\.size\.target\.button\.impact: 56px;
@@ -337,7 +343,8 @@
337
343
  --mfui-radii-mfui\.size\.radius\.panel-component\.comfort: 12px;
338
344
  --mfui-radii-mfui\.size\.radius\.floating-component\.comfort: 18px;
339
345
  --mfui-radii-mfui\.size\.radius\.floating-pane\.comfort: 24px;
340
- --mfui-fonts-mfui\.typography\.font-family\.page-heading-1: Meiryo,Hiragino Kaku Gothic ProN,Hiragino Sans,Noto Sans JP,sans-serif;
346
+ --mfui-radii-mfui\.size\.radius\.toggle-switch-handle\.comfort: 12px;
347
+ --mfui-fonts-mfui\.typography\.font-family\.page-heading-1: Meiryo,Hiragino Kaku Gothic ProN,Hiragino Sans,Noto Sans JP,sans-serif;
341
348
  --mfui-fonts-mfui\.typography\.font-family\.page-heading-2: Meiryo,Hiragino Kaku Gothic ProN,Hiragino Sans,Noto Sans JP,sans-serif;
342
349
  --mfui-fonts-mfui\.typography\.font-family\.section-heading-1: Meiryo,Hiragino Kaku Gothic ProN,Hiragino Sans,Noto Sans JP,sans-serif;
343
350
  --mfui-fonts-mfui\.typography\.font-family\.section-heading-2: Meiryo,Hiragino Kaku Gothic ProN,Hiragino Sans,Noto Sans JP,sans-serif;
@@ -868,6 +875,12 @@
868
875
  cursor: not-allowed;
869
876
  }
870
877
 
878
+ .mfui-kKZmYK {
879
+ display: flex;
880
+ align-items: center;
881
+ justify-content: center;
882
+ }
883
+
871
884
  .mfui-iEqIyl {
872
885
  margin: 0;
873
886
  text-decoration: none;
@@ -1517,6 +1530,44 @@
1517
1530
  min-height: var(--mfui-sizes-mfui\.size\.dimension\.control-component\.height\.comfort);
1518
1531
  }
1519
1532
 
1533
+ .mfui-etcyoB {
1534
+ padding-inline: var(--mfui-spacing-mfui\.size\.padding\.control\.horizontal\.comfort);
1535
+ padding-block: 4px;
1536
+ gap: 4px;
1537
+ display: flex;
1538
+ flex-direction: column;
1539
+ justify-content: center;
1540
+ }
1541
+
1542
+ .mfui-kxqjkG {
1543
+ gap: 4px;
1544
+ display: flex;
1545
+ align-items: center;
1546
+ }
1547
+
1548
+ .mfui-cUaWtj {
1549
+ display: flex;
1550
+ justify-content: flex-end;
1551
+ }
1552
+
1553
+ .mfui-dygFHu {
1554
+ color: var(--mfui-colors-mfui\.color\.signal-red\.content\.none);
1555
+ width: var(--mfui-sizes-mfui\.size\.dimension\.icon\.square\.comfort);
1556
+ height: var(--mfui-sizes-mfui\.size\.dimension\.icon\.square\.comfort);
1557
+ }
1558
+
1559
+ .mfui-kXRJmn {
1560
+ display: flex;
1561
+ justify-content: center;
1562
+ align-items: center;
1563
+ height: 32px;
1564
+ }
1565
+
1566
+ .mfui-kXRJmn .mfui-ProgressIndicator {
1567
+ width: 16px;
1568
+ height: 16px;
1569
+ }
1570
+
1520
1571
  .mfui-bZAucV {
1521
1572
  position: relative;
1522
1573
  display: flex;
@@ -3738,14 +3789,13 @@
3738
3789
  .mfui-bfIsQV {
3739
3790
  border: 1px solid;
3740
3791
  gap: var(--mfui-spacing-mfui\.size\.spacing\.icon-and-text\.horizontal\.comfort);
3741
- padding-block: calc(4px - 1px);
3792
+ padding-block: 0;
3742
3793
  padding-inline: var(--mfui-spacing-mfui\.size\.spacing\.inline\.horizontal\.comfort);
3743
3794
  border-radius: var(--mfui-radii-mfui\.size\.radius\.control-component\.comfort);
3744
3795
  border-color: var(--mfui-colors-mfui\.color\.neutral\.border\.none);
3745
3796
  display: flex;
3746
3797
  align-items: center;
3747
3798
  background-color: var(--mfui-colors-mfui\.color\.base\.background\.none);
3748
- min-height: var(--mfui-sizes-mfui\.size\.dimension\.control-component\.height\.comfort);
3749
3799
  }
3750
3800
 
3751
3801
  .mfui-bfIsQV:is(:focus-visible, [data-focus-visible]) {
@@ -4766,6 +4816,156 @@
4766
4816
  border-left-color: var(--mfui-colors-mfui\.color\.neutral\.border\.pressed);
4767
4817
  }
4768
4818
 
4819
+ .mfui-hRFDZx {
4820
+ border-radius: var(--mfui-radii-mfui\.size\.radius\.toggle-switch-handle\.comfort);
4821
+ transition: background-color 0.1s linear, border-color 0.1s linear;
4822
+ display: inline-flex;
4823
+ position: relative;
4824
+ width: var(--mfui-sizes-mfui\.size\.dimension\.toggle-switch-container\.width\.comfort);
4825
+ height: var(--mfui-sizes-mfui\.size\.dimension\.toggle-switch-container\.height\.comfort);
4826
+ }
4827
+
4828
+ .mfui-hRFDZx:has(input[type="checkbox"][role="switch"]:not(:disabled)) {
4829
+ border-width: 1px;
4830
+ border-style: solid;
4831
+ border-color: var(--mfui-colors-mfui\.color\.neutral\.border\.none);
4832
+ background-color: var(--mfui-colors-mfui\.color\.neutral\.sub-background\.none);
4833
+ }
4834
+
4835
+ .mfui-hRFDZx:has(input[type="checkbox"][role="switch"]:not(:disabled)):is(:hover, [data-hover]) {
4836
+ border-color: var(--mfui-colors-mfui\.color\.neutral\.border\.hovered);
4837
+ background-color: var(--mfui-colors-mfui\.color\.neutral\.sub-background\.hovered);
4838
+ }
4839
+
4840
+ .mfui-hRFDZx:has(input[type="checkbox"][role="switch"]:not(:disabled)):is(:hover, [data-hover]) [data-mfui-content="toggle-handle"] {
4841
+ background-color: var(--mfui-colors-mfui\.color\.neutral\.content\.hovered);
4842
+ }
4843
+
4844
+ .mfui-hRFDZx:has(input[type="checkbox"][role="switch"]:not(:disabled)):is(:active, [data-active]) {
4845
+ border-color: var(--mfui-colors-mfui\.color\.neutral\.border\.pressed);
4846
+ background-color: var(--mfui-colors-mfui\.color\.neutral\.sub-background\.pressed);
4847
+ }
4848
+
4849
+ .mfui-hRFDZx:has(input[type="checkbox"][role="switch"]:not(:disabled)):is(:active, [data-active]) [data-mfui-content="toggle-handle"] {
4850
+ background-color: var(--mfui-colors-mfui\.color\.neutral\.content\.pressed);
4851
+ }
4852
+
4853
+ .mfui-hRFDZx:has(input[type="checkbox"][role="switch"]:not(:disabled)) [data-mfui-content="toggle-handle"] {
4854
+ transform: translateY(-50%) translateX(0);
4855
+ background-color: var(--mfui-colors-mfui\.color\.neutral\.content\.none);
4856
+ width: var(--mfui-sizes-mfui\.size\.dimension\.toggle-switch-handle-off\.diameter\.comfort);
4857
+ height: var(--mfui-sizes-mfui\.size\.dimension\.toggle-switch-handle-off\.diameter\.comfort);
4858
+ }
4859
+
4860
+ .mfui-hRFDZx:has(input[type="checkbox"][role="switch"]:not(:disabled):checked) {
4861
+ border-width: 0;
4862
+ background-color: var(--mfui-colors-mfui\.color\.primary\.content\.none);
4863
+ }
4864
+
4865
+ .mfui-hRFDZx:has(input[type="checkbox"][role="switch"]:not(:disabled):checked) [data-mfui-content="toggle-handle"] {
4866
+ transform: translateY(-50%) translateX(calc(var(--mfui-sizes-mfui\.size\.dimension\.toggle-switch-container\.width\.comfort) - var(--mfui-sizes-mfui\.size\.dimension\.toggle-switch-handle-on\.diameter\.comfort) - 4px));
4867
+ background-color: var(--mfui-colors-mfui\.color\.base\.background\.none);
4868
+ width: var(--mfui-sizes-mfui\.size\.dimension\.toggle-switch-handle-on\.diameter\.comfort);
4869
+ height: var(--mfui-sizes-mfui\.size\.dimension\.toggle-switch-handle-on\.diameter\.comfort);
4870
+ }
4871
+
4872
+ .mfui-hRFDZx:has(input[type="checkbox"][role="switch"]:not(:disabled):checked):is(:hover, [data-hover]) {
4873
+ background-color: var(--mfui-colors-mfui\.color\.primary\.content\.hovered);
4874
+ }
4875
+
4876
+ .mfui-hRFDZx:has(input[type="checkbox"][role="switch"]:not(:disabled):checked):is(:hover, [data-hover]) [data-mfui-content="toggle-handle"] {
4877
+ background-color: var(--mfui-colors-mfui\.color\.base\.background\.hovered);
4878
+ }
4879
+
4880
+ .mfui-hRFDZx:has(input[type="checkbox"][role="switch"]:not(:disabled):checked):is(:active, [data-active]) {
4881
+ background-color: var(--mfui-colors-mfui\.color\.primary\.content\.pressed);
4882
+ }
4883
+
4884
+ .mfui-hRFDZx:has(input[type="checkbox"][role="switch"]:not(:disabled):checked):is(:active, [data-active]) [data-mfui-content="toggle-handle"] {
4885
+ background-color: var(--mfui-colors-mfui\.color\.base\.background\.pressed);
4886
+ }
4887
+
4888
+ .mfui-hRFDZx:has(input[type="checkbox"][role="switch"]:disabled) {
4889
+ border-width: 1px;
4890
+ border-style: solid;
4891
+ border-color: var(--mfui-colors-mfui\.color\.disabled\.border);
4892
+ background-color: var(--mfui-colors-mfui\.color\.disabled\.background);
4893
+ }
4894
+
4895
+ .mfui-hRFDZx:has(input[type="checkbox"][role="switch"]:disabled) [data-mfui-content="toggle-handle"] {
4896
+ transform: translateY(-50%) translateX(0);
4897
+ background-color: var(--mfui-colors-mfui\.color\.disabled\.content);
4898
+ width: var(--mfui-sizes-mfui\.size\.dimension\.toggle-switch-handle-off\.diameter\.comfort);
4899
+ height: var(--mfui-sizes-mfui\.size\.dimension\.toggle-switch-handle-off\.diameter\.comfort);
4900
+ }
4901
+
4902
+ .mfui-hRFDZx:has(input[type="checkbox"][role="switch"]:disabled:checked) {
4903
+ border-width: 0;
4904
+ background-color: var(--mfui-colors-mfui\.color\.disabled\.background);
4905
+ }
4906
+
4907
+ .mfui-hRFDZx:has(input[type="checkbox"][role="switch"]:disabled:checked) [data-mfui-content="toggle-handle"] {
4908
+ transform: translateY(-50%) translateX(calc(var(--mfui-sizes-mfui\.size\.dimension\.toggle-switch-container\.width\.comfort) - var(--mfui-sizes-mfui\.size\.dimension\.toggle-switch-handle-on\.diameter\.comfort) - 4px));
4909
+ background-color: var(--mfui-colors-mfui\.color\.base\.background\.none);
4910
+ width: var(--mfui-sizes-mfui\.size\.dimension\.toggle-switch-handle-on\.diameter\.comfort);
4911
+ height: var(--mfui-sizes-mfui\.size\.dimension\.toggle-switch-handle-on\.diameter\.comfort);
4912
+ }
4913
+
4914
+ .mfui-hRFDZx:has(input[type="checkbox"][role="switch"]:not(:disabled):focus-visible) {
4915
+ border-color: var(--mfui-colors-mfui\.color\.neutral\.border\.hovered);
4916
+ background-color: var(--mfui-colors-mfui\.color\.neutral\.sub-background\.hovered);
4917
+ }
4918
+
4919
+ .mfui-hRFDZx:has(input[type="checkbox"][role="switch"]:not(:disabled):focus-visible):is(:active, [data-active]) {
4920
+ border-color: var(--mfui-colors-mfui\.color\.neutral\.border\.pressed);
4921
+ background-color: var(--mfui-colors-mfui\.color\.neutral\.sub-background\.pressed);
4922
+ }
4923
+
4924
+ .mfui-hRFDZx:has(input[type="checkbox"][role="switch"]:not(:disabled):focus-visible):is(:active, [data-active]) [data-mfui-content="toggle-handle"] {
4925
+ background-color: var(--mfui-colors-mfui\.color\.neutral\.content\.pressed);
4926
+ }
4927
+
4928
+ .mfui-hRFDZx:has(input[type="checkbox"][role="switch"]:not(:disabled):focus-visible) [data-mfui-content="toggle-handle"] {
4929
+ background-color: var(--mfui-colors-mfui\.color\.neutral\.content\.hovered);
4930
+ }
4931
+
4932
+ .mfui-hRFDZx:has(input[type="checkbox"][role="switch"]:not(:disabled):focus-visible:checked) {
4933
+ background-color: var(--mfui-colors-mfui\.color\.primary\.content\.hovered);
4934
+ }
4935
+
4936
+ .mfui-hRFDZx:has(input[type="checkbox"][role="switch"]:not(:disabled):focus-visible:checked) [data-mfui-content="toggle-handle"] {
4937
+ background-color: var(--mfui-colors-mfui\.color\.base\.background\.hovered);
4938
+ }
4939
+
4940
+ .mfui-hRFDZx:has(input[type="checkbox"][role="switch"]:not(:disabled):focus-visible:checked):is(:active, [data-active]) {
4941
+ background-color: var(--mfui-colors-mfui\.color\.primary\.content\.pressed);
4942
+ }
4943
+
4944
+ .mfui-hRFDZx:has(input[type="checkbox"][role="switch"]:not(:disabled):focus-visible:checked):is(:active, [data-active]) [data-mfui-content="toggle-handle"] {
4945
+ background-color: var(--mfui-colors-mfui\.color\.base\.background\.pressed);
4946
+ }
4947
+
4948
+ .mfui-ikFLrp {
4949
+ margin: 0;
4950
+ position: absolute;
4951
+ opacity: 0;
4952
+ cursor: pointer;
4953
+ width: 100%;
4954
+ height: 100%;
4955
+ }
4956
+
4957
+ .mfui-ikFLrp:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
4958
+ cursor: not-allowed;
4959
+ }
4960
+
4961
+ .mfui-fcwQxJ {
4962
+ border-radius: 50%;
4963
+ transition: transform 0.1s linear, background-color 0.1s linear, width 0.1s linear, height 0.1s linear;
4964
+ position: absolute;
4965
+ top: 50%;
4966
+ left: 2px;
4967
+ }
4968
+
4769
4969
  @media screen and (min-width: 37.5rem) {
4770
4970
  .mfui-hveqnu {
4771
4971
  width: var(--mfui-sizes-mfui\.layout\.area\.horizontal\.fixed);
@@ -4783,6 +4983,16 @@
4783
4983
  }
4784
4984
 
4785
4985
  @media screen and (max-width: 37.4975rem) {
4986
+ .mfui-kKZmYK > button,.mfui-kKZmYK > a {
4987
+ border-radius: 0;
4988
+ align-self: stretch;
4989
+ box-sizing: border-box;
4990
+ width: 32px;
4991
+ height: 100%;
4992
+ }
4993
+ .mfui-eaWFxK[data-mfui-has-clear-button="true"] > [data-mfui-content="select-box-trigger-display-value"] {
4994
+ padding-right: 32px;
4995
+ }
4786
4996
  .mfui-cLkjup {
4787
4997
  gap: 0;
4788
4998
  flex-direction: column;
@@ -4794,6 +5004,13 @@
4794
5004
  }
4795
5005
  .mfui-fOVWuV,.mfui-eeUwUZ {
4796
5006
  display: none;
5007
+ }
5008
+ .mfui-dJSysX,.mfui-jCnbql {
5009
+ width: 32px;
5010
+ height: 32px;
5011
+ }
5012
+ .mfui-fKGEVz[data-mfui-has-clear-button="true"] > [data-mfui-content="filter-trigger-display-value"] {
5013
+ padding-right: 32px;
4797
5014
  }
4798
5015
  }
4799
5016
 
@@ -5357,7 +5574,7 @@
5357
5574
  }
5358
5575
 
5359
5576
  .mfui-pYbRG {
5360
- padding-block: calc(4px - 1px);
5577
+ padding-block: 0;
5361
5578
  padding-inline: var(--mfui-spacing-mfui\.size\.padding\.input\.horizontal\.comfort);
5362
5579
  border-radius: var(--mfui-radii-mfui\.size\.radius\.control-component\.comfort);
5363
5580
  border-width: var(--mfui-border-widths-mfui\.size\.border\.base\.width\.comfort);
@@ -5393,7 +5610,7 @@
5393
5610
  }
5394
5611
 
5395
5612
  .mfui-dgiHoK {
5396
- padding-block: calc(12px - 1px);
5613
+ padding-block: 0;
5397
5614
  padding-inline: var(--mfui-spacing-mfui\.size\.padding\.input\.horizontal\.impact);
5398
5615
  border-radius: var(--mfui-radii-mfui\.size\.radius\.control-component\.impact);
5399
5616
  border-width: var(--mfui-border-widths-mfui\.size\.border\.base\.width\.impact);
@@ -5457,6 +5674,19 @@
5457
5674
  min-width: var(--mfui-sizes-mfui\.size\.dimension\.icon\.square\.condensed);
5458
5675
  }
5459
5676
 
5677
+ .mfui-iOuOfJ {
5678
+ padding-inline: calc(var(--mfui-spacing-mfui\.size\.padding\.input\.horizontal\.impact) - 1px);
5679
+ gap: var(--mfui-spacing-mfui\.size\.spacing\.icon-and-text\.horizontal\.impact);
5680
+ border-radius: var(--mfui-radii-mfui\.size\.radius\.control-component\.impact);
5681
+ height: var(--mfui-sizes-mfui\.size\.dimension\.control-component\.height\.impact);
5682
+ min-width: var(--mfui-sizes-mfui\.size\.target\.button\.impact);
5683
+ }
5684
+
5685
+ .mfui-iOuOfJ > svg {
5686
+ height: var(--mfui-sizes-mfui\.size\.dimension\.icon\.square\.comfort);
5687
+ min-width: var(--mfui-sizes-mfui\.size\.dimension\.icon\.square\.comfort);
5688
+ }
5689
+
5460
5690
  .mfui-ctWvwW[data-mfui-group-label="true"]:not(:first-child) {
5461
5691
  border: none;
5462
5692
  border-top: 1px solid;
@@ -5865,24 +6095,22 @@
5865
6095
  }
5866
6096
 
5867
6097
  .mfui-cIEpCk::before {
5868
- content: "";
5869
- position: absolute;
5870
- top: 0;
5871
- left: 0;
5872
- width: 100%;
5873
- height: calc(100% + 1px);
5874
6098
  border-right-width: var(--mfui-border-widths-mfui\.size\.border\.fixed-cell\.horizontal\.comfort);
5875
6099
  border-right-style: solid;
5876
6100
  border-right-color: var(--mfui-colors-mfui\.color\.neutral\.sub-border\.none);
5877
6101
  }
5878
6102
 
5879
- .mfui-hUucnT::before {
6103
+ .mfui-cIEpCk::before,.mfui-hUucnT::before {
5880
6104
  content: "";
5881
6105
  position: absolute;
6106
+ pointer-events: none;
5882
6107
  top: 0;
5883
6108
  left: 0;
5884
6109
  width: 100%;
5885
6110
  height: calc(100% + 1px);
6111
+ }
6112
+
6113
+ .mfui-hUucnT::before {
5886
6114
  border-left-width: var(--mfui-border-widths-mfui\.size\.border\.fixed-cell\.horizontal\.comfort);
5887
6115
  border-left-style: solid;
5888
6116
  border-left-color: var(--mfui-colors-mfui\.color\.neutral\.sub-border\.none);
@@ -5942,24 +6170,22 @@
5942
6170
  }
5943
6171
 
5944
6172
  .mfui-krlGLX::before {
5945
- content: "";
5946
- position: absolute;
5947
- top: 0;
5948
- left: 0;
5949
- width: 100%;
5950
- height: calc(100% + 1px);
5951
6173
  border-right-width: var(--mfui-border-widths-mfui\.size\.border\.fixed-cell\.horizontal\.comfort);
5952
6174
  border-right-style: solid;
5953
6175
  border-right-color: var(--mfui-colors-mfui\.color\.neutral\.sub-border\.none);
5954
6176
  }
5955
6177
 
5956
- .mfui-iRKnkw::before {
6178
+ .mfui-krlGLX::before,.mfui-iRKnkw::before {
5957
6179
  content: "";
5958
6180
  position: absolute;
6181
+ pointer-events: none;
5959
6182
  top: 0;
5960
6183
  left: 0;
5961
6184
  width: 100%;
5962
6185
  height: calc(100% + 1px);
6186
+ }
6187
+
6188
+ .mfui-iRKnkw::before {
5963
6189
  border-left-width: var(--mfui-border-widths-mfui\.size\.border\.fixed-cell\.horizontal\.comfort);
5964
6190
  border-left-style: solid;
5965
6191
  border-left-color: var(--mfui-colors-mfui\.color\.neutral\.sub-border\.none);
@@ -6353,7 +6579,6 @@
6353
6579
  }
6354
6580
 
6355
6581
  .mfui-hkNPlg {
6356
- padding-block: 0;
6357
6582
  border-radius: var(--mfui-radii-mfui\.size\.radius\.control-component\.condensed);
6358
6583
  min-height: var(--mfui-sizes-mfui\.size\.dimension\.control-component\.height\.condensed);
6359
6584
  }
@@ -6368,7 +6593,6 @@
6368
6593
  }
6369
6594
 
6370
6595
  .mfui-egyfZK {
6371
- padding-block: calc(4px - 1px);
6372
6596
  border-radius: var(--mfui-radii-mfui\.size\.radius\.control-component\.comfort);
6373
6597
  min-height: var(--mfui-sizes-mfui\.size\.dimension\.control-component\.height\.comfort);
6374
6598
  }
@@ -6383,7 +6607,6 @@
6383
6607
  }
6384
6608
 
6385
6609
  .mfui-kEKma {
6386
- padding-block: calc(12px - 1px);
6387
6610
  border-radius: var(--mfui-radii-mfui\.size\.radius\.control-component\.impact);
6388
6611
  min-height: var(--mfui-sizes-mfui\.size\.dimension\.control-component\.height\.impact);
6389
6612
  }
@@ -6861,6 +7084,15 @@
6861
7084
  }
6862
7085
  .mfui-chYhcn {
6863
7086
  display: none;
7087
+ }
7088
+ .mfui-bhqKGD {
7089
+ height: calc(var(--mfui-sizes-mfui\.size\.dimension\.control-component\.height\.comfort) - 2px);
7090
+ }
7091
+ .mfui-cVdOLL {
7092
+ height: calc(var(--mfui-sizes-mfui\.size\.dimension\.control-component\.height\.condensed) - 2px);
7093
+ }
7094
+ .mfui-dINjxp {
7095
+ height: calc(var(--mfui-sizes-mfui\.size\.dimension\.control-component\.height\.impact) - 2px);
6864
7096
  }
6865
7097
  .mfui-euqku {
6866
7098
  font-family: var(--mfui-fonts-mfui\.typography\.font-family\.input\.narrow);