@moneyforward/mfui-components 3.2.0 → 3.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/dist/src/DateTimeSelection/shared/BasePicker/BasePicker.js +2 -2
- package/dist/src/DateTimeSelection/shared/CalendarGrid/CalendarGrid.js +3 -1
- package/dist/src/DisplayTable/DisplayTable.d.ts +3 -2
- package/dist/src/DisplayTable/DisplayTable.js +4 -3
- package/dist/src/DisplayTable/DisplayTable.types.d.ts +7 -0
- package/dist/src/DisplayTable/DisplayTableBody/DisplayTableBody.js +15 -0
- package/dist/src/DisplayTable/DisplayTableCell/DisplayTableCell.js +9 -2
- package/dist/src/DisplayTable/DisplayTableHeaderRow/DisplayTableHeaderRow.js +12 -1
- package/dist/src/DisplayTable/DisplayTableProvider.d.ts +8 -4
- package/dist/src/DisplayTable/DisplayTableProvider.js +12 -3
- package/dist/src/DropdownMenu/DropdownMenuItem/DropdownMenuItem.d.ts +1 -1
- package/dist/src/DropdownMenu/DropdownMenuItem/DropdownMenuItem.js +16 -4
- package/dist/src/DropdownMenu/DropdownMenuItem/DropdownMenuItem.types.d.ts +12 -0
- package/dist/src/MainNavigation/BaseMainNavigation.js +1 -1
- package/dist/src/MainNavigation/MainNavigation.types.d.ts +8 -0
- package/dist/src/MainNavigation/NarrowViewportMainNavigation.js +1 -1
- package/dist/src/MultipleSelectBox/MultipleSelectBox.d.ts +1 -1
- package/dist/src/MultipleSelectBox/MultipleSelectBox.js +65 -15
- package/dist/src/MultipleSelectBox/MultipleSelectBox.types.d.ts +86 -0
- package/dist/src/SelectBox/SelectBox.js +4 -4
- package/dist/src/SelectBox/SelectBox.types.d.ts +2 -2
- package/dist/src/Tag/Tag.js +1 -1
- package/dist/styled-system/recipes/display-table-cell-slot-recipe.d.ts +1 -1
- package/dist/styled-system/recipes/display-table-cell-slot-recipe.js +4 -0
- package/dist/styled-system/recipes/multiple-select-box-slot-recipe.d.ts +1 -1
- package/dist/styled-system/recipes/multiple-select-box-slot-recipe.js +24 -0
- package/dist/styled-system/recipes/select-box-slot-recipe.d.ts +1 -1
- package/dist/styled-system/recipes/select-box-slot-recipe.js +8 -0
- package/dist/styles.css +82 -22
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
- /package/dist/src/{SelectBox/hooks → utilities/dom}/useInfiniteScroll.d.ts +0 -0
- /package/dist/src/{SelectBox/hooks → utilities/dom}/useInfiniteScroll.js +0 -0
|
@@ -3,8 +3,61 @@ import { type VirtualizerOptions } from '@tanstack/react-virtual';
|
|
|
3
3
|
import { type SearchBoxProps } from '../SearchBox';
|
|
4
4
|
import { type MultipleSelectBoxTriggerProps, type PassedProps } from './MultipleSelectBoxTrigger/MultipleSelectBoxTrigger.types';
|
|
5
5
|
import { type PopoverProps } from '../Popover';
|
|
6
|
+
import { type InfiniteScrollDirection } from '../utilities/dom/useInfiniteScroll';
|
|
6
7
|
export type AllowedValueTypes = string | number | undefined;
|
|
7
8
|
export type VirtualOptionTypes = Pick<VirtualizerOptions<HTMLElement, Element>, 'estimateSize' | 'overscan'>;
|
|
9
|
+
export type InfiniteScrollConfig = {
|
|
10
|
+
/**
|
|
11
|
+
* Enable infinite scroll functionality.
|
|
12
|
+
* When enabled, additional options can be loaded dynamically when scrolling.
|
|
13
|
+
*
|
|
14
|
+
* @default false
|
|
15
|
+
*/
|
|
16
|
+
enabled?: boolean;
|
|
17
|
+
/**
|
|
18
|
+
* Callback executed when more options need to be loaded.
|
|
19
|
+
* Called when user scrolls near the top or bottom of the options list.
|
|
20
|
+
*
|
|
21
|
+
* @param direction - The direction of loading ('forward' for bottom, 'backward' for top)
|
|
22
|
+
*/
|
|
23
|
+
onLoadMore?: (direction: InfiniteScrollDirection) => Promise<void>;
|
|
24
|
+
/**
|
|
25
|
+
* Whether there are more options available to load in the forward direction (bottom).
|
|
26
|
+
* Used to determine if infinite scroll should trigger when scrolling down.
|
|
27
|
+
*
|
|
28
|
+
* @default true
|
|
29
|
+
*/
|
|
30
|
+
hasNextPage?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
* Whether there are more options available to load in the backward direction (top).
|
|
33
|
+
* Used to determine if infinite scroll should trigger when scrolling up.
|
|
34
|
+
*
|
|
35
|
+
* @default true
|
|
36
|
+
*/
|
|
37
|
+
hasPreviousPage?: boolean;
|
|
38
|
+
/**
|
|
39
|
+
* The scroll threshold in pixels for triggering infinite scroll.
|
|
40
|
+
* When the scroll position is within this distance from the top or bottom,
|
|
41
|
+
* the onLoadMore callback will be triggered.
|
|
42
|
+
*
|
|
43
|
+
* @default 100
|
|
44
|
+
*/
|
|
45
|
+
threshold?: number;
|
|
46
|
+
/**
|
|
47
|
+
* The error message to display when loading fails.
|
|
48
|
+
* This message supports internationalization.
|
|
49
|
+
*
|
|
50
|
+
* @default "読み込みに失敗しました"
|
|
51
|
+
*/
|
|
52
|
+
errorMessage?: string;
|
|
53
|
+
/**
|
|
54
|
+
* The text for the retry button when loading fails.
|
|
55
|
+
* This message supports internationalization.
|
|
56
|
+
*
|
|
57
|
+
* @default "再読み込み"
|
|
58
|
+
*/
|
|
59
|
+
retryButtonText?: string;
|
|
60
|
+
};
|
|
8
61
|
export type MultipleSelectBoxOption<T extends AllowedValueTypes = string, AdditionalProps extends Record<string, unknown> = Record<string, never>> = ({
|
|
9
62
|
/**
|
|
10
63
|
* The label to be displayed in the list.
|
|
@@ -253,6 +306,14 @@ export type MultipleSelectBoxProps<T extends AllowedValueTypes = string, Additio
|
|
|
253
306
|
minWidth?: PopoverProps['minWidth'];
|
|
254
307
|
allowedPlacements?: PopoverProps['allowedPlacements'];
|
|
255
308
|
};
|
|
309
|
+
/**
|
|
310
|
+
* The properties for the popover wrapper element.
|
|
311
|
+
*
|
|
312
|
+
* @property maxHeight - The maximum height of the popover wrapper element.
|
|
313
|
+
*/
|
|
314
|
+
popoverWrapperProps?: {
|
|
315
|
+
maxHeight?: PopoverProps['maxHeight'];
|
|
316
|
+
};
|
|
256
317
|
/**
|
|
257
318
|
* Flag to indicate loading state of the options.
|
|
258
319
|
* When true, the MultipleSelectBox will display skeleton placeholders
|
|
@@ -334,4 +395,29 @@ export type MultipleSelectBoxProps<T extends AllowedValueTypes = string, Additio
|
|
|
334
395
|
* ```
|
|
335
396
|
*/
|
|
336
397
|
virtualizationOptions?: VirtualOptionTypes;
|
|
398
|
+
/**
|
|
399
|
+
* Configuration for infinite scroll behavior.
|
|
400
|
+
* Allows loading additional options dynamically when scrolling.
|
|
401
|
+
*
|
|
402
|
+
* @example
|
|
403
|
+
* ```tsx
|
|
404
|
+
* <MultipleSelectBox
|
|
405
|
+
* infiniteScroll={{
|
|
406
|
+
* enabled: true,
|
|
407
|
+
* onLoadMore: async (direction) => {
|
|
408
|
+
* // Load more options from API
|
|
409
|
+
* const newOptions = await fetchOptions(direction);
|
|
410
|
+
* setOptions(prev => direction === 'forward' ?
|
|
411
|
+
* [...prev, ...newOptions] :
|
|
412
|
+
* [...newOptions, ...prev]
|
|
413
|
+
* );
|
|
414
|
+
* },
|
|
415
|
+
* hasNextPage: true,
|
|
416
|
+
* threshold: 100
|
|
417
|
+
* }}
|
|
418
|
+
* />
|
|
419
|
+
* ```
|
|
420
|
+
*/
|
|
421
|
+
infiniteScroll?: InfiniteScrollConfig;
|
|
337
422
|
} & Pick<MultipleSelectBoxTriggerProps<T, AdditionalProps>, keyof PassedProps<T, AdditionalProps>>;
|
|
423
|
+
export { type InfiniteScrollDirection } from '../utilities/dom/useInfiniteScroll';
|
|
@@ -24,7 +24,7 @@ import { SelectBoxOptionComponent } from './SelectBoxOption';
|
|
|
24
24
|
import { SelectBoxOptionGroup } from './SelectBoxOptionGroup';
|
|
25
25
|
import { isOptionDisabled } from './utils/isSelectableOption';
|
|
26
26
|
import { useVirtualizedOptions } from './hooks/useVirtualizedOptions';
|
|
27
|
-
import { useInfiniteScroll } from '
|
|
27
|
+
import { useInfiniteScroll } from '../utilities/dom/useInfiniteScroll';
|
|
28
28
|
const DEFAULT_SCROLL_OPTIONS = {
|
|
29
29
|
behavior: 'auto',
|
|
30
30
|
block: 'center',
|
|
@@ -208,10 +208,10 @@ export const SelectBox = forwardRef((props, ref) => {
|
|
|
208
208
|
if (renderDisplayValue) {
|
|
209
209
|
return renderDisplayValue(localSelectedOption);
|
|
210
210
|
}
|
|
211
|
-
if (
|
|
212
|
-
return _jsx(Typography, { variant: "controlLabel", children:
|
|
211
|
+
if (localSelectedOption) {
|
|
212
|
+
return (_jsx(Typography, { variant: "controlLabel", className: cx(classes.displayValue, 'mfui-SelectBox__displayValue'), children: localSelectedOption.label }));
|
|
213
213
|
}
|
|
214
|
-
return (_jsx(Typography, { variant: "controlLabel",
|
|
214
|
+
return (_jsx(Typography, { variant: "controlLabel", className: cx(classes.placeholder, 'mfui-SelectBox__placeholder'), children: placeholder }));
|
|
215
215
|
};
|
|
216
216
|
const searchNode = enableSearchOptions ? (_jsx("div", { className: cx(classes.menuHeader, 'mfui-SelectBox__menuHeader'), children: _jsx(SearchBox, { ref: searchInputRef, enableClearButton: true, value: searchText, textBoxSize: "small", autoComplete: "off", onChange: onSearchTextChange, ...searchBoxProps }) })) : null;
|
|
217
217
|
// Render virtualized items - extracted for better maintainability
|
|
@@ -3,7 +3,7 @@ import { type VirtualizerOptions } from '@tanstack/react-virtual';
|
|
|
3
3
|
import { type SelectBoxSlotRecipeVariant } from '../../styled-system/recipes';
|
|
4
4
|
import { type SearchBoxProps } from '../SearchBox';
|
|
5
5
|
import { type PopoverProps } from '../Popover';
|
|
6
|
-
import { type InfiniteScrollDirection } from '
|
|
6
|
+
import { type InfiniteScrollDirection } from '../utilities/dom/useInfiniteScroll';
|
|
7
7
|
type AllowedValueTypes = string | number | undefined;
|
|
8
8
|
export type VirtualOptionTypes = Pick<VirtualizerOptions<HTMLElement, Element>, 'estimateSize' | 'overscan'>;
|
|
9
9
|
export type InfiniteScrollConfig = {
|
|
@@ -431,4 +431,4 @@ export type SelectBoxProps<T extends AllowedValueTypes = string, AdditionalProps
|
|
|
431
431
|
*/
|
|
432
432
|
infiniteScroll?: InfiniteScrollConfig;
|
|
433
433
|
};
|
|
434
|
-
export { type InfiniteScrollDirection } from '
|
|
434
|
+
export { type InfiniteScrollDirection } from '../utilities/dom/useInfiniteScroll';
|
package/dist/src/Tag/Tag.js
CHANGED
|
@@ -22,7 +22,7 @@ export function Tag({ label, onClick, href, customLinkComponent, disabled = fals
|
|
|
22
22
|
return (_jsx(FocusIndicator, { children: _jsxs("span", { className: cx(classes.root, 'mfui-Tag__root', className), children: [_jsx(Typography, { variant: "condensedInput", children: label }), onClose ? closeButton : null] }) }));
|
|
23
23
|
}
|
|
24
24
|
const InternalTag = href ? (customLinkComponent ?? 'a') : 'button';
|
|
25
|
-
const tagProps = href ? { href, target, rel } : { disabled, onClick };
|
|
25
|
+
const tagProps = href ? { href, target, rel } : { disabled, onClick, type: 'button' };
|
|
26
26
|
const WrapperTag = onClose ? 'div' : Fragment;
|
|
27
27
|
const wrapperProps = onClose ? { className: cx(classes.wrapper, 'mfui-Tag__wrapper', className) } : undefined;
|
|
28
28
|
return (_jsxs(WrapperTag, { ...wrapperProps, children: [_jsx(FocusIndicator, { children: _jsx(InternalTag, { className: cx(classes.root, 'mfui-Tag__root'), ...tagProps, children: _jsx(Typography, { variant: "condensedInput", children: label }) }) }), onClose ? closeButton : null] }));
|
|
@@ -13,7 +13,7 @@ type DisplayTableCellSlotRecipeVariantMap = {
|
|
|
13
13
|
[key in keyof DisplayTableCellSlotRecipeVariant]: Array<DisplayTableCellSlotRecipeVariant[key]>
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
type DisplayTableCellSlotRecipeSlot = "root" | "content" | "depthSpacing"
|
|
16
|
+
type DisplayTableCellSlotRecipeSlot = "root" | "content" | "depthSpacing" | "skeletonCell"
|
|
17
17
|
|
|
18
18
|
export type DisplayTableCellSlotRecipeVariantProps = {
|
|
19
19
|
[key in keyof DisplayTableCellSlotRecipeVariant]?: ConditionalValue<DisplayTableCellSlotRecipeVariant[key]> | undefined
|
|
@@ -14,6 +14,10 @@ const displayTableCellSlotRecipeSlotNames = [
|
|
|
14
14
|
[
|
|
15
15
|
"depthSpacing",
|
|
16
16
|
"DisplayTableCell__depthSpacing"
|
|
17
|
+
],
|
|
18
|
+
[
|
|
19
|
+
"skeletonCell",
|
|
20
|
+
"DisplayTableCell__skeletonCell"
|
|
17
21
|
]
|
|
18
22
|
];
|
|
19
23
|
const displayTableCellSlotRecipeSlotFns = /* @__PURE__ */ displayTableCellSlotRecipeSlotNames.map(([slotName, slotKey]) => [slotName, createRecipe(slotKey, displayTableCellSlotRecipeDefaultVariants, getSlotCompoundVariant(displayTableCellSlotRecipeCompoundVariants, slotName))]);
|
|
@@ -10,7 +10,7 @@ type MultipleSelectBoxSlotRecipeVariantMap = {
|
|
|
10
10
|
[key in keyof MultipleSelectBoxSlotRecipeVariant]: Array<MultipleSelectBoxSlotRecipeVariant[key]>
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
type MultipleSelectBoxSlotRecipeSlot = "popover" | "menuHeader" | "optionPanel" | "listBox" | "listItem" | "skeletonItem" | "emptyMessage" | "menuFooter"
|
|
13
|
+
type MultipleSelectBoxSlotRecipeSlot = "popover" | "menuHeader" | "optionPanel" | "listBox" | "listItem" | "skeletonItem" | "emptyMessage" | "menuFooter" | "scrollWrapper" | "infiniteScrollError" | "infiniteScrollErrorMessage" | "infiniteScrollErrorButton" | "infiniteScrollErrorIcon" | "infiniteScrollLoading"
|
|
14
14
|
|
|
15
15
|
export type MultipleSelectBoxSlotRecipeVariantProps = {
|
|
16
16
|
[key in keyof MultipleSelectBoxSlotRecipeVariant]?: ConditionalValue<MultipleSelectBoxSlotRecipeVariant[key]> | undefined
|
|
@@ -34,6 +34,30 @@ const multipleSelectBoxSlotRecipeSlotNames = [
|
|
|
34
34
|
[
|
|
35
35
|
"menuFooter",
|
|
36
36
|
"MultipleSelectBox__menuFooter"
|
|
37
|
+
],
|
|
38
|
+
[
|
|
39
|
+
"scrollWrapper",
|
|
40
|
+
"MultipleSelectBox__scrollWrapper"
|
|
41
|
+
],
|
|
42
|
+
[
|
|
43
|
+
"infiniteScrollError",
|
|
44
|
+
"MultipleSelectBox__infiniteScrollError"
|
|
45
|
+
],
|
|
46
|
+
[
|
|
47
|
+
"infiniteScrollErrorMessage",
|
|
48
|
+
"MultipleSelectBox__infiniteScrollErrorMessage"
|
|
49
|
+
],
|
|
50
|
+
[
|
|
51
|
+
"infiniteScrollErrorButton",
|
|
52
|
+
"MultipleSelectBox__infiniteScrollErrorButton"
|
|
53
|
+
],
|
|
54
|
+
[
|
|
55
|
+
"infiniteScrollErrorIcon",
|
|
56
|
+
"MultipleSelectBox__infiniteScrollErrorIcon"
|
|
57
|
+
],
|
|
58
|
+
[
|
|
59
|
+
"infiniteScrollLoading",
|
|
60
|
+
"MultipleSelectBox__infiniteScrollLoading"
|
|
37
61
|
]
|
|
38
62
|
];
|
|
39
63
|
const multipleSelectBoxSlotRecipeSlotFns = /* @__PURE__ */ multipleSelectBoxSlotRecipeSlotNames.map(([slotName, slotKey]) => [slotName, createRecipe(slotKey, multipleSelectBoxSlotRecipeDefaultVariants, getSlotCompoundVariant(multipleSelectBoxSlotRecipeCompoundVariants, slotName))]);
|
|
@@ -14,7 +14,7 @@ type SelectBoxSlotRecipeVariantMap = {
|
|
|
14
14
|
[key in keyof SelectBoxSlotRecipeVariant]: Array<SelectBoxSlotRecipeVariant[key]>
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
-
type SelectBoxSlotRecipeSlot = "trigger" | "triggerWrapper" | "clearButtonWrapper" | "popover" | "menuHeader" | "optionPanel" | "scrollWrapper" | "listBox" | "listItem" | "skeletonItem" | "emptyMessage" | "infiniteScrollError" | "infiniteScrollErrorMessage" | "infiniteScrollErrorButton" | "infiniteScrollErrorIcon" | "infiniteScrollLoading"
|
|
17
|
+
type SelectBoxSlotRecipeSlot = "trigger" | "triggerWrapper" | "clearButtonWrapper" | "displayValue" | "placeholder" | "popover" | "menuHeader" | "optionPanel" | "scrollWrapper" | "listBox" | "listItem" | "skeletonItem" | "emptyMessage" | "infiniteScrollError" | "infiniteScrollErrorMessage" | "infiniteScrollErrorButton" | "infiniteScrollErrorIcon" | "infiniteScrollLoading"
|
|
18
18
|
|
|
19
19
|
export type SelectBoxSlotRecipeVariantProps = {
|
|
20
20
|
[key in keyof SelectBoxSlotRecipeVariant]?: ConditionalValue<SelectBoxSlotRecipeVariant[key]> | undefined
|
|
@@ -17,6 +17,14 @@ const selectBoxSlotRecipeSlotNames = [
|
|
|
17
17
|
"clearButtonWrapper",
|
|
18
18
|
"SelectBox__clearButtonWrapper"
|
|
19
19
|
],
|
|
20
|
+
[
|
|
21
|
+
"displayValue",
|
|
22
|
+
"SelectBox__displayValue"
|
|
23
|
+
],
|
|
24
|
+
[
|
|
25
|
+
"placeholder",
|
|
26
|
+
"SelectBox__placeholder"
|
|
27
|
+
],
|
|
20
28
|
[
|
|
21
29
|
"popover",
|
|
22
30
|
"SelectBox__popover"
|
package/dist/styles.css
CHANGED
|
@@ -720,17 +720,17 @@
|
|
|
720
720
|
min-height: var(--mfui-sizes-mfui\.size\.dimension\.control-component\.height\.comfort);
|
|
721
721
|
}
|
|
722
722
|
|
|
723
|
+
.mfui-DYOKU:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
|
|
724
|
+
color: var(--mfui-colors-mfui\.color\.disabled\.content);
|
|
725
|
+
background-color: var(--mfui-colors-mfui\.color\.base\.background\.none);
|
|
726
|
+
}
|
|
727
|
+
|
|
723
728
|
.mfui-DYOKU[data-mfui-focusable=true]:is(:focus-visible, [data-focus-visible]) {
|
|
724
729
|
color: var(--mfui-colors-mfui\.color\.base\.content\.hovered);
|
|
725
730
|
background-color: var(--mfui-colors-mfui\.color\.base\.background\.hovered);
|
|
726
731
|
z-index: 1;
|
|
727
732
|
}
|
|
728
733
|
|
|
729
|
-
.mfui-DYOKU[data-mfui-focusable=true]:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
|
|
730
|
-
color: var(--mfui-colors-mfui\.color\.disabled\.content);
|
|
731
|
-
background-color: var(--mfui-colors-mfui\.color\.base\.background\.pressed);
|
|
732
|
-
}
|
|
733
|
-
|
|
734
734
|
.mfui-DYOKU[data-mfui-focusable=true]:is(:hover, [data-hover]):not(:disabled, [disabled], [data-disabled]) {
|
|
735
735
|
color: var(--mfui-colors-mfui\.color\.base\.content\.hovered);
|
|
736
736
|
background-color: var(--mfui-colors-mfui\.color\.base\.background\.hovered);
|
|
@@ -2801,6 +2801,13 @@
|
|
|
2801
2801
|
min-width: var(--mfui-sizes-mfui\.size\.dimension\.data-grid-disclosure-inidicator\.width\.comfort);
|
|
2802
2802
|
}
|
|
2803
2803
|
|
|
2804
|
+
.mfui-hrJUxa {
|
|
2805
|
+
padding-inline: var(--mfui-spacing-mfui\.size\.padding\.data-grid-cell\.horizontal\.comfort);
|
|
2806
|
+
padding-block: 5px;
|
|
2807
|
+
margin-block: var(--mfui-spacing-mfui\.size\.padding\.display-table-cell\.vertical\.comfort);
|
|
2808
|
+
height: 24px;
|
|
2809
|
+
}
|
|
2810
|
+
|
|
2804
2811
|
.mfui-fXPtIg {
|
|
2805
2812
|
overflow: auto;
|
|
2806
2813
|
position: relative;
|
|
@@ -3261,6 +3268,50 @@
|
|
|
3261
3268
|
bottom: 0;
|
|
3262
3269
|
}
|
|
3263
3270
|
|
|
3271
|
+
.mfui-eacekU {
|
|
3272
|
+
flex: 1 1 auto;
|
|
3273
|
+
overflow-y: auto;
|
|
3274
|
+
min-height: 0px;
|
|
3275
|
+
}
|
|
3276
|
+
|
|
3277
|
+
.mfui-dBhQXV {
|
|
3278
|
+
padding-inline: var(--mfui-spacing-mfui\.size\.padding\.control\.horizontal\.comfort);
|
|
3279
|
+
padding-block: 4px;
|
|
3280
|
+
gap: 4px;
|
|
3281
|
+
display: flex;
|
|
3282
|
+
flex-direction: column;
|
|
3283
|
+
justify-content: center;
|
|
3284
|
+
}
|
|
3285
|
+
|
|
3286
|
+
.mfui-bdFGwq {
|
|
3287
|
+
gap: 4px;
|
|
3288
|
+
display: flex;
|
|
3289
|
+
align-items: center;
|
|
3290
|
+
}
|
|
3291
|
+
|
|
3292
|
+
.mfui-bNdwmf {
|
|
3293
|
+
display: flex;
|
|
3294
|
+
justify-content: flex-end;
|
|
3295
|
+
}
|
|
3296
|
+
|
|
3297
|
+
.mfui-ehdBWy {
|
|
3298
|
+
color: var(--mfui-colors-mfui\.color\.signal-red\.content\.none);
|
|
3299
|
+
width: var(--mfui-sizes-mfui\.size\.dimension\.icon\.square\.comfort);
|
|
3300
|
+
height: var(--mfui-sizes-mfui\.size\.dimension\.icon\.square\.comfort);
|
|
3301
|
+
}
|
|
3302
|
+
|
|
3303
|
+
.mfui-bKkNJr {
|
|
3304
|
+
display: flex;
|
|
3305
|
+
justify-content: center;
|
|
3306
|
+
align-items: center;
|
|
3307
|
+
height: 32px;
|
|
3308
|
+
}
|
|
3309
|
+
|
|
3310
|
+
.mfui-bKkNJr .mfui-ProgressIndicator {
|
|
3311
|
+
width: 16px;
|
|
3312
|
+
height: 16px;
|
|
3313
|
+
}
|
|
3314
|
+
|
|
3264
3315
|
.mfui-frSlYl {
|
|
3265
3316
|
border: 1px solid;
|
|
3266
3317
|
gap: var(--mfui-spacing-mfui\.size\.spacing\.inline\.horizontal\.comfort);
|
|
@@ -4617,6 +4668,11 @@
|
|
|
4617
4668
|
vertical-align: top;
|
|
4618
4669
|
}
|
|
4619
4670
|
|
|
4671
|
+
.mfui-jypOde {
|
|
4672
|
+
padding-block: 5px;
|
|
4673
|
+
height: 24px;
|
|
4674
|
+
}
|
|
4675
|
+
|
|
4620
4676
|
.mfui-lkSlOI {
|
|
4621
4677
|
border: 1px solid var(--mfui-colors-mfui\.color\.neutral\.sub-border\.none);
|
|
4622
4678
|
display: flex;
|
|
@@ -6020,29 +6076,15 @@
|
|
|
6020
6076
|
}
|
|
6021
6077
|
|
|
6022
6078
|
.mfui-cKTSwl,.mfui-eguNxK {
|
|
6023
|
-
min-height: var(--mfui-sizes-mfui\.size\.dimension\.data-grid-cell\.height\.condensed);
|
|
6024
|
-
}
|
|
6025
|
-
|
|
6026
|
-
.mfui-cKTSwl,.mfui-eguNxK,.mfui-hfZRBD {
|
|
6027
6079
|
padding-block: var(--mfui-spacing-mfui\.size\.padding\.data-grid-cell\.vertical\.condensed);
|
|
6028
6080
|
padding-inline: var(--mfui-spacing-mfui\.size\.padding\.data-grid-cell\.horizontal\.condensed);
|
|
6029
|
-
|
|
6030
|
-
|
|
6031
|
-
.mfui-hfZRBD {
|
|
6032
|
-
height: var(--mfui-sizes-mfui\.size\.dimension\.data-grid-cell\.height\.condensed);
|
|
6081
|
+
min-height: var(--mfui-sizes-mfui\.size\.dimension\.data-grid-cell\.height\.condensed);
|
|
6033
6082
|
}
|
|
6034
6083
|
|
|
6035
6084
|
.mfui-ifJbzD,.mfui-lagYEk {
|
|
6036
|
-
min-height: var(--mfui-sizes-mfui\.size\.dimension\.data-grid-cell\.height\.comfort);
|
|
6037
|
-
}
|
|
6038
|
-
|
|
6039
|
-
.mfui-ifJbzD,.mfui-lagYEk,.mfui-VwckJ {
|
|
6040
6085
|
padding-block: var(--mfui-spacing-mfui\.size\.padding\.data-grid-cell\.vertical\.comfort);
|
|
6041
6086
|
padding-inline: var(--mfui-spacing-mfui\.size\.padding\.data-grid-cell\.horizontal\.comfort);
|
|
6042
|
-
|
|
6043
|
-
|
|
6044
|
-
.mfui-VwckJ {
|
|
6045
|
-
height: var(--mfui-sizes-mfui\.size\.dimension\.data-grid-cell\.height\.comfort);
|
|
6087
|
+
min-height: var(--mfui-sizes-mfui\.size\.dimension\.data-grid-cell\.height\.comfort);
|
|
6046
6088
|
}
|
|
6047
6089
|
|
|
6048
6090
|
.mfui-hCWOMt {
|
|
@@ -7106,11 +7148,17 @@
|
|
|
7106
7148
|
font-weight: var(--mfui-font-weights-mfui\.typography\.font-weight\.condensed-input\.narrow);
|
|
7107
7149
|
line-height: var(--mfui-line-heights-mfui\.typography\.line-height\.condensed-input\.narrow);
|
|
7108
7150
|
}
|
|
7109
|
-
.mfui-dlFVvi {
|
|
7151
|
+
.mfui-dlFVvi,.mfui-hROZmU,.mfui-iTaRhG {
|
|
7110
7152
|
font-family: var(--mfui-fonts-mfui\.typography\.font-family\.input\.narrow);
|
|
7111
7153
|
font-size: var(--mfui-font-sizes-mfui\.typography\.font-size\.input\.narrow);
|
|
7112
7154
|
font-weight: var(--mfui-font-weights-mfui\.typography\.font-weight\.input\.narrow);
|
|
7113
7155
|
line-height: var(--mfui-line-heights-mfui\.typography\.line-height\.input\.narrow);
|
|
7156
|
+
}
|
|
7157
|
+
.mfui-caqEqS,.mfui-jprhbA {
|
|
7158
|
+
font-family: var(--mfui-fonts-mfui\.typography\.font-family\.condensed-input\.narrow);
|
|
7159
|
+
font-size: var(--mfui-font-sizes-mfui\.typography\.font-size\.condensed-input\.narrow);
|
|
7160
|
+
font-weight: var(--mfui-font-weights-mfui\.typography\.font-weight\.condensed-input\.narrow);
|
|
7161
|
+
line-height: var(--mfui-line-heights-mfui\.typography\.line-height\.condensed-input\.narrow);
|
|
7114
7162
|
}
|
|
7115
7163
|
.mfui-iqpTgS {
|
|
7116
7164
|
align-items: flex-start;
|
|
@@ -7120,6 +7168,18 @@
|
|
|
7120
7168
|
}
|
|
7121
7169
|
.mfui-fnKRCp {
|
|
7122
7170
|
align-items: flex-end;
|
|
7171
|
+
}
|
|
7172
|
+
.mfui-eSkNXq,.mfui-fBrVbr,.mfui-bNQKjD {
|
|
7173
|
+
font-family: var(--mfui-fonts-mfui\.typography\.font-family\.input\.narrow);
|
|
7174
|
+
font-size: var(--mfui-font-sizes-mfui\.typography\.font-size\.input\.narrow);
|
|
7175
|
+
font-weight: var(--mfui-font-weights-mfui\.typography\.font-weight\.input\.narrow);
|
|
7176
|
+
line-height: var(--mfui-line-heights-mfui\.typography\.line-height\.input\.narrow);
|
|
7177
|
+
}
|
|
7178
|
+
.mfui-fQfOLY,.mfui-ccKtgp,.mfui-iLIvMR {
|
|
7179
|
+
font-family: var(--mfui-fonts-mfui\.typography\.font-family\.condensed-input\.narrow);
|
|
7180
|
+
font-size: var(--mfui-font-sizes-mfui\.typography\.font-size\.condensed-input\.narrow);
|
|
7181
|
+
font-weight: var(--mfui-font-weights-mfui\.typography\.font-weight\.condensed-input\.narrow);
|
|
7182
|
+
line-height: var(--mfui-line-heights-mfui\.typography\.line-height\.condensed-input\.narrow);
|
|
7123
7183
|
}
|
|
7124
7184
|
.mfui-dAPpSW,.mfui-edTKLG,.mfui-bRozDV {
|
|
7125
7185
|
display: none;
|