@moneyforward/mfui-components 3.7.0 → 3.9.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/dist/src/DataGrid/index.d.ts +16 -8
- package/dist/src/DataGrid/index.js +9 -1
- package/dist/src/{DataGrid/DataGrid.d.ts → DataTable/DataTable.d.ts} +94 -82
- package/dist/src/{DataGrid/DataGrid.js → DataTable/DataTable.js} +120 -97
- package/dist/src/{DataGrid/DataGrid.types.d.ts → DataTable/DataTable.types.d.ts} +11 -11
- package/dist/src/DataTable/DataTableBody/DataTableBody.d.ts +1 -0
- package/dist/src/DataTable/DataTableBody/DataTableBody.js +19 -0
- package/dist/src/{DataGrid/DataGridBody/DataGridBody.types.d.ts → DataTable/DataTableBody/DataTableBody.types.d.ts} +2 -2
- package/dist/src/DataTable/DataTableBody/index.d.ts +2 -0
- package/dist/src/DataTable/DataTableBody/index.js +1 -0
- package/dist/src/DataTable/DataTableCell/DataTableCell.d.ts +2 -0
- package/dist/src/{DataGrid/DataGridCell/DataGridCell.js → DataTable/DataTableCell/DataTableCell.js} +20 -13
- package/dist/src/{DataGrid/DataGridCell/DataGridCell.types.d.ts → DataTable/DataTableCell/DataTableCell.types.d.ts} +8 -8
- package/dist/src/DataTable/DataTableCell/index.d.ts +2 -0
- package/dist/src/DataTable/DataTableCell/index.js +1 -0
- package/dist/src/DataTable/DataTableHeader/DataTableHeader.d.ts +1 -0
- package/dist/src/DataTable/DataTableHeader/DataTableHeader.js +12 -0
- package/dist/src/{DataGrid/DataGridHeader/DataGridHeader.types.d.ts → DataTable/DataTableHeader/DataTableHeader.types.d.ts} +2 -2
- package/dist/src/DataTable/DataTableHeader/index.d.ts +2 -0
- package/dist/src/DataTable/DataTableHeader/index.js +1 -0
- package/dist/src/DataTable/DataTableHeaderCell/DataTableHeaderCell.d.ts +2 -0
- package/dist/src/DataTable/DataTableHeaderCell/DataTableHeaderCell.js +58 -0
- package/dist/src/{DataGrid/DataGridHeaderCell/DataGridHeaderCell.types.d.ts → DataTable/DataTableHeaderCell/DataTableHeaderCell.types.d.ts} +6 -6
- package/dist/src/DataTable/DataTableHeaderCell/index.d.ts +2 -0
- package/dist/src/DataTable/DataTableHeaderCell/index.js +1 -0
- package/dist/src/DataTable/DataTableHeaderRow/DataTableHeaderRow.d.ts +2 -0
- package/dist/src/DataTable/DataTableHeaderRow/DataTableHeaderRow.js +31 -0
- package/dist/src/{DataGrid/DataGridHeaderRow/DataGridHeaderRow.types.d.ts → DataTable/DataTableHeaderRow/DataTableHeaderRow.types.d.ts} +3 -3
- package/dist/src/DataTable/DataTableHeaderRow/index.d.ts +2 -0
- package/dist/src/DataTable/DataTableHeaderRow/index.js +1 -0
- package/dist/src/DataTable/DataTableProvider.d.ts +27 -0
- package/dist/src/{DataGrid/DataGridProvider.js → DataTable/DataTableProvider.js} +9 -9
- package/dist/src/DataTable/DataTableRow/DataTableRow.d.ts +2 -0
- package/dist/src/{DataGrid/DataGridRow/DataGridRow.js → DataTable/DataTableRow/DataTableRow.js} +11 -10
- package/dist/src/{DataGrid/DataGridRow/DataGridRow.types.d.ts → DataTable/DataTableRow/DataTableRow.types.d.ts} +5 -5
- package/dist/src/DataTable/DataTableRow/index.d.ts +2 -0
- package/dist/src/DataTable/DataTableRow/index.js +1 -0
- package/dist/src/DataTable/index.d.ts +8 -0
- package/dist/src/DataTable/index.js +1 -0
- package/dist/src/MainNavigation/BaseMainNavigation.js +25 -10
- package/dist/src/MainNavigation/MainNavigation.types.d.ts +49 -1
- package/dist/src/MainNavigation/NarrowViewportMainNavigation.js +17 -2
- package/dist/src/MultipleSelectBox/index.d.ts +1 -1
- package/dist/src/SelectBox/SelectBox.js +3 -3
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.js +1 -0
- package/dist/src/utilities/dom/useFixedColumns.d.ts +1 -1
- package/dist/src/utilities/dom/useFixedColumns.js +1 -1
- package/dist/src/utilities/react/isComponentOrWrapped.d.ts +7 -7
- package/dist/src/utilities/react/isComponentOrWrapped.js +7 -7
- package/dist/styled-system/recipes/base-main-navigation-slot-recipe.d.ts +1 -1
- package/dist/styled-system/recipes/base-main-navigation-slot-recipe.js +12 -0
- package/dist/styled-system/recipes/data-table-body-slot-recipe.d.ts +33 -0
- package/dist/styled-system/recipes/data-table-body-slot-recipe.js +28 -0
- package/dist/styled-system/recipes/data-table-cell-slot-recipe.d.ts +38 -0
- package/dist/styled-system/recipes/data-table-cell-slot-recipe.js +77 -0
- package/dist/styled-system/recipes/data-table-header-cell-slot-recipe.d.ts +37 -0
- package/dist/styled-system/recipes/data-table-header-cell-slot-recipe.js +73 -0
- package/dist/styled-system/recipes/data-table-header-row-slot-recipe.d.ts +33 -0
- package/dist/styled-system/recipes/data-table-header-row-slot-recipe.js +28 -0
- package/dist/styled-system/recipes/data-table-header-slot-recipe.d.ts +33 -0
- package/dist/styled-system/recipes/data-table-header-slot-recipe.js +35 -0
- package/dist/styled-system/recipes/data-table-row-slot-recipe.d.ts +36 -0
- package/dist/styled-system/recipes/{data-grid-row-slot-recipe.js → data-table-row-slot-recipe.js} +13 -13
- package/dist/styled-system/recipes/data-table-slot-recipe.d.ts +36 -0
- package/dist/styled-system/recipes/data-table-slot-recipe.js +45 -0
- package/dist/styled-system/recipes/index.d.ts +7 -7
- package/dist/styled-system/recipes/index.js +7 -7
- package/dist/styled-system/recipes/narrow-viewport-main-navigation-slot-recipe.d.ts +1 -1
- package/dist/styled-system/recipes/narrow-viewport-main-navigation-slot-recipe.js +12 -0
- package/dist/styled-system/tokens/index.js +117 -117
- package/dist/styled-system/tokens/tokens.d.ts +2 -2
- package/dist/styles.css +131 -102
- package/dist/theme-orange.css +3 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/dist/src/DataGrid/DataGridBody/DataGridBody.d.ts +0 -1
- package/dist/src/DataGrid/DataGridBody/DataGridBody.js +0 -17
- package/dist/src/DataGrid/DataGridBody/index.d.ts +0 -2
- package/dist/src/DataGrid/DataGridBody/index.js +0 -1
- package/dist/src/DataGrid/DataGridCell/DataGridCell.d.ts +0 -2
- package/dist/src/DataGrid/DataGridCell/index.d.ts +0 -2
- package/dist/src/DataGrid/DataGridCell/index.js +0 -1
- package/dist/src/DataGrid/DataGridHeader/DataGridHeader.d.ts +0 -1
- package/dist/src/DataGrid/DataGridHeader/DataGridHeader.js +0 -11
- package/dist/src/DataGrid/DataGridHeader/index.d.ts +0 -2
- package/dist/src/DataGrid/DataGridHeader/index.js +0 -1
- package/dist/src/DataGrid/DataGridHeaderCell/DataGridHeaderCell.d.ts +0 -2
- package/dist/src/DataGrid/DataGridHeaderCell/DataGridHeaderCell.js +0 -50
- package/dist/src/DataGrid/DataGridHeaderCell/index.d.ts +0 -2
- package/dist/src/DataGrid/DataGridHeaderCell/index.js +0 -1
- package/dist/src/DataGrid/DataGridHeaderRow/DataGridHeaderRow.d.ts +0 -2
- package/dist/src/DataGrid/DataGridHeaderRow/DataGridHeaderRow.js +0 -30
- package/dist/src/DataGrid/DataGridHeaderRow/index.d.ts +0 -2
- package/dist/src/DataGrid/DataGridHeaderRow/index.js +0 -1
- package/dist/src/DataGrid/DataGridProvider.d.ts +0 -27
- package/dist/src/DataGrid/DataGridRow/DataGridRow.d.ts +0 -2
- package/dist/src/DataGrid/DataGridRow/index.d.ts +0 -2
- package/dist/src/DataGrid/DataGridRow/index.js +0 -1
- package/dist/styled-system/recipes/data-grid-body-slot-recipe.d.ts +0 -33
- package/dist/styled-system/recipes/data-grid-body-slot-recipe.js +0 -28
- package/dist/styled-system/recipes/data-grid-cell-slot-recipe.d.ts +0 -38
- package/dist/styled-system/recipes/data-grid-cell-slot-recipe.js +0 -77
- package/dist/styled-system/recipes/data-grid-header-cell-slot-recipe.d.ts +0 -37
- package/dist/styled-system/recipes/data-grid-header-cell-slot-recipe.js +0 -73
- package/dist/styled-system/recipes/data-grid-header-row-slot-recipe.d.ts +0 -33
- package/dist/styled-system/recipes/data-grid-header-row-slot-recipe.js +0 -28
- package/dist/styled-system/recipes/data-grid-header-slot-recipe.d.ts +0 -33
- package/dist/styled-system/recipes/data-grid-header-slot-recipe.js +0 -35
- package/dist/styled-system/recipes/data-grid-row-slot-recipe.d.ts +0 -36
- package/dist/styled-system/recipes/data-grid-slot-recipe.d.ts +0 -36
- package/dist/styled-system/recipes/data-grid-slot-recipe.js +0 -45
- /package/dist/src/{DataGrid/DataGrid.types.js → DataTable/DataTable.types.js} +0 -0
- /package/dist/src/{DataGrid/DataGridBody/DataGridBody.types.js → DataTable/DataTableBody/DataTableBody.types.js} +0 -0
- /package/dist/src/{DataGrid/DataGridCell/DataGridCell.types.js → DataTable/DataTableCell/DataTableCell.types.js} +0 -0
- /package/dist/src/{DataGrid/DataGridHeader/DataGridHeader.types.js → DataTable/DataTableHeader/DataTableHeader.types.js} +0 -0
- /package/dist/src/{DataGrid/DataGridHeaderCell/DataGridHeaderCell.types.js → DataTable/DataTableHeaderCell/DataTableHeaderCell.types.js} +0 -0
- /package/dist/src/{DataGrid/DataGridHeaderRow/DataGridHeaderRow.types.js → DataTable/DataTableHeaderRow/DataTableHeaderRow.types.js} +0 -0
- /package/dist/src/{DataGrid/DataGridRow/DataGridRow.types.js → DataTable/DataTableRow/DataTableRow.types.js} +0 -0
- /package/dist/src/{DataGrid → DataTable}/utils/handleCheckbox.d.ts +0 -0
- /package/dist/src/{DataGrid → DataTable}/utils/handleCheckbox.js +0 -0
package/dist/styles.css
CHANGED
|
@@ -252,7 +252,9 @@
|
|
|
252
252
|
--mfui-sizes-mfui\.layout\.area\.horizontal\.floating-default: 448px;
|
|
253
253
|
--mfui-sizes-mfui\.layout\.area\.horizontal\.fixed: 588px;
|
|
254
254
|
--mfui-sizes-mfui\.layout\.area\.vertical\.global-header: 48px;
|
|
255
|
-
|
|
255
|
+
--mfui-sizes-mfui\.layout\.grid\.scale\.vertical\.2: 48px;
|
|
256
|
+
--mfui-sizes-mfui\.layout\.grid\.scale\.vertical\.0-1of3: 8px;
|
|
257
|
+
--mfui-sizes-mfui\.layout\.grid\.scale\.vertical\.1-1of4: 30px;
|
|
256
258
|
--mfui-sizes-mfui\.layout\.safe-area\.edge\.horizontal: 49px;
|
|
257
259
|
--mfui-sizes-mfui\.layout\.safe-area\.edge\.vertical: 48px;
|
|
258
260
|
--mfui-sizes-mfui\.size\.dimension\.control-component\.height\.comfort: 32px;
|
|
@@ -260,9 +262,9 @@
|
|
|
260
262
|
--mfui-sizes-mfui\.size\.dimension\.control-component\.height\.impact: 48px;
|
|
261
263
|
--mfui-sizes-mfui\.size\.dimension\.control-container\.height\.comfort: 48px;
|
|
262
264
|
--mfui-sizes-mfui\.size\.dimension\.header\.height\.comfort: 48px;
|
|
263
|
-
--mfui-sizes-mfui\.size\.dimension\.data-
|
|
264
|
-
--mfui-sizes-mfui\.size\.dimension\.data-
|
|
265
|
-
--mfui-sizes-mfui\.size\.dimension\.data-
|
|
265
|
+
--mfui-sizes-mfui\.size\.dimension\.data-table-cell\.height\.comfort: 48px;
|
|
266
|
+
--mfui-sizes-mfui\.size\.dimension\.data-table-cell\.height\.condensed: 32px;
|
|
267
|
+
--mfui-sizes-mfui\.size\.dimension\.data-table-disclosure-inidicator\.width\.comfort: 21px;
|
|
266
268
|
--mfui-sizes-mfui\.size\.dimension\.badge\.diameter\.comfort: 7px;
|
|
267
269
|
--mfui-sizes-mfui\.size\.dimension\.icon\.square\.comfort: 18px;
|
|
268
270
|
--mfui-sizes-mfui\.size\.dimension\.icon\.square\.condensed: 14px;
|
|
@@ -307,10 +309,10 @@
|
|
|
307
309
|
--mfui-spacing-mfui\.size\.padding\.main-content\.horizontal\.comfort: 14px;
|
|
308
310
|
--mfui-spacing-mfui\.size\.padding\.main-content\.top\.comfort: 12px;
|
|
309
311
|
--mfui-spacing-mfui\.size\.padding\.main-content\.bottom\.comfort: 48px;
|
|
310
|
-
--mfui-spacing-mfui\.size\.padding\.data-
|
|
311
|
-
--mfui-spacing-mfui\.size\.padding\.data-
|
|
312
|
-
--mfui-spacing-mfui\.size\.padding\.data-
|
|
313
|
-
--mfui-spacing-mfui\.size\.padding\.data-
|
|
312
|
+
--mfui-spacing-mfui\.size\.padding\.data-table-cell\.horizontal\.comfort: 7px;
|
|
313
|
+
--mfui-spacing-mfui\.size\.padding\.data-table-cell\.horizontal\.condensed: 7px;
|
|
314
|
+
--mfui-spacing-mfui\.size\.padding\.data-table-cell\.vertical\.comfort: 12px;
|
|
315
|
+
--mfui-spacing-mfui\.size\.padding\.data-table-cell\.vertical\.condensed: 4px;
|
|
314
316
|
--mfui-spacing-mfui\.size\.padding\.display-table-cell\.horizontal\.comfort: 14px;
|
|
315
317
|
--mfui-spacing-mfui\.size\.padding\.display-table-cell\.horizontal-indent-1\.comfort: 28px;
|
|
316
318
|
--mfui-spacing-mfui\.size\.padding\.display-table-cell\.horizontal-indent-2\.comfort: 42px;
|
|
@@ -1772,6 +1774,20 @@
|
|
|
1772
1774
|
height: var(--mfui-sizes-mfui\.size\.dimension\.icon\.square\.comfort);
|
|
1773
1775
|
}
|
|
1774
1776
|
|
|
1777
|
+
.mfui-jsaEqi {
|
|
1778
|
+
padding-inline: var(--mfui-spacing-mfui\.size\.padding\.container\.horizontal\.comfort);
|
|
1779
|
+
border-bottom: 1px solid;
|
|
1780
|
+
border-color: var(--mfui-colors-mfui\.color\.dark-accent\.border\.none);
|
|
1781
|
+
display: flex;
|
|
1782
|
+
padding-block-start: var(--mfui-sizes-mfui\.layout\.grid\.scale\.vertical\.2);
|
|
1783
|
+
padding-block-end: calc(var(--mfui-sizes-mfui\.layout\.grid\.scale\.vertical\.0-1of3) - 1px);
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1786
|
+
.mfui-gmJOED {
|
|
1787
|
+
color: var(--mfui-colors-mfui\.color\.dark-accent\.content\.none);
|
|
1788
|
+
overflow-wrap: anywhere;
|
|
1789
|
+
}
|
|
1790
|
+
|
|
1775
1791
|
.mfui-iXDdvS {
|
|
1776
1792
|
list-style: none;
|
|
1777
1793
|
}
|
|
@@ -2117,6 +2133,19 @@
|
|
|
2117
2133
|
height: var(--mfui-sizes-mfui\.size\.dimension\.icon\.square\.comfort);
|
|
2118
2134
|
}
|
|
2119
2135
|
|
|
2136
|
+
.mfui-iMbGRc {
|
|
2137
|
+
padding-inline: var(--mfui-spacing-mfui\.size\.padding\.container\.horizontal\.comfort);
|
|
2138
|
+
border-bottom: 1px solid;
|
|
2139
|
+
border-color: var(--mfui-colors-mfui\.color\.dark-accent\.border\.none);
|
|
2140
|
+
padding-block-start: var(--mfui-sizes-mfui\.layout\.grid\.scale\.vertical\.2);
|
|
2141
|
+
padding-block-end: var(--mfui-sizes-mfui\.layout\.grid\.scale\.vertical\.0-1of3);
|
|
2142
|
+
}
|
|
2143
|
+
|
|
2144
|
+
.mfui-gkzbmJ {
|
|
2145
|
+
color: var(--mfui-colors-mfui\.color\.dark-accent\.content\.none);
|
|
2146
|
+
overflow-wrap: anywhere;
|
|
2147
|
+
}
|
|
2148
|
+
|
|
2120
2149
|
.mfui-eyCsIU {
|
|
2121
2150
|
list-style: none;
|
|
2122
2151
|
}
|
|
@@ -2676,19 +2705,19 @@
|
|
|
2676
2705
|
top: 50%;
|
|
2677
2706
|
}
|
|
2678
2707
|
|
|
2679
|
-
.mfui-
|
|
2708
|
+
.mfui-dDOVnx {
|
|
2680
2709
|
vertical-align: top;
|
|
2681
2710
|
}
|
|
2682
2711
|
|
|
2683
|
-
.mfui-
|
|
2712
|
+
.mfui-dDOVnx:first-child {
|
|
2684
2713
|
padding-left: var(--mfui-spacing-mfui\.size\.padding\.container\.horizontal\.comfort);
|
|
2685
2714
|
}
|
|
2686
2715
|
|
|
2687
|
-
.mfui-
|
|
2716
|
+
.mfui-dDOVnx:last-child {
|
|
2688
2717
|
padding-right: var(--mfui-spacing-mfui\.size\.padding\.container\.horizontal\.comfort);
|
|
2689
2718
|
}
|
|
2690
2719
|
|
|
2691
|
-
.mfui-
|
|
2720
|
+
.mfui-hYiFZu,.mfui-fUSGoR {
|
|
2692
2721
|
display: flex;
|
|
2693
2722
|
align-items: flex-start;
|
|
2694
2723
|
justify-content: flex-start;
|
|
@@ -2699,47 +2728,47 @@
|
|
|
2699
2728
|
width: 100%;
|
|
2700
2729
|
}
|
|
2701
2730
|
|
|
2702
|
-
.mfui-
|
|
2731
|
+
.mfui-fUSGoR {
|
|
2703
2732
|
cursor: pointer;
|
|
2704
2733
|
}
|
|
2705
2734
|
|
|
2706
|
-
.mfui-
|
|
2735
|
+
.mfui-fUSGoR:is(:focus, [data-focus]),.mfui-fUSGoR:is(:hover, [data-hover]) {
|
|
2707
2736
|
border-color: var(--mfui-colors-mfui\.color\.neutral\.thin-border\.hovered);
|
|
2708
2737
|
color: var(--mfui-colors-mfui\.color\.base\.content\.hovered);
|
|
2709
2738
|
background-color: var(--mfui-colors-mfui\.color\.base\.background\.hovered);
|
|
2710
2739
|
}
|
|
2711
2740
|
|
|
2712
|
-
.mfui-
|
|
2741
|
+
.mfui-fUSGoR:is(:active, [data-active]) {
|
|
2713
2742
|
border-color: var(--mfui-colors-mfui\.color\.neutral\.thin-border\.pressed);
|
|
2714
2743
|
color: var(--mfui-colors-mfui\.color\.base\.content\.pressed);
|
|
2715
2744
|
background-color: var(--mfui-colors-mfui\.color\.base\.background\.pressed);
|
|
2716
2745
|
}
|
|
2717
2746
|
|
|
2718
|
-
.mfui-
|
|
2747
|
+
.mfui-hsfdKA {
|
|
2719
2748
|
place-items: center;
|
|
2720
2749
|
display: grid;
|
|
2721
2750
|
flex-shrink: 0;
|
|
2722
2751
|
height: 24px;
|
|
2723
|
-
width: var(--mfui-sizes-mfui\.size\.dimension\.data-
|
|
2752
|
+
width: var(--mfui-sizes-mfui\.size\.dimension\.data-table-disclosure-inidicator\.width\.comfort);
|
|
2724
2753
|
}
|
|
2725
2754
|
|
|
2726
|
-
.mfui-
|
|
2755
|
+
.mfui-hsfdKA > svg {
|
|
2727
2756
|
width: var(--mfui-sizes-mfui\.size\.dimension\.icon\.square\.comfort);
|
|
2728
2757
|
height: var(--mfui-sizes-mfui\.size\.dimension\.icon\.square\.comfort);
|
|
2729
2758
|
}
|
|
2730
2759
|
|
|
2731
|
-
.mfui-
|
|
2732
|
-
min-width: var(--mfui-sizes-mfui\.size\.dimension\.data-
|
|
2760
|
+
.mfui-cpiGBN {
|
|
2761
|
+
min-width: var(--mfui-sizes-mfui\.size\.dimension\.data-table-disclosure-inidicator\.width\.comfort);
|
|
2733
2762
|
}
|
|
2734
2763
|
|
|
2735
|
-
.mfui-
|
|
2736
|
-
padding-inline: var(--mfui-spacing-mfui\.size\.padding\.data-
|
|
2764
|
+
.mfui-eHfYTg {
|
|
2765
|
+
padding-inline: var(--mfui-spacing-mfui\.size\.padding\.data-table-cell\.horizontal\.comfort);
|
|
2737
2766
|
padding-block: 5px;
|
|
2738
2767
|
margin-block: var(--mfui-spacing-mfui\.size\.padding\.display-table-cell\.vertical\.comfort);
|
|
2739
2768
|
height: 24px;
|
|
2740
2769
|
}
|
|
2741
2770
|
|
|
2742
|
-
.mfui-
|
|
2771
|
+
.mfui-kKZIFS {
|
|
2743
2772
|
overflow: auto;
|
|
2744
2773
|
position: relative;
|
|
2745
2774
|
z-index: 0;
|
|
@@ -2748,14 +2777,14 @@
|
|
|
2748
2777
|
max-height: 100%;
|
|
2749
2778
|
}
|
|
2750
2779
|
|
|
2751
|
-
.mfui-
|
|
2780
|
+
.mfui-gTPmFP {
|
|
2752
2781
|
border-collapse: collapse;
|
|
2753
2782
|
border-spacing: 0;
|
|
2754
2783
|
width: 100%;
|
|
2755
2784
|
height: fit-content;
|
|
2756
2785
|
}
|
|
2757
2786
|
|
|
2758
|
-
.mfui-
|
|
2787
|
+
.mfui-kCEZwb {
|
|
2759
2788
|
padding-block: var(--mfui-spacing-mfui\.size\.padding\.container\.vertical\.comfort);
|
|
2760
2789
|
display: flex;
|
|
2761
2790
|
justify-content: center;
|
|
@@ -2763,21 +2792,21 @@
|
|
|
2763
2792
|
width: 100%;
|
|
2764
2793
|
}
|
|
2765
2794
|
|
|
2766
|
-
.mfui-
|
|
2795
|
+
.mfui-jMpBJi {
|
|
2767
2796
|
border-color: var(--mfui-colors-mfui\.color\.neutral\.sub-border\.none);
|
|
2768
2797
|
background-color: var(--mfui-colors-mfui\.color\.neutral\.sub-background\.none);
|
|
2769
2798
|
border-bottom-style: solid;
|
|
2770
2799
|
}
|
|
2771
2800
|
|
|
2772
|
-
.mfui-
|
|
2801
|
+
.mfui-jMpBJi:first-child {
|
|
2773
2802
|
padding-left: var(--mfui-spacing-mfui\.size\.padding\.container\.horizontal\.comfort);
|
|
2774
2803
|
}
|
|
2775
2804
|
|
|
2776
|
-
.mfui-
|
|
2805
|
+
.mfui-jMpBJi:last-child {
|
|
2777
2806
|
padding-right: var(--mfui-spacing-mfui\.size\.padding\.container\.horizontal\.comfort);
|
|
2778
2807
|
}
|
|
2779
2808
|
|
|
2780
|
-
.mfui-
|
|
2809
|
+
.mfui-bfpAMt,.mfui-hdXyCU {
|
|
2781
2810
|
display: flex;
|
|
2782
2811
|
align-items: flex-start;
|
|
2783
2812
|
justify-content: flex-start;
|
|
@@ -2788,41 +2817,41 @@
|
|
|
2788
2817
|
width: 100%;
|
|
2789
2818
|
}
|
|
2790
2819
|
|
|
2791
|
-
.mfui-
|
|
2820
|
+
.mfui-hdXyCU {
|
|
2792
2821
|
cursor: pointer;
|
|
2793
2822
|
}
|
|
2794
2823
|
|
|
2795
|
-
.mfui-
|
|
2824
|
+
.mfui-hdXyCU:is(:focus, [data-focus]) {
|
|
2796
2825
|
border-color: var(--mfui-colors-mfui\.color\.neutral\.sub-border\.hovered);
|
|
2797
2826
|
color: var(--mfui-colors-mfui\.color\.base\.content\.hovered);
|
|
2798
2827
|
background-color: var(--mfui-colors-mfui\.color\.neutral\.sub-background\.hovered);
|
|
2799
2828
|
}
|
|
2800
2829
|
|
|
2801
|
-
.mfui-
|
|
2830
|
+
.mfui-hdXyCU:is(:focus, [data-focus]) .mfui-DataTableHeaderCell__unsortedIcon {
|
|
2802
2831
|
color: var(--mfui-colors-mfui\.color\.base\.sub-content\.hovered);
|
|
2803
2832
|
}
|
|
2804
2833
|
|
|
2805
|
-
.mfui-
|
|
2834
|
+
.mfui-hdXyCU:is(:hover, [data-hover]) {
|
|
2806
2835
|
border-color: var(--mfui-colors-mfui\.color\.neutral\.sub-border\.hovered);
|
|
2807
2836
|
color: var(--mfui-colors-mfui\.color\.base\.content\.hovered);
|
|
2808
2837
|
background-color: var(--mfui-colors-mfui\.color\.neutral\.sub-background\.hovered);
|
|
2809
2838
|
}
|
|
2810
2839
|
|
|
2811
|
-
.mfui-
|
|
2840
|
+
.mfui-hdXyCU:is(:hover, [data-hover]) .mfui-DataTableHeaderCell__unsortedIcon {
|
|
2812
2841
|
color: var(--mfui-colors-mfui\.color\.base\.sub-content\.hovered);
|
|
2813
2842
|
}
|
|
2814
2843
|
|
|
2815
|
-
.mfui-
|
|
2844
|
+
.mfui-hdXyCU:is(:active, [data-active]) {
|
|
2816
2845
|
border-color: var(--mfui-colors-mfui\.color\.neutral\.sub-border\.pressed);
|
|
2817
2846
|
color: var(--mfui-colors-mfui\.color\.base\.content\.pressed);
|
|
2818
2847
|
background-color: var(--mfui-colors-mfui\.color\.neutral\.sub-background\.pressed);
|
|
2819
2848
|
}
|
|
2820
2849
|
|
|
2821
|
-
.mfui-
|
|
2850
|
+
.mfui-hdXyCU:is(:active, [data-active]) .mfui-DataTableHeaderCell__unsortedIcon {
|
|
2822
2851
|
color: var(--mfui-colors-mfui\.color\.base\.sub-content\.pressed);
|
|
2823
2852
|
}
|
|
2824
2853
|
|
|
2825
|
-
.mfui-
|
|
2854
|
+
.mfui-cLQxue {
|
|
2826
2855
|
display: flex;
|
|
2827
2856
|
align-items: center;
|
|
2828
2857
|
justify-content: center;
|
|
@@ -2831,18 +2860,18 @@
|
|
|
2831
2860
|
width: var(--mfui-sizes-mfui\.size\.dimension\.icon\.square\.comfort);
|
|
2832
2861
|
}
|
|
2833
2862
|
|
|
2834
|
-
.mfui-
|
|
2863
|
+
.mfui-eYfdJx {
|
|
2835
2864
|
height: 100%;
|
|
2836
2865
|
width: 100%;
|
|
2837
2866
|
}
|
|
2838
2867
|
|
|
2839
|
-
.mfui-
|
|
2868
|
+
.mfui-gmeZOP {
|
|
2840
2869
|
color: var(--mfui-colors-mfui\.color\.base\.sub-content\.none);
|
|
2841
2870
|
height: 100%;
|
|
2842
2871
|
width: 100%;
|
|
2843
2872
|
}
|
|
2844
2873
|
|
|
2845
|
-
.mfui-
|
|
2874
|
+
.mfui-jQQUJR {
|
|
2846
2875
|
border-color: var(--mfui-colors-mfui\.color\.neutral\.thin-border\.none);
|
|
2847
2876
|
outline: 2px solid transparent;
|
|
2848
2877
|
outline-offset: 2px;
|
|
@@ -2852,7 +2881,7 @@
|
|
|
2852
2881
|
border-bottom-width: var(--mfui-border-widths-mfui\.size\.border\.base\.width\.comfort);
|
|
2853
2882
|
}
|
|
2854
2883
|
|
|
2855
|
-
.mfui-
|
|
2884
|
+
.mfui-jQQUJR:last-child {
|
|
2856
2885
|
border-bottom-width: 0;
|
|
2857
2886
|
}
|
|
2858
2887
|
|
|
@@ -5839,66 +5868,66 @@
|
|
|
5839
5868
|
padding-right: calc(var(--mfui-spacing-mfui\.size\.padding\.input\.horizontal\.comfort) + var(--mfui-spacing-mfui\.size\.spacing\.icon-and-text\.horizontal\.comfort) + var(--mfui-sizes-mfui\.size\.dimension\.icon-button\.square\.comfort));
|
|
5840
5869
|
}
|
|
5841
5870
|
|
|
5842
|
-
.mfui-
|
|
5843
|
-
padding-block: var(--mfui-spacing-mfui\.size\.padding\.data-
|
|
5844
|
-
padding-inline: var(--mfui-spacing-mfui\.size\.padding\.data-
|
|
5845
|
-
min-height: var(--mfui-sizes-mfui\.size\.dimension\.data-
|
|
5871
|
+
.mfui-kYxCkD,.mfui-hXNotk {
|
|
5872
|
+
padding-block: var(--mfui-spacing-mfui\.size\.padding\.data-table-cell\.vertical\.condensed);
|
|
5873
|
+
padding-inline: var(--mfui-spacing-mfui\.size\.padding\.data-table-cell\.horizontal\.condensed);
|
|
5874
|
+
min-height: var(--mfui-sizes-mfui\.size\.dimension\.data-table-cell\.height\.condensed);
|
|
5846
5875
|
}
|
|
5847
5876
|
|
|
5848
|
-
.mfui-
|
|
5849
|
-
padding-block: var(--mfui-spacing-mfui\.size\.padding\.data-
|
|
5850
|
-
padding-inline: var(--mfui-spacing-mfui\.size\.padding\.data-
|
|
5851
|
-
min-height: var(--mfui-sizes-mfui\.size\.dimension\.data-
|
|
5877
|
+
.mfui-jGTRXd,.mfui-iHntsS {
|
|
5878
|
+
padding-block: var(--mfui-spacing-mfui\.size\.padding\.data-table-cell\.vertical\.comfort);
|
|
5879
|
+
padding-inline: var(--mfui-spacing-mfui\.size\.padding\.data-table-cell\.horizontal\.comfort);
|
|
5880
|
+
min-height: var(--mfui-sizes-mfui\.size\.dimension\.data-table-cell\.height\.comfort);
|
|
5852
5881
|
}
|
|
5853
5882
|
|
|
5854
|
-
.mfui-
|
|
5883
|
+
.mfui-coGcRr {
|
|
5855
5884
|
width: 32px;
|
|
5856
5885
|
min-width: 32px;
|
|
5857
5886
|
max-width: 32px;
|
|
5858
5887
|
}
|
|
5859
5888
|
|
|
5860
|
-
.mfui-
|
|
5889
|
+
.mfui-kQhdmg:not(:disabled, [disabled], [data-disabled]):not(:has(input:disabled)) {
|
|
5861
5890
|
cursor: pointer;
|
|
5862
5891
|
}
|
|
5863
5892
|
|
|
5864
|
-
.mfui-
|
|
5893
|
+
.mfui-kQhdmg:not(:disabled, [disabled], [data-disabled]):not(:has(input:disabled)):is(:hover, [data-hover]),.mfui-kQhdmg:not(:disabled, [disabled], [data-disabled]):not(:has(input:disabled)):is(:focus-visible, [data-focus-visible]) {
|
|
5865
5894
|
background-color: var(--mfui-colors-mfui\.color\.selected\.background\.hovered);
|
|
5866
5895
|
}
|
|
5867
5896
|
|
|
5868
|
-
.mfui-
|
|
5897
|
+
.mfui-kQhdmg:not(:disabled, [disabled], [data-disabled]):not(:has(input:disabled)):is(:active, [data-active]) {
|
|
5869
5898
|
background-color: var(--mfui-colors-mfui\.color\.selected\.background\.pressed);
|
|
5870
5899
|
}
|
|
5871
5900
|
|
|
5872
|
-
.mfui-
|
|
5901
|
+
.mfui-kQhdmg:not(:disabled, [disabled], [data-disabled]):not(:has(input:disabled)):has(input[type="checkbox"]:not(:disabled):focus-visible) {
|
|
5873
5902
|
background-color: var(--mfui-colors-mfui\.color\.selected\.background\.hovered);
|
|
5874
5903
|
}
|
|
5875
5904
|
|
|
5876
|
-
.mfui-
|
|
5905
|
+
.mfui-kQhdmg:not(:disabled, [disabled], [data-disabled]):not(:has(input:disabled)) input[type="checkbox"]:focus-visible {
|
|
5877
5906
|
outline: 2px solid transparent;
|
|
5878
5907
|
outline-offset: 2px;
|
|
5879
5908
|
box-shadow: none;
|
|
5880
5909
|
}
|
|
5881
5910
|
|
|
5882
|
-
.mfui-
|
|
5911
|
+
.mfui-iYntBf:is(:focus, [data-focus]),.mfui-iYntBf:is(:hover, [data-hover]) {
|
|
5883
5912
|
background-color: var(--mfui-colors-mfui\.color\.selected\.background\.hovered);
|
|
5884
5913
|
}
|
|
5885
5914
|
|
|
5886
|
-
.mfui-
|
|
5915
|
+
.mfui-iYntBf:is(:active, [data-active]) {
|
|
5887
5916
|
background-color: var(--mfui-colors-mfui\.color\.selected\.background\.pressed);
|
|
5888
5917
|
}
|
|
5889
5918
|
|
|
5890
|
-
.mfui-
|
|
5919
|
+
.mfui-bGysdM {
|
|
5891
5920
|
position: sticky;
|
|
5892
5921
|
background-color: inherit;
|
|
5893
5922
|
}
|
|
5894
5923
|
|
|
5895
|
-
.mfui-
|
|
5924
|
+
.mfui-izXzGC::before {
|
|
5896
5925
|
border-right-width: var(--mfui-border-widths-mfui\.size\.border\.fixed-cell\.horizontal\.comfort);
|
|
5897
5926
|
border-right-style: solid;
|
|
5898
5927
|
border-right-color: var(--mfui-colors-mfui\.color\.neutral\.sub-border\.none);
|
|
5899
5928
|
}
|
|
5900
5929
|
|
|
5901
|
-
.mfui-
|
|
5930
|
+
.mfui-izXzGC::before,.mfui-LTiTZ::before {
|
|
5902
5931
|
content: "";
|
|
5903
5932
|
position: absolute;
|
|
5904
5933
|
pointer-events: none;
|
|
@@ -5908,72 +5937,72 @@
|
|
|
5908
5937
|
height: calc(100% + 1px);
|
|
5909
5938
|
}
|
|
5910
5939
|
|
|
5911
|
-
.mfui-
|
|
5940
|
+
.mfui-LTiTZ::before {
|
|
5912
5941
|
border-left-width: var(--mfui-border-widths-mfui\.size\.border\.fixed-cell\.horizontal\.comfort);
|
|
5913
5942
|
border-left-style: solid;
|
|
5914
5943
|
border-left-color: var(--mfui-colors-mfui\.color\.neutral\.sub-border\.none);
|
|
5915
5944
|
}
|
|
5916
5945
|
|
|
5917
|
-
.mfui-
|
|
5946
|
+
.mfui-cyVYhU,.mfui-ePuaEb {
|
|
5918
5947
|
justify-content: flex-start;
|
|
5919
5948
|
text-align: left;
|
|
5920
5949
|
}
|
|
5921
5950
|
|
|
5922
|
-
.mfui-
|
|
5951
|
+
.mfui-gLvFNp,.mfui-eEdyCy {
|
|
5923
5952
|
justify-content: flex-end;
|
|
5924
5953
|
text-align: right;
|
|
5925
5954
|
}
|
|
5926
5955
|
|
|
5927
|
-
.mfui-
|
|
5956
|
+
.mfui-caARyM {
|
|
5928
5957
|
border-style: solid;
|
|
5929
5958
|
border-width: var(--mfui-border-widths-mfui\.size\.border\.base\.width\.comfort);
|
|
5930
5959
|
border-color: var(--mfui-colors-mfui\.color\.neutral\.sub-border\.none);
|
|
5931
5960
|
border-radius: var(--mfui-radii-mfui\.size\.radius\.control-component\.comfort);
|
|
5932
5961
|
}
|
|
5933
5962
|
|
|
5934
|
-
.mfui-
|
|
5963
|
+
.mfui-hUuodk {
|
|
5935
5964
|
border-block-style: solid;
|
|
5936
5965
|
border-block-width: var(--mfui-border-widths-mfui\.size\.border\.base\.width\.comfort);
|
|
5937
5966
|
border-block-color: var(--mfui-colors-mfui\.color\.neutral\.sub-border\.none);
|
|
5938
5967
|
}
|
|
5939
5968
|
|
|
5940
|
-
.mfui-
|
|
5969
|
+
.mfui-hdvqtp {
|
|
5941
5970
|
width: 100%;
|
|
5942
5971
|
}
|
|
5943
5972
|
|
|
5944
|
-
.mfui-
|
|
5973
|
+
.mfui-ihlTgP {
|
|
5945
5974
|
border-bottom-width: var(--mfui-border-widths-mfui\.size\.border\.base\.width\.condensed);
|
|
5946
5975
|
}
|
|
5947
5976
|
|
|
5948
|
-
.mfui-
|
|
5949
|
-
padding-block: var(--mfui-spacing-mfui\.size\.padding\.data-
|
|
5950
|
-
padding-inline: var(--mfui-spacing-mfui\.size\.padding\.data-
|
|
5977
|
+
.mfui-beBMeE,.mfui-fAMdSB {
|
|
5978
|
+
padding-block: var(--mfui-spacing-mfui\.size\.padding\.data-table-cell\.vertical\.condensed);
|
|
5979
|
+
padding-inline: var(--mfui-spacing-mfui\.size\.padding\.data-table-cell\.horizontal\.condensed);
|
|
5951
5980
|
gap: var(--mfui-spacing-mfui\.size\.spacing\.icon-and-text\.horizontal\.condensed);
|
|
5952
|
-
min-height: var(--mfui-sizes-mfui\.size\.dimension\.data-
|
|
5981
|
+
min-height: var(--mfui-sizes-mfui\.size\.dimension\.data-table-cell\.height\.condensed);
|
|
5953
5982
|
}
|
|
5954
5983
|
|
|
5955
|
-
.mfui-
|
|
5984
|
+
.mfui-gZhKjF {
|
|
5956
5985
|
border-bottom-width: var(--mfui-border-widths-mfui\.size\.border\.base\.width\.comfort);
|
|
5957
5986
|
}
|
|
5958
5987
|
|
|
5959
|
-
.mfui-
|
|
5960
|
-
padding-block: var(--mfui-spacing-mfui\.size\.padding\.data-
|
|
5961
|
-
padding-inline: var(--mfui-spacing-mfui\.size\.padding\.data-
|
|
5988
|
+
.mfui-cqyjeS,.mfui-lcyrJn {
|
|
5989
|
+
padding-block: var(--mfui-spacing-mfui\.size\.padding\.data-table-cell\.vertical\.comfort);
|
|
5990
|
+
padding-inline: var(--mfui-spacing-mfui\.size\.padding\.data-table-cell\.horizontal\.comfort);
|
|
5962
5991
|
gap: var(--mfui-spacing-mfui\.size\.spacing\.icon-and-text\.horizontal\.comfort);
|
|
5963
|
-
min-height: var(--mfui-sizes-mfui\.size\.dimension\.data-
|
|
5992
|
+
min-height: var(--mfui-sizes-mfui\.size\.dimension\.data-table-cell\.height\.comfort);
|
|
5964
5993
|
}
|
|
5965
5994
|
|
|
5966
|
-
.mfui-
|
|
5995
|
+
.mfui-ixFpNb {
|
|
5967
5996
|
position: sticky;
|
|
5968
5997
|
}
|
|
5969
5998
|
|
|
5970
|
-
.mfui-
|
|
5999
|
+
.mfui-fGBQCd::before {
|
|
5971
6000
|
border-right-width: var(--mfui-border-widths-mfui\.size\.border\.fixed-cell\.horizontal\.comfort);
|
|
5972
6001
|
border-right-style: solid;
|
|
5973
6002
|
border-right-color: var(--mfui-colors-mfui\.color\.neutral\.sub-border\.none);
|
|
5974
6003
|
}
|
|
5975
6004
|
|
|
5976
|
-
.mfui-
|
|
6005
|
+
.mfui-fGBQCd::before,.mfui-FJZOy::before {
|
|
5977
6006
|
content: "";
|
|
5978
6007
|
position: absolute;
|
|
5979
6008
|
pointer-events: none;
|
|
@@ -5983,55 +6012,55 @@
|
|
|
5983
6012
|
height: calc(100% + 1px);
|
|
5984
6013
|
}
|
|
5985
6014
|
|
|
5986
|
-
.mfui-
|
|
6015
|
+
.mfui-FJZOy::before {
|
|
5987
6016
|
border-left-width: var(--mfui-border-widths-mfui\.size\.border\.fixed-cell\.horizontal\.comfort);
|
|
5988
6017
|
border-left-style: solid;
|
|
5989
6018
|
border-left-color: var(--mfui-colors-mfui\.color\.neutral\.sub-border\.none);
|
|
5990
6019
|
}
|
|
5991
6020
|
|
|
5992
|
-
.mfui-
|
|
6021
|
+
.mfui-hdkeDU {
|
|
5993
6022
|
width: 32px;
|
|
5994
6023
|
}
|
|
5995
6024
|
|
|
5996
|
-
.mfui-
|
|
6025
|
+
.mfui-dQChFX:not(:disabled, [disabled], [data-disabled]) {
|
|
5997
6026
|
cursor: pointer;
|
|
5998
6027
|
}
|
|
5999
6028
|
|
|
6000
|
-
.mfui-
|
|
6029
|
+
.mfui-dQChFX:not(:disabled, [disabled], [data-disabled]):is(:hover, [data-hover]),.mfui-dQChFX:not(:disabled, [disabled], [data-disabled]):is(:focus-visible, [data-focus-visible]) {
|
|
6001
6030
|
background-color: var(--mfui-colors-mfui\.color\.neutral\.sub-background\.hovered);
|
|
6002
6031
|
}
|
|
6003
6032
|
|
|
6004
|
-
.mfui-
|
|
6033
|
+
.mfui-dQChFX:not(:disabled, [disabled], [data-disabled]):is(:active, [data-active]) {
|
|
6005
6034
|
background-color: var(--mfui-colors-mfui\.color\.neutral\.sub-background\.pressed);
|
|
6006
6035
|
}
|
|
6007
6036
|
|
|
6008
|
-
.mfui-
|
|
6037
|
+
.mfui-dQChFX:not(:disabled, [disabled], [data-disabled]):has(input[type="checkbox"]:not(:disabled):focus-visible) {
|
|
6009
6038
|
background-color: var(--mfui-colors-mfui\.color\.neutral\.sub-background\.hovered);
|
|
6010
6039
|
}
|
|
6011
6040
|
|
|
6012
|
-
.mfui-
|
|
6041
|
+
.mfui-dQChFX:not(:disabled, [disabled], [data-disabled]) input[type="checkbox"]:focus-visible {
|
|
6013
6042
|
outline: 2px solid transparent;
|
|
6014
6043
|
outline-offset: 2px;
|
|
6015
6044
|
box-shadow: none;
|
|
6016
6045
|
}
|
|
6017
6046
|
|
|
6018
|
-
.mfui-
|
|
6047
|
+
.mfui-dikbFv,.mfui-kqQAOe {
|
|
6019
6048
|
justify-content: flex-start;
|
|
6020
6049
|
text-align: left;
|
|
6021
6050
|
}
|
|
6022
6051
|
|
|
6023
|
-
.mfui-
|
|
6052
|
+
.mfui-iOviwi,.mfui-bpVUTX {
|
|
6024
6053
|
justify-content: flex-end;
|
|
6025
6054
|
text-align: right;
|
|
6026
6055
|
}
|
|
6027
6056
|
|
|
6028
|
-
.mfui-
|
|
6057
|
+
.mfui-eUCAOY {
|
|
6029
6058
|
position: sticky;
|
|
6030
6059
|
z-index: 2;
|
|
6031
6060
|
top: 0;
|
|
6032
6061
|
}
|
|
6033
6062
|
|
|
6034
|
-
.mfui-
|
|
6063
|
+
.mfui-eUCAOY::after {
|
|
6035
6064
|
content: "";
|
|
6036
6065
|
position: absolute;
|
|
6037
6066
|
bottom: 0;
|
|
@@ -6042,26 +6071,26 @@
|
|
|
6042
6071
|
border-bottom-color: var(--mfui-colors-mfui\.color\.neutral\.sub-border\.none);
|
|
6043
6072
|
}
|
|
6044
6073
|
|
|
6045
|
-
.mfui-
|
|
6074
|
+
.mfui-jbZNHv:last-child {
|
|
6046
6075
|
border-bottom-width: var(--mfui-border-widths-mfui\.size\.border\.base\.width\.comfort);
|
|
6047
6076
|
border-bottom-color: var(--mfui-colors-mfui\.color\.neutral\.thin-border\.none);
|
|
6048
6077
|
}
|
|
6049
6078
|
|
|
6050
|
-
.mfui-
|
|
6079
|
+
.mfui-eFCfCF {
|
|
6051
6080
|
background-color: var(--mfui-colors-mfui\.color\.selected\.background\.none);
|
|
6052
6081
|
}
|
|
6053
6082
|
|
|
6054
|
-
.mfui-
|
|
6083
|
+
.mfui-esNKtk {
|
|
6055
6084
|
cursor: pointer;
|
|
6056
6085
|
position: relative;
|
|
6057
6086
|
}
|
|
6058
6087
|
|
|
6059
|
-
.mfui-
|
|
6088
|
+
.mfui-esNKtk:is(:focus-visible, [data-focus-visible]) {
|
|
6060
6089
|
background-color: var(--mfui-colors-mfui\.color\.base\.background\.hovered);
|
|
6061
6090
|
color: var(--mfui-colors-mfui\.color\.base\.content\.hovered);
|
|
6062
6091
|
}
|
|
6063
6092
|
|
|
6064
|
-
.mfui-
|
|
6093
|
+
.mfui-esNKtk:is(:focus-visible, [data-focus-visible])::after {
|
|
6065
6094
|
content: "";
|
|
6066
6095
|
position: absolute;
|
|
6067
6096
|
box-shadow: 0px 0px 0px 2px var(--mfui-colors-mfui\.color\.primary\.border\.none) inset, 0px 0px 0px 3px var(--mfui-colors-mfui\.color\.base\.background\.none) inset;
|
|
@@ -6071,38 +6100,38 @@
|
|
|
6071
6100
|
height: 100%;
|
|
6072
6101
|
}
|
|
6073
6102
|
|
|
6074
|
-
.mfui-
|
|
6103
|
+
.mfui-esNKtk:has(input:focus-visible, input[data-focus-visible=true], textarea:focus-visible, textarea[data-focus-visible=true]) {
|
|
6075
6104
|
box-shadow: none;
|
|
6076
6105
|
}
|
|
6077
6106
|
|
|
6078
|
-
.mfui-
|
|
6107
|
+
.mfui-esNKtk:is(:hover, [data-hover]):not(:has(button:hover, input:hover, select:hover, textarea:hover, [tabindex]:hover)) {
|
|
6079
6108
|
background-color: var(--mfui-colors-mfui\.color\.base\.background\.hovered);
|
|
6080
6109
|
color: var(--mfui-colors-mfui\.color\.base\.content\.hovered);
|
|
6081
6110
|
}
|
|
6082
6111
|
|
|
6083
|
-
.mfui-
|
|
6112
|
+
.mfui-esNKtk:is(:active, [data-active]):not(:has(button:hover, input:hover, select:hover, textarea:hover, [tabindex]:hover)) {
|
|
6084
6113
|
background-color: var(--mfui-colors-mfui\.color\.base\.background\.pressed);
|
|
6085
6114
|
color: var(--mfui-colors-mfui\.color\.base\.content\.pressed);
|
|
6086
6115
|
}
|
|
6087
6116
|
|
|
6088
|
-
.mfui-
|
|
6117
|
+
.mfui-jZGzmE {
|
|
6089
6118
|
border-color: var(--mfui-colors-mfui\.color\.readonly\.border);
|
|
6090
6119
|
background-color: var(--mfui-colors-mfui\.color\.readonly\.background);
|
|
6091
6120
|
color: var(--mfui-colors-mfui\.color\.readonly\.content);
|
|
6092
6121
|
cursor: not-allowed;
|
|
6093
6122
|
}
|
|
6094
6123
|
|
|
6095
|
-
.mfui-
|
|
6124
|
+
.mfui-jZGzmE:is(:focus-visible, [data-focus-visible]) {
|
|
6096
6125
|
background-color: var(--mfui-colors-mfui\.color\.readonly\.background);
|
|
6097
6126
|
color: var(--mfui-colors-mfui\.color\.readonly\.content);
|
|
6098
6127
|
box-shadow: none;
|
|
6099
6128
|
}
|
|
6100
6129
|
|
|
6101
|
-
.mfui-
|
|
6130
|
+
.mfui-jZGzmE:is(:hover, [data-hover]) {
|
|
6102
6131
|
cursor: not-allowed;
|
|
6103
6132
|
}
|
|
6104
6133
|
|
|
6105
|
-
.mfui-
|
|
6134
|
+
.mfui-jZGzmE:is(:hover, [data-hover]),.mfui-jZGzmE:is(:active, [data-active]) {
|
|
6106
6135
|
background-color: var(--mfui-colors-mfui\.color\.readonly\.background);
|
|
6107
6136
|
color: var(--mfui-colors-mfui\.color\.readonly\.content);
|
|
6108
6137
|
}
|
package/dist/theme-orange.css
CHANGED
|
@@ -143,6 +143,9 @@
|
|
|
143
143
|
--mfui-colors-mfui\.color\.signal-green\.sub-background\.none: #c8f2d1ff;
|
|
144
144
|
--mfui-colors-mfui\.color\.signal-green\.sub-background\.hovered: #beeec9ff;
|
|
145
145
|
--mfui-colors-mfui\.color\.signal-green\.sub-background\.pressed: #b3eac0ff;
|
|
146
|
+
--mfui-colors-mfui\.color\.signal-neutral\.sub-background\.none: #f3f3f3ff;
|
|
147
|
+
--mfui-colors-mfui\.color\.signal-neutral\.sub-background\.hovered: #e2e2e2ff;
|
|
148
|
+
--mfui-colors-mfui\.color\.signal-neutral\.sub-background\.pressed: #d7d7d7ff;
|
|
146
149
|
--mfui-colors-mfui\.color\.signal-red\.content\.none: #d7383cff;
|
|
147
150
|
--mfui-colors-mfui\.color\.signal-red\.content\.hovered: #b40d24ff;
|
|
148
151
|
--mfui-colors-mfui\.color\.signal-red\.content\.pressed: #8a0017ff;
|