@moneyforward/mfui-components 3.19.0 → 3.21.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/CheckboxCard/CheckboxCard.js +1 -7
- package/dist/src/DateTimeSelection/DatePicker/DatePicker.js +2 -11
- package/dist/src/DateTimeSelection/DateRangePicker/DateRangePicker.d.ts +1 -1
- package/dist/src/DateTimeSelection/DateRangePicker/DateRangePicker.js +10 -2
- package/dist/src/DateTimeSelection/DateRangePicker/DateRangePicker.types.d.ts +14 -0
- package/dist/src/DateTimeSelection/DateRangePicker/DateRangePickerPopover/DateRangePickerPopover.js +13 -5
- package/dist/src/DateTimeSelection/DateRangePicker/DateRangePickerPopover/utilities/createDateRangePickerPopoverTestUtility.js +2 -2
- package/dist/src/DateTimeSelection/DateRangePicker/DateRangePickerProvider/DateRangePickerProvider.js +11 -12
- package/dist/src/DateTimeSelection/DateRangePicker/DateRangePickerTrigger/hooks/useDateRangeTriggerValueController.js +4 -3
- package/dist/src/DateTimeSelection/DateRangePicker/DateRangePickerTrigger/utilities/createDateRangePickerTriggerTestUtility.js +3 -1
- package/dist/src/DateTimeSelection/FilterDateRangePicker/DateRangePickerContent/DateRangePickerContent.d.ts +6 -0
- package/dist/src/DateTimeSelection/FilterDateRangePicker/DateRangePickerContent/DateRangePickerContent.js +33 -0
- package/dist/src/DateTimeSelection/FilterDateRangePicker/DateRangePickerContent/DateRangePickerContent.types.d.ts +17 -0
- package/dist/src/DateTimeSelection/FilterDateRangePicker/FilterDateRangePicker.d.ts +14 -0
- package/dist/src/DateTimeSelection/FilterDateRangePicker/FilterDateRangePicker.js +42 -0
- package/dist/src/DateTimeSelection/FilterDateRangePicker/FilterDateRangePicker.types.d.ts +78 -0
- package/dist/src/DateTimeSelection/FilterDateRangePicker/FilterDateRangePicker.types.js +1 -0
- package/dist/src/DateTimeSelection/FilterDateRangePicker/index.d.ts +2 -0
- package/dist/src/DateTimeSelection/FilterDateRangePicker/index.js +1 -0
- package/dist/src/DateTimeSelection/FilterMonthPicker/FilterMonthPicker.d.ts +14 -0
- package/dist/src/DateTimeSelection/FilterMonthPicker/FilterMonthPicker.js +75 -0
- package/dist/src/DateTimeSelection/FilterMonthPicker/FilterMonthPicker.types.d.ts +83 -0
- package/dist/src/DateTimeSelection/FilterMonthPicker/FilterMonthPicker.types.js +1 -0
- package/dist/src/DateTimeSelection/FilterMonthPicker/MonthPickerPopover/MonthPickerPopover.d.ts +6 -0
- package/dist/src/DateTimeSelection/FilterMonthPicker/MonthPickerPopover/MonthPickerPopover.js +45 -0
- package/dist/src/DateTimeSelection/FilterMonthPicker/MonthPickerPopover/MonthPickerPopover.types.d.ts +24 -0
- package/dist/src/DateTimeSelection/FilterMonthPicker/MonthPickerPopover/MonthPickerPopover.types.js +1 -0
- package/dist/src/DateTimeSelection/FilterMonthPicker/index.d.ts +2 -0
- package/dist/src/DateTimeSelection/FilterMonthPicker/index.js +1 -0
- package/dist/src/DateTimeSelection/FilterMonthRangePicker/FilterMonthRangePicker.d.ts +15 -0
- package/dist/src/DateTimeSelection/FilterMonthRangePicker/FilterMonthRangePicker.js +89 -0
- package/dist/src/DateTimeSelection/FilterMonthRangePicker/FilterMonthRangePicker.types.d.ts +75 -0
- package/dist/src/DateTimeSelection/FilterMonthRangePicker/FilterMonthRangePicker.types.js +1 -0
- package/dist/src/DateTimeSelection/FilterMonthRangePicker/MonthRangePickerPopover/MonthRangePickerPopover.d.ts +5 -0
- package/dist/src/DateTimeSelection/FilterMonthRangePicker/MonthRangePickerPopover/MonthRangePickerPopover.js +54 -0
- package/dist/src/DateTimeSelection/FilterMonthRangePicker/MonthRangePickerPopover/MonthRangePickerPopover.types.d.ts +19 -0
- package/dist/src/DateTimeSelection/FilterMonthRangePicker/MonthRangePickerPopover/MonthRangePickerPopover.types.js +1 -0
- package/dist/src/DateTimeSelection/FilterMonthRangePicker/index.d.ts +2 -0
- package/dist/src/DateTimeSelection/FilterMonthRangePicker/index.js +1 -0
- package/dist/src/DateTimeSelection/MonthPicker/MonthPicker.d.ts +1 -1
- package/dist/src/DateTimeSelection/MonthPicker/MonthPicker.js +10 -2
- package/dist/src/DateTimeSelection/MonthPicker/MonthPicker.types.d.ts +14 -0
- package/dist/src/DateTimeSelection/MonthPicker/MonthPickerPanel/MonthCell/MonthCell.js +2 -25
- package/dist/src/DateTimeSelection/MonthPicker/MonthPickerPanel/MonthPickerPanel.js +1 -1
- package/dist/src/DateTimeSelection/MonthRangePicker/MonthRangePicker.d.ts +1 -1
- package/dist/src/DateTimeSelection/MonthRangePicker/MonthRangePicker.js +14 -5
- package/dist/src/DateTimeSelection/MonthRangePicker/MonthRangePicker.types.d.ts +21 -0
- package/dist/src/DateTimeSelection/MonthRangePicker/MonthRangePickerMonthCell/MonthRangePickerMonthCell.d.ts +1 -0
- package/dist/src/DateTimeSelection/MonthRangePicker/MonthRangePickerMonthCell/MonthRangePickerMonthCell.js +10 -3
- package/dist/src/DateTimeSelection/MonthRangePicker/MonthRangePickerNavigation/MonthRangePickerNavigation.js +16 -3
- package/dist/src/DateTimeSelection/MonthRangePicker/MonthRangePickerPanel/MonthRangePickerPanel.js +3 -1
- package/dist/src/DateTimeSelection/TimePicker/TimePicker.d.ts +43 -0
- package/dist/src/DateTimeSelection/TimePicker/TimePicker.js +85 -0
- package/dist/src/DateTimeSelection/TimePicker/TimePicker.types.d.ts +61 -0
- package/dist/src/DateTimeSelection/TimePicker/TimePicker.types.js +1 -0
- package/dist/src/DateTimeSelection/TimePicker/constants.d.ts +4 -0
- package/dist/src/DateTimeSelection/TimePicker/constants.js +12 -0
- package/dist/src/DateTimeSelection/TimePicker/index.d.ts +2 -0
- package/dist/src/DateTimeSelection/TimePicker/index.js +1 -0
- package/dist/src/DateTimeSelection/index.d.ts +4 -0
- package/dist/src/DateTimeSelection/index.js +4 -0
- package/dist/src/DateTimeSelection/shared/BaseRangePicker/BaseRangePicker.d.ts +1 -1
- package/dist/src/DateTimeSelection/shared/BaseRangePicker/BaseRangePicker.js +26 -10
- package/dist/src/DateTimeSelection/shared/BaseRangePicker/BaseRangePicker.types.d.ts +19 -0
- package/dist/src/DateTimeSelection/shared/BaseRangePicker/BaseRangePickerProvider/BaseRangePickerProvider.js +40 -19
- package/dist/src/DateTimeSelection/shared/BaseRangePicker/BaseRangePickerProvider/BaseRangePickerProvider.types.d.ts +19 -0
- package/dist/src/DateTimeSelection/shared/BaseRangePicker/BaseRangePickerTrigger/BaseRangePickerTrigger.js +4 -6
- package/dist/src/DateTimeSelection/shared/BaseRangePicker/BaseRangePickerTrigger/hooks/useDateRangeTriggerValueController.js +4 -3
- package/dist/src/DateTimeSelection/shared/CalendarLocale/CalendarLocaleContext.d.ts +1 -1
- package/dist/src/DateTimeSelection/shared/CalendarLocale/CalendarLocaleContext.js +1 -1
- package/dist/src/DateTimeSelection/shared/DayCell/DayCell.js +2 -3
- package/dist/src/DateTimeSelection/shared/MonthGrid/MonthGrid.js +3 -3
- package/dist/src/DateTimeSelection/shared/YearSelector/YearSelector.js +1 -1
- package/dist/src/DateTimeSelection/shared/utilities/dateParsing.js +27 -9
- package/dist/src/DateTimeSelection/shared/utilities/japaneseCalendar.d.ts +36 -8
- package/dist/src/DateTimeSelection/shared/utilities/japaneseCalendar.js +82 -15
- package/dist/src/DateTimeSelection/shared/utilities/monthCellMonthFormat.d.ts +14 -0
- package/dist/src/DateTimeSelection/shared/utilities/monthCellMonthFormat.js +35 -0
- package/dist/src/MultilineTextBox/index.d.ts +10 -2
- package/dist/src/MultilineTextBox/index.js +9 -1
- package/dist/src/MultipleSelectBox/MultipleSelectBoxTrigger/MultipleSelectBoxTrigger.js +1 -3
- package/dist/src/RadioButtonCard/RadioButtonCard.js +1 -7
- package/dist/src/TextBox/TextBox.js +2 -6
- package/dist/src/{MultilineTextBox/MultilineTextBox.d.ts → Textarea/Textarea.d.ts} +5 -2
- package/dist/src/{MultilineTextBox/MultilineTextBox.js → Textarea/Textarea.js} +9 -5
- package/dist/src/{MultilineTextBox/MultilineTextBox.types.d.ts → Textarea/Textarea.types.d.ts} +2 -2
- package/dist/src/Textarea/Textarea.types.js +1 -0
- package/dist/src/Textarea/index.d.ts +2 -0
- package/dist/src/Textarea/index.js +1 -0
- package/dist/src/Tooltip/Tooltip.js +12 -3
- package/dist/src/Typography/Typography.js +1 -3
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.js +1 -0
- package/dist/styled-system/recipes/filter-date-range-picker-slot-recipe.d.ts +33 -0
- package/dist/styled-system/recipes/filter-date-range-picker-slot-recipe.js +48 -0
- package/dist/styled-system/recipes/filter-month-picker-slot-recipe.d.ts +33 -0
- package/dist/styled-system/recipes/filter-month-picker-slot-recipe.js +44 -0
- package/dist/styled-system/recipes/filter-month-range-picker-slot-recipe.d.ts +33 -0
- package/dist/styled-system/recipes/filter-month-range-picker-slot-recipe.js +44 -0
- package/dist/styled-system/recipes/index.d.ts +5 -1
- package/dist/styled-system/recipes/index.js +5 -1
- package/dist/styled-system/recipes/textarea-slot-recipe.d.ts +52 -0
- package/dist/styled-system/recipes/textarea-slot-recipe.js +64 -0
- package/dist/styled-system/recipes/time-picker-slot-recipe.d.ts +44 -0
- package/dist/styled-system/recipes/time-picker-slot-recipe.js +62 -0
- package/dist/styles.css +601 -25
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +13 -11
- package/dist/src/DateTimeSelection/shared/BasePicker/YearSelector/YearSelector.d.ts +0 -18
- package/dist/src/DateTimeSelection/shared/BasePicker/YearSelector/YearSelector.js +0 -36
- package/dist/styled-system/recipes/multiline-text-box-slot-recipe.d.ts +0 -52
- package/dist/styled-system/recipes/multiline-text-box-slot-recipe.js +0 -64
- /package/dist/src/{MultilineTextBox/MultilineTextBox.types.js → DateTimeSelection/FilterDateRangePicker/DateRangePickerContent/DateRangePickerContent.types.js} +0 -0
package/dist/styles.css
CHANGED
|
@@ -639,7 +639,7 @@
|
|
|
639
639
|
width: var(--mfui-sizes-mfui\.size\.dimension\.icon\.square\.comfort);
|
|
640
640
|
}
|
|
641
641
|
|
|
642
|
-
.mfui-
|
|
642
|
+
.mfui-cDRDAr {
|
|
643
643
|
border-color: var(--mfui-colors-mfui\.color\.neutral\.border\.none);
|
|
644
644
|
border-style: solid;
|
|
645
645
|
background-color: var(--mfui-colors-mfui\.color\.base\.background\.none);
|
|
@@ -648,34 +648,34 @@
|
|
|
648
648
|
max-width: 100%;
|
|
649
649
|
}
|
|
650
650
|
|
|
651
|
-
.mfui-
|
|
651
|
+
.mfui-cDRDAr::placeholder,.mfui-cDRDAr[data-placeholder] {
|
|
652
652
|
opacity: 1;
|
|
653
653
|
color: var(--mfui-colors-mfui\.color\.neutral\.content\.none);
|
|
654
654
|
}
|
|
655
655
|
|
|
656
|
-
.mfui-
|
|
656
|
+
.mfui-cDRDAr:is(:focus-visible, [data-focus-visible]) {
|
|
657
657
|
border-color: var(--mfui-colors-mfui\.color\.neutral\.border\.hovered);
|
|
658
658
|
background-color: var(--mfui-colors-mfui\.color\.base\.background\.none);
|
|
659
659
|
color: var(--mfui-colors-mfui\.color\.neutral\.content\.hovered);
|
|
660
660
|
}
|
|
661
661
|
|
|
662
|
-
.mfui-
|
|
662
|
+
.mfui-cDRDAr:is(:hover, [data-hover]):not(:disabled, [disabled], [data-disabled]):not(:focus-visible, [data-focus-visible]) {
|
|
663
663
|
border-color: var(--mfui-colors-mfui\.color\.neutral\.border\.hovered);
|
|
664
664
|
background-color: var(--mfui-colors-mfui\.color\.base\.background\.hovered);
|
|
665
665
|
color: var(--mfui-colors-mfui\.color\.neutral\.content\.hovered);
|
|
666
666
|
}
|
|
667
667
|
|
|
668
|
-
.mfui-
|
|
668
|
+
.mfui-cDRDAr:is(:hover, [data-hover]):not(:disabled, [disabled], [data-disabled]):not(:focus-visible, [data-focus-visible])::placeholder, .mfui-cDRDAr:is(:hover, [data-hover]):not(:disabled, [disabled], [data-disabled]):not(:focus-visible, [data-focus-visible])[data-placeholder] {
|
|
669
669
|
color: var(--mfui-colors-mfui\.color\.neutral\.content\.hovered);
|
|
670
670
|
}
|
|
671
671
|
|
|
672
|
-
.mfui-
|
|
672
|
+
.mfui-cDRDAr:is(:active, [data-active]):not(:disabled, [disabled], [data-disabled]):not(:focus-visible, [data-focus-visible]) {
|
|
673
673
|
border-color: var(--mfui-colors-mfui\.color\.neutral\.border\.pressed);
|
|
674
674
|
background-color: var(--mfui-colors-mfui\.color\.base\.background\.pressed);
|
|
675
675
|
color: var(--mfui-colors-mfui\.color\.neutral\.content\.pressed);
|
|
676
676
|
}
|
|
677
677
|
|
|
678
|
-
.mfui-
|
|
678
|
+
.mfui-cDRDAr:is(:active, [data-active]):not(:disabled, [disabled], [data-disabled]):not(:focus-visible, [data-focus-visible])::placeholder, .mfui-cDRDAr:is(:active, [data-active]):not(:disabled, [disabled], [data-disabled]):not(:focus-visible, [data-focus-visible])[data-placeholder] {
|
|
679
679
|
color: var(--mfui-colors-mfui\.color\.neutral\.content\.pressed);
|
|
680
680
|
}
|
|
681
681
|
|
|
@@ -2517,12 +2517,23 @@
|
|
|
2517
2517
|
|
|
2518
2518
|
.mfui-fhtZXM {
|
|
2519
2519
|
max-height: 160px;
|
|
2520
|
+
width: fit-content;
|
|
2521
|
+
}
|
|
2522
|
+
|
|
2523
|
+
.mfui-fhtZXM .mfui-SelectBox__scrollWrapper {
|
|
2524
|
+
scrollbar-gutter: stable;
|
|
2525
|
+
overflow-x: hidden;
|
|
2520
2526
|
}
|
|
2521
2527
|
|
|
2522
2528
|
.mfui-fhtZXM .mfui-SelectBox__listItem {
|
|
2523
2529
|
white-space: nowrap;
|
|
2524
2530
|
}
|
|
2525
2531
|
|
|
2532
|
+
.mfui-Popover__root > .mfui-fhtZXM {
|
|
2533
|
+
overflow-x: hidden;
|
|
2534
|
+
overflow-y: hidden;
|
|
2535
|
+
}
|
|
2536
|
+
|
|
2526
2537
|
.mfui-fSkXNA {
|
|
2527
2538
|
overflow: hidden;
|
|
2528
2539
|
display: flex;
|
|
@@ -4316,6 +4327,80 @@
|
|
|
4316
4327
|
height: 24px;
|
|
4317
4328
|
}
|
|
4318
4329
|
|
|
4330
|
+
.mfui-bVkSYO {
|
|
4331
|
+
border-color: var(--mfui-colors-mfui\.color\.neutral\.border\.none);
|
|
4332
|
+
border-style: solid;
|
|
4333
|
+
display: flex;
|
|
4334
|
+
align-items: center;
|
|
4335
|
+
line-height: var(--mfui-line-heights-mfui\.typography\.line-height\.control-label);
|
|
4336
|
+
background-color: var(--mfui-colors-mfui\.color\.base\.background\.none);
|
|
4337
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.none);
|
|
4338
|
+
box-sizing: border-box;
|
|
4339
|
+
}
|
|
4340
|
+
|
|
4341
|
+
.mfui-bVkSYO input::-webkit-calendar-picker-indicator {
|
|
4342
|
+
margin: 0;
|
|
4343
|
+
display: none;
|
|
4344
|
+
appearance: none;
|
|
4345
|
+
-webkit-appearance: none;
|
|
4346
|
+
width: 0;
|
|
4347
|
+
}
|
|
4348
|
+
|
|
4349
|
+
.mfui-bVkSYO:has(input:disabled, input[disabled]) {
|
|
4350
|
+
cursor: not-allowed;
|
|
4351
|
+
}
|
|
4352
|
+
|
|
4353
|
+
.mfui-bVkSYO input::-webkit-inner-spin-button,.mfui-bVkSYO input::-webkit-clear-button {
|
|
4354
|
+
display: none;
|
|
4355
|
+
}
|
|
4356
|
+
|
|
4357
|
+
.mfui-bVkSYO:is(:hover, [data-hover]):not(:has(input:disabled, input[disabled], input:focus-visible, input[data-focus-visible])):not(:has(:is(button, [role="button"]):is(:hover, [data-hover]))) {
|
|
4358
|
+
border-color: var(--mfui-colors-mfui\.color\.neutral\.border\.hovered);
|
|
4359
|
+
background-color: var(--mfui-colors-mfui\.color\.base\.background\.hovered);
|
|
4360
|
+
}
|
|
4361
|
+
|
|
4362
|
+
.mfui-bVkSYO:is(:active, [data-active]):not(:has(input:disabled, input[disabled], input:focus-visible, input[data-focus-visible])):not(:has(:is(button, [role="button"]):is(:active, [data-active]))) {
|
|
4363
|
+
border-color: var(--mfui-colors-mfui\.color\.neutral\.border\.pressed);
|
|
4364
|
+
background-color: var(--mfui-colors-mfui\.color\.base\.background\.pressed);
|
|
4365
|
+
}
|
|
4366
|
+
|
|
4367
|
+
.mfui-lUCHm {
|
|
4368
|
+
border: 0;
|
|
4369
|
+
padding: 0;
|
|
4370
|
+
margin: 0;
|
|
4371
|
+
flex: 1 0;
|
|
4372
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.none);
|
|
4373
|
+
background-color: transparent;
|
|
4374
|
+
font-family: inherit;
|
|
4375
|
+
text-align: start;
|
|
4376
|
+
min-width: 0;
|
|
4377
|
+
}
|
|
4378
|
+
|
|
4379
|
+
.mfui-lUCHm input::-webkit-date-and-time-value {
|
|
4380
|
+
padding-inline: 0;
|
|
4381
|
+
text-align: start;
|
|
4382
|
+
min-width: 0;
|
|
4383
|
+
}
|
|
4384
|
+
|
|
4385
|
+
.mfui-lUCHm:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
|
|
4386
|
+
cursor: not-allowed;
|
|
4387
|
+
color: var(--mfui-colors-mfui\.color\.disabled\.content);
|
|
4388
|
+
}
|
|
4389
|
+
|
|
4390
|
+
.mfui-lUCHm:is(:focus-visible, [data-focus-visible]) {
|
|
4391
|
+
outline: 2px solid transparent;
|
|
4392
|
+
outline-offset: 2px;
|
|
4393
|
+
}
|
|
4394
|
+
|
|
4395
|
+
.mfui-jMAiwH {
|
|
4396
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.none);
|
|
4397
|
+
}
|
|
4398
|
+
|
|
4399
|
+
.mfui-jMAiwH,.mfui-cPbohA {
|
|
4400
|
+
flex-shrink: 0;
|
|
4401
|
+
margin-left: var(--mfui-spacing-mfui\.size\.spacing\.icon-and-text\.horizontal\.impact);
|
|
4402
|
+
}
|
|
4403
|
+
|
|
4319
4404
|
.mfui-jFGVKc {
|
|
4320
4405
|
animation: skeletonLoading 1250ms linear infinite;
|
|
4321
4406
|
overflow: hidden;
|
|
@@ -4816,6 +4901,415 @@
|
|
|
4816
4901
|
height: 100%;
|
|
4817
4902
|
}
|
|
4818
4903
|
|
|
4904
|
+
.mfui-PSxZp {
|
|
4905
|
+
position: relative;
|
|
4906
|
+
width: 100%;
|
|
4907
|
+
}
|
|
4908
|
+
|
|
4909
|
+
.mfui-PSxZp[data-selected="true"]:not(:has(button:disabled)) [data-mfui-content="filter-date-range-picker-clear-button"] {
|
|
4910
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.none);
|
|
4911
|
+
}
|
|
4912
|
+
|
|
4913
|
+
.mfui-PSxZp[data-selected="true"]:not(:has(button:disabled)):is(:hover, [data-hover]) [data-mfui-content="filter-date-range-picker-clear-button"],.mfui-PSxZp[data-selected="true"]:not(:has(button:disabled)):focus-within [data-mfui-content="filter-date-range-picker-clear-button"] {
|
|
4914
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.hovered);
|
|
4915
|
+
}
|
|
4916
|
+
|
|
4917
|
+
.mfui-PSxZp[data-selected="true"]:not(:has(button:disabled)):has(button:active) [data-mfui-content="filter-date-range-picker-clear-button"] {
|
|
4918
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.pressed);
|
|
4919
|
+
}
|
|
4920
|
+
|
|
4921
|
+
.mfui-lbAdvC {
|
|
4922
|
+
border: 1px solid;
|
|
4923
|
+
gap: var(--mfui-spacing-mfui\.size\.spacing\.icon-and-text\.horizontal\.comfort);
|
|
4924
|
+
padding-inline: calc(var(--mfui-spacing-mfui\.size\.padding\.input\.horizontal\.comfort) - 1px);
|
|
4925
|
+
border-color: var(--mfui-colors-mfui\.color\.neutral\.border\.none);
|
|
4926
|
+
border-radius: var(--mfui-radii-mfui\.size\.radius\.control-component\.comfort);
|
|
4927
|
+
position: relative;
|
|
4928
|
+
display: flex;
|
|
4929
|
+
align-items: center;
|
|
4930
|
+
justify-content: space-between;
|
|
4931
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.none);
|
|
4932
|
+
cursor: pointer;
|
|
4933
|
+
background-color: var(--mfui-colors-mfui\.color\.base\.background\.none);
|
|
4934
|
+
width: 100%;
|
|
4935
|
+
height: var(--mfui-sizes-mfui\.size\.dimension\.control-component\.height\.comfort);
|
|
4936
|
+
min-width: var(--mfui-sizes-mfui\.size\.target\.button\.comfort);
|
|
4937
|
+
}
|
|
4938
|
+
|
|
4939
|
+
.mfui-lbAdvC:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
|
|
4940
|
+
border-color: var(--mfui-colors-mfui\.color\.disabled\.border);
|
|
4941
|
+
cursor: not-allowed;
|
|
4942
|
+
color: var(--mfui-colors-mfui\.color\.disabled\.content);
|
|
4943
|
+
background-color: var(--mfui-colors-mfui\.color\.disabled\.background);
|
|
4944
|
+
}
|
|
4945
|
+
|
|
4946
|
+
.mfui-lbAdvC:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) > svg {
|
|
4947
|
+
color: var(--mfui-colors-mfui\.color\.disabled\.content);
|
|
4948
|
+
}
|
|
4949
|
+
|
|
4950
|
+
.mfui-lbAdvC[data-selected="true"]:not(:disabled) {
|
|
4951
|
+
border-color: var(--mfui-colors-mfui\.color\.selected\.border\.none);
|
|
4952
|
+
background-color: var(--mfui-colors-mfui\.color\.selected\.background\.none);
|
|
4953
|
+
}
|
|
4954
|
+
|
|
4955
|
+
.mfui-lbAdvC[data-selected="true"]:not(:disabled):is(:hover, [data-hover]) {
|
|
4956
|
+
border-color: var(--mfui-colors-mfui\.color\.selected\.border\.hovered);
|
|
4957
|
+
background-color: var(--mfui-colors-mfui\.color\.selected\.background\.hovered);
|
|
4958
|
+
}
|
|
4959
|
+
|
|
4960
|
+
.mfui-lbAdvC[data-selected="true"]:not(:disabled):is(:hover, [data-hover]) [data-mfui-content="filter-date-range-picker-display-value"] {
|
|
4961
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.hovered);
|
|
4962
|
+
}
|
|
4963
|
+
|
|
4964
|
+
.mfui-lbAdvC[data-selected="true"]:not(:disabled):focus-within {
|
|
4965
|
+
border-color: var(--mfui-colors-mfui\.color\.selected\.border\.hovered);
|
|
4966
|
+
background-color: var(--mfui-colors-mfui\.color\.selected\.background\.hovered);
|
|
4967
|
+
}
|
|
4968
|
+
|
|
4969
|
+
.mfui-lbAdvC[data-selected="true"]:not(:disabled):focus-within [data-mfui-content="filter-date-range-picker-display-value"] {
|
|
4970
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.hovered);
|
|
4971
|
+
}
|
|
4972
|
+
|
|
4973
|
+
.mfui-lbAdvC[data-selected="true"]:not(:disabled):is(:active, [data-active]) {
|
|
4974
|
+
border-color: var(--mfui-colors-mfui\.color\.selected\.border\.pressed);
|
|
4975
|
+
background-color: var(--mfui-colors-mfui\.color\.selected\.background\.pressed);
|
|
4976
|
+
}
|
|
4977
|
+
|
|
4978
|
+
.mfui-lbAdvC[data-selected="true"]:not(:disabled):is(:active, [data-active]) [data-mfui-content="filter-date-range-picker-display-value"] {
|
|
4979
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.pressed);
|
|
4980
|
+
}
|
|
4981
|
+
|
|
4982
|
+
.mfui-lbAdvC[data-selected="true"]:not(:disabled) [data-mfui-content="filter-date-range-picker-display-value"] {
|
|
4983
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.none);
|
|
4984
|
+
}
|
|
4985
|
+
|
|
4986
|
+
.mfui-lbAdvC > svg {
|
|
4987
|
+
color: inherit;
|
|
4988
|
+
}
|
|
4989
|
+
|
|
4990
|
+
.mfui-lbAdvC:is(:focus-visible, [data-focus-visible]) {
|
|
4991
|
+
border-color: var(--mfui-colors-mfui\.color\.neutral\.border\.hovered);
|
|
4992
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.hovered);
|
|
4993
|
+
background-color: var(--mfui-colors-mfui\.color\.base\.background\.hovered);
|
|
4994
|
+
}
|
|
4995
|
+
|
|
4996
|
+
.mfui-lbAdvC[data-mfui-has-clear-button="true"] > [data-mfui-content="filter-date-range-picker-display-value"] {
|
|
4997
|
+
padding-right: var(--mfui-sizes-mfui\.size\.dimension\.icon\.square\.comfort);
|
|
4998
|
+
}
|
|
4999
|
+
|
|
5000
|
+
.mfui-lbAdvC:is(:hover, [data-hover]):not(:disabled, [disabled], [data-disabled]) {
|
|
5001
|
+
border-color: var(--mfui-colors-mfui\.color\.neutral\.border\.hovered);
|
|
5002
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.hovered);
|
|
5003
|
+
background-color: var(--mfui-colors-mfui\.color\.base\.background\.hovered);
|
|
5004
|
+
}
|
|
5005
|
+
|
|
5006
|
+
.mfui-lbAdvC:is(:active, [data-active]):not(:disabled, [disabled], [data-disabled]) {
|
|
5007
|
+
border-color: var(--mfui-colors-mfui\.color\.neutral\.border\.pressed);
|
|
5008
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.pressed);
|
|
5009
|
+
background-color: var(--mfui-colors-mfui\.color\.base\.background\.pressed);
|
|
5010
|
+
}
|
|
5011
|
+
|
|
5012
|
+
.mfui-gysudL {
|
|
5013
|
+
flex: 1 1 0%;
|
|
5014
|
+
overflow: hidden;
|
|
5015
|
+
text-align: left;
|
|
5016
|
+
text-overflow: ellipsis;
|
|
5017
|
+
white-space: nowrap;
|
|
5018
|
+
}
|
|
5019
|
+
|
|
5020
|
+
.mfui-hWZgyX {
|
|
5021
|
+
place-items: center;
|
|
5022
|
+
display: grid;
|
|
5023
|
+
font-size: var(--mfui-font-sizes-mfui\.typography\.font-size\.icon);
|
|
5024
|
+
flex-shrink: 0;
|
|
5025
|
+
width: var(--mfui-sizes-mfui\.size\.dimension\.icon\.square\.comfort);
|
|
5026
|
+
height: var(--mfui-sizes-mfui\.size\.dimension\.icon\.square\.comfort);
|
|
5027
|
+
}
|
|
5028
|
+
|
|
5029
|
+
.mfui-bquWmK {
|
|
5030
|
+
padding-inline: var(--mfui-spacing-mfui\.size\.padding\.input\.horizontal\.comfort);
|
|
5031
|
+
place-items: center;
|
|
5032
|
+
position: absolute;
|
|
5033
|
+
display: grid;
|
|
5034
|
+
top: 0;
|
|
5035
|
+
right: calc(var(--mfui-spacing-mfui\.size\.padding\.input\.horizontal\.comfort) + var(--mfui-sizes-mfui\.size\.dimension\.icon\.square\.comfort));
|
|
5036
|
+
height: 100%;
|
|
5037
|
+
}
|
|
5038
|
+
|
|
5039
|
+
.mfui-jIseaA .mfui-DateRangePickerFooter__footer {
|
|
5040
|
+
justify-content: space-between;
|
|
5041
|
+
}
|
|
5042
|
+
|
|
5043
|
+
.mfui-jTICW {
|
|
5044
|
+
position: relative;
|
|
5045
|
+
width: 100%;
|
|
5046
|
+
}
|
|
5047
|
+
|
|
5048
|
+
.mfui-jTICW[data-selected="true"]:not(:has(button:disabled)) [data-mfui-content="filter-month-picker-clear-button"] {
|
|
5049
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.none);
|
|
5050
|
+
}
|
|
5051
|
+
|
|
5052
|
+
.mfui-jTICW[data-selected="true"]:not(:has(button:disabled)):is(:hover, [data-hover]) [data-mfui-content="filter-month-picker-clear-button"],.mfui-jTICW[data-selected="true"]:not(:has(button:disabled)):focus-within [data-mfui-content="filter-month-picker-clear-button"] {
|
|
5053
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.hovered);
|
|
5054
|
+
}
|
|
5055
|
+
|
|
5056
|
+
.mfui-jTICW[data-selected="true"]:not(:has(button:disabled)):has(button:active) [data-mfui-content="filter-month-picker-clear-button"] {
|
|
5057
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.pressed);
|
|
5058
|
+
}
|
|
5059
|
+
|
|
5060
|
+
.mfui-ejNqZV {
|
|
5061
|
+
border: 1px solid;
|
|
5062
|
+
gap: var(--mfui-spacing-mfui\.size\.spacing\.icon-and-text\.horizontal\.comfort);
|
|
5063
|
+
padding-inline: calc(var(--mfui-spacing-mfui\.size\.padding\.input\.horizontal\.comfort) - 1px);
|
|
5064
|
+
border-color: var(--mfui-colors-mfui\.color\.neutral\.border\.none);
|
|
5065
|
+
border-radius: var(--mfui-radii-mfui\.size\.radius\.control-component\.comfort);
|
|
5066
|
+
position: relative;
|
|
5067
|
+
display: flex;
|
|
5068
|
+
align-items: center;
|
|
5069
|
+
justify-content: space-between;
|
|
5070
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.none);
|
|
5071
|
+
cursor: pointer;
|
|
5072
|
+
background-color: var(--mfui-colors-mfui\.color\.base\.background\.none);
|
|
5073
|
+
width: 100%;
|
|
5074
|
+
height: var(--mfui-sizes-mfui\.size\.dimension\.control-component\.height\.comfort);
|
|
5075
|
+
min-width: var(--mfui-sizes-mfui\.size\.target\.button\.comfort);
|
|
5076
|
+
}
|
|
5077
|
+
|
|
5078
|
+
.mfui-ejNqZV:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
|
|
5079
|
+
border-color: var(--mfui-colors-mfui\.color\.disabled\.border);
|
|
5080
|
+
cursor: not-allowed;
|
|
5081
|
+
color: var(--mfui-colors-mfui\.color\.disabled\.content);
|
|
5082
|
+
background-color: var(--mfui-colors-mfui\.color\.disabled\.background);
|
|
5083
|
+
}
|
|
5084
|
+
|
|
5085
|
+
.mfui-ejNqZV:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) > svg {
|
|
5086
|
+
color: var(--mfui-colors-mfui\.color\.disabled\.content);
|
|
5087
|
+
}
|
|
5088
|
+
|
|
5089
|
+
.mfui-ejNqZV[data-selected="true"]:not(:disabled) {
|
|
5090
|
+
border-color: var(--mfui-colors-mfui\.color\.selected\.border\.none);
|
|
5091
|
+
background-color: var(--mfui-colors-mfui\.color\.selected\.background\.none);
|
|
5092
|
+
}
|
|
5093
|
+
|
|
5094
|
+
.mfui-ejNqZV[data-selected="true"]:not(:disabled):is(:hover, [data-hover]) {
|
|
5095
|
+
border-color: var(--mfui-colors-mfui\.color\.selected\.border\.hovered);
|
|
5096
|
+
background-color: var(--mfui-colors-mfui\.color\.selected\.background\.hovered);
|
|
5097
|
+
}
|
|
5098
|
+
|
|
5099
|
+
.mfui-ejNqZV[data-selected="true"]:not(:disabled):is(:hover, [data-hover]) [data-mfui-content="filter-month-picker-display-value"] {
|
|
5100
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.hovered);
|
|
5101
|
+
}
|
|
5102
|
+
|
|
5103
|
+
.mfui-ejNqZV[data-selected="true"]:not(:disabled):focus-within {
|
|
5104
|
+
border-color: var(--mfui-colors-mfui\.color\.selected\.border\.hovered);
|
|
5105
|
+
background-color: var(--mfui-colors-mfui\.color\.selected\.background\.hovered);
|
|
5106
|
+
}
|
|
5107
|
+
|
|
5108
|
+
.mfui-ejNqZV[data-selected="true"]:not(:disabled):focus-within [data-mfui-content="filter-month-picker-display-value"] {
|
|
5109
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.hovered);
|
|
5110
|
+
}
|
|
5111
|
+
|
|
5112
|
+
.mfui-ejNqZV[data-selected="true"]:not(:disabled):is(:active, [data-active]) {
|
|
5113
|
+
border-color: var(--mfui-colors-mfui\.color\.selected\.border\.pressed);
|
|
5114
|
+
background-color: var(--mfui-colors-mfui\.color\.selected\.background\.pressed);
|
|
5115
|
+
}
|
|
5116
|
+
|
|
5117
|
+
.mfui-ejNqZV[data-selected="true"]:not(:disabled):is(:active, [data-active]) [data-mfui-content="filter-month-picker-display-value"] {
|
|
5118
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.pressed);
|
|
5119
|
+
}
|
|
5120
|
+
|
|
5121
|
+
.mfui-ejNqZV[data-selected="true"]:not(:disabled) [data-mfui-content="filter-month-picker-display-value"] {
|
|
5122
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.none);
|
|
5123
|
+
}
|
|
5124
|
+
|
|
5125
|
+
.mfui-ejNqZV > svg {
|
|
5126
|
+
color: inherit;
|
|
5127
|
+
}
|
|
5128
|
+
|
|
5129
|
+
.mfui-ejNqZV:is(:focus-visible, [data-focus-visible]) {
|
|
5130
|
+
border-color: var(--mfui-colors-mfui\.color\.neutral\.border\.hovered);
|
|
5131
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.hovered);
|
|
5132
|
+
background-color: var(--mfui-colors-mfui\.color\.base\.background\.hovered);
|
|
5133
|
+
}
|
|
5134
|
+
|
|
5135
|
+
.mfui-ejNqZV[data-mfui-has-clear-button="true"] > [data-mfui-content="filter-month-picker-display-value"] {
|
|
5136
|
+
padding-right: var(--mfui-sizes-mfui\.size\.dimension\.icon\.square\.comfort);
|
|
5137
|
+
}
|
|
5138
|
+
|
|
5139
|
+
.mfui-ejNqZV:is(:hover, [data-hover]):not(:disabled, [disabled], [data-disabled]) {
|
|
5140
|
+
border-color: var(--mfui-colors-mfui\.color\.neutral\.border\.hovered);
|
|
5141
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.hovered);
|
|
5142
|
+
background-color: var(--mfui-colors-mfui\.color\.base\.background\.hovered);
|
|
5143
|
+
}
|
|
5144
|
+
|
|
5145
|
+
.mfui-ejNqZV:is(:active, [data-active]):not(:disabled, [disabled], [data-disabled]) {
|
|
5146
|
+
border-color: var(--mfui-colors-mfui\.color\.neutral\.border\.pressed);
|
|
5147
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.pressed);
|
|
5148
|
+
background-color: var(--mfui-colors-mfui\.color\.base\.background\.pressed);
|
|
5149
|
+
}
|
|
5150
|
+
|
|
5151
|
+
.mfui-lbwEJE {
|
|
5152
|
+
flex: 1 1 0%;
|
|
5153
|
+
overflow: hidden;
|
|
5154
|
+
text-align: left;
|
|
5155
|
+
text-overflow: ellipsis;
|
|
5156
|
+
white-space: nowrap;
|
|
5157
|
+
}
|
|
5158
|
+
|
|
5159
|
+
.mfui-fqoWjw {
|
|
5160
|
+
place-items: center;
|
|
5161
|
+
display: grid;
|
|
5162
|
+
font-size: var(--mfui-font-sizes-mfui\.typography\.font-size\.icon);
|
|
5163
|
+
flex-shrink: 0;
|
|
5164
|
+
width: var(--mfui-sizes-mfui\.size\.dimension\.icon\.square\.comfort);
|
|
5165
|
+
height: var(--mfui-sizes-mfui\.size\.dimension\.icon\.square\.comfort);
|
|
5166
|
+
}
|
|
5167
|
+
|
|
5168
|
+
.mfui-kfsdfB {
|
|
5169
|
+
padding-inline: var(--mfui-spacing-mfui\.size\.padding\.input\.horizontal\.comfort);
|
|
5170
|
+
place-items: center;
|
|
5171
|
+
position: absolute;
|
|
5172
|
+
display: grid;
|
|
5173
|
+
top: 0;
|
|
5174
|
+
right: calc(var(--mfui-spacing-mfui\.size\.padding\.input\.horizontal\.comfort) + var(--mfui-sizes-mfui\.size\.dimension\.icon\.square\.comfort));
|
|
5175
|
+
height: 100%;
|
|
5176
|
+
}
|
|
5177
|
+
|
|
5178
|
+
.mfui-isUYZd {
|
|
5179
|
+
position: relative;
|
|
5180
|
+
width: 100%;
|
|
5181
|
+
}
|
|
5182
|
+
|
|
5183
|
+
.mfui-isUYZd[data-selected="true"]:not(:has(button:disabled)) [data-mfui-content="filter-month-range-picker-clear-button"] {
|
|
5184
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.none);
|
|
5185
|
+
}
|
|
5186
|
+
|
|
5187
|
+
.mfui-isUYZd[data-selected="true"]:not(:has(button:disabled)):is(:hover, [data-hover]) [data-mfui-content="filter-month-range-picker-clear-button"],.mfui-isUYZd[data-selected="true"]:not(:has(button:disabled)):focus-within [data-mfui-content="filter-month-range-picker-clear-button"] {
|
|
5188
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.hovered);
|
|
5189
|
+
}
|
|
5190
|
+
|
|
5191
|
+
.mfui-isUYZd[data-selected="true"]:not(:has(button:disabled)):has(button:active) [data-mfui-content="filter-month-range-picker-clear-button"] {
|
|
5192
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.pressed);
|
|
5193
|
+
}
|
|
5194
|
+
|
|
5195
|
+
.mfui-kCMNjq {
|
|
5196
|
+
border: 1px solid;
|
|
5197
|
+
gap: var(--mfui-spacing-mfui\.size\.spacing\.icon-and-text\.horizontal\.comfort);
|
|
5198
|
+
padding-inline: calc(var(--mfui-spacing-mfui\.size\.padding\.input\.horizontal\.comfort) - 1px);
|
|
5199
|
+
border-color: var(--mfui-colors-mfui\.color\.neutral\.border\.none);
|
|
5200
|
+
border-radius: var(--mfui-radii-mfui\.size\.radius\.control-component\.comfort);
|
|
5201
|
+
position: relative;
|
|
5202
|
+
display: flex;
|
|
5203
|
+
align-items: center;
|
|
5204
|
+
justify-content: space-between;
|
|
5205
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.none);
|
|
5206
|
+
cursor: pointer;
|
|
5207
|
+
background-color: var(--mfui-colors-mfui\.color\.base\.background\.none);
|
|
5208
|
+
width: 100%;
|
|
5209
|
+
height: var(--mfui-sizes-mfui\.size\.dimension\.control-component\.height\.comfort);
|
|
5210
|
+
min-width: var(--mfui-sizes-mfui\.size\.target\.button\.comfort);
|
|
5211
|
+
}
|
|
5212
|
+
|
|
5213
|
+
.mfui-kCMNjq:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) {
|
|
5214
|
+
border-color: var(--mfui-colors-mfui\.color\.disabled\.border);
|
|
5215
|
+
cursor: not-allowed;
|
|
5216
|
+
color: var(--mfui-colors-mfui\.color\.disabled\.content);
|
|
5217
|
+
background-color: var(--mfui-colors-mfui\.color\.disabled\.background);
|
|
5218
|
+
}
|
|
5219
|
+
|
|
5220
|
+
.mfui-kCMNjq:is(:disabled, [disabled], [data-disabled], [aria-disabled=true]) > svg {
|
|
5221
|
+
color: var(--mfui-colors-mfui\.color\.disabled\.content);
|
|
5222
|
+
}
|
|
5223
|
+
|
|
5224
|
+
.mfui-kCMNjq[data-selected="true"]:not(:disabled) {
|
|
5225
|
+
border-color: var(--mfui-colors-mfui\.color\.selected\.border\.none);
|
|
5226
|
+
background-color: var(--mfui-colors-mfui\.color\.selected\.background\.none);
|
|
5227
|
+
}
|
|
5228
|
+
|
|
5229
|
+
.mfui-kCMNjq[data-selected="true"]:not(:disabled):is(:hover, [data-hover]) {
|
|
5230
|
+
border-color: var(--mfui-colors-mfui\.color\.selected\.border\.hovered);
|
|
5231
|
+
background-color: var(--mfui-colors-mfui\.color\.selected\.background\.hovered);
|
|
5232
|
+
}
|
|
5233
|
+
|
|
5234
|
+
.mfui-kCMNjq[data-selected="true"]:not(:disabled):is(:hover, [data-hover]) [data-mfui-content="filter-month-range-picker-display-value"] {
|
|
5235
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.hovered);
|
|
5236
|
+
}
|
|
5237
|
+
|
|
5238
|
+
.mfui-kCMNjq[data-selected="true"]:not(:disabled):focus-within {
|
|
5239
|
+
border-color: var(--mfui-colors-mfui\.color\.selected\.border\.hovered);
|
|
5240
|
+
background-color: var(--mfui-colors-mfui\.color\.selected\.background\.hovered);
|
|
5241
|
+
}
|
|
5242
|
+
|
|
5243
|
+
.mfui-kCMNjq[data-selected="true"]:not(:disabled):focus-within [data-mfui-content="filter-month-range-picker-display-value"] {
|
|
5244
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.hovered);
|
|
5245
|
+
}
|
|
5246
|
+
|
|
5247
|
+
.mfui-kCMNjq[data-selected="true"]:not(:disabled):is(:active, [data-active]) {
|
|
5248
|
+
border-color: var(--mfui-colors-mfui\.color\.selected\.border\.pressed);
|
|
5249
|
+
background-color: var(--mfui-colors-mfui\.color\.selected\.background\.pressed);
|
|
5250
|
+
}
|
|
5251
|
+
|
|
5252
|
+
.mfui-kCMNjq[data-selected="true"]:not(:disabled):is(:active, [data-active]) [data-mfui-content="filter-month-range-picker-display-value"] {
|
|
5253
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.pressed);
|
|
5254
|
+
}
|
|
5255
|
+
|
|
5256
|
+
.mfui-kCMNjq[data-selected="true"]:not(:disabled) [data-mfui-content="filter-month-range-picker-display-value"] {
|
|
5257
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.none);
|
|
5258
|
+
}
|
|
5259
|
+
|
|
5260
|
+
.mfui-kCMNjq > svg {
|
|
5261
|
+
color: inherit;
|
|
5262
|
+
}
|
|
5263
|
+
|
|
5264
|
+
.mfui-kCMNjq:is(:focus-visible, [data-focus-visible]) {
|
|
5265
|
+
border-color: var(--mfui-colors-mfui\.color\.neutral\.border\.hovered);
|
|
5266
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.hovered);
|
|
5267
|
+
background-color: var(--mfui-colors-mfui\.color\.base\.background\.hovered);
|
|
5268
|
+
}
|
|
5269
|
+
|
|
5270
|
+
.mfui-kCMNjq[data-mfui-has-clear-button="true"] > [data-mfui-content="filter-month-range-picker-display-value"] {
|
|
5271
|
+
padding-right: var(--mfui-sizes-mfui\.size\.dimension\.icon\.square\.comfort);
|
|
5272
|
+
}
|
|
5273
|
+
|
|
5274
|
+
.mfui-kCMNjq:is(:hover, [data-hover]):not(:disabled, [disabled], [data-disabled]) {
|
|
5275
|
+
border-color: var(--mfui-colors-mfui\.color\.neutral\.border\.hovered);
|
|
5276
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.hovered);
|
|
5277
|
+
background-color: var(--mfui-colors-mfui\.color\.base\.background\.hovered);
|
|
5278
|
+
}
|
|
5279
|
+
|
|
5280
|
+
.mfui-kCMNjq:is(:active, [data-active]):not(:disabled, [disabled], [data-disabled]) {
|
|
5281
|
+
border-color: var(--mfui-colors-mfui\.color\.neutral\.border\.pressed);
|
|
5282
|
+
color: var(--mfui-colors-mfui\.color\.base\.content\.pressed);
|
|
5283
|
+
background-color: var(--mfui-colors-mfui\.color\.base\.background\.pressed);
|
|
5284
|
+
}
|
|
5285
|
+
|
|
5286
|
+
.mfui-jmumGL {
|
|
5287
|
+
flex: 1 1 0%;
|
|
5288
|
+
overflow: hidden;
|
|
5289
|
+
text-align: left;
|
|
5290
|
+
text-overflow: ellipsis;
|
|
5291
|
+
white-space: nowrap;
|
|
5292
|
+
}
|
|
5293
|
+
|
|
5294
|
+
.mfui-ehYRTb {
|
|
5295
|
+
place-items: center;
|
|
5296
|
+
display: grid;
|
|
5297
|
+
font-size: var(--mfui-font-sizes-mfui\.typography\.font-size\.icon);
|
|
5298
|
+
flex-shrink: 0;
|
|
5299
|
+
width: var(--mfui-sizes-mfui\.size\.dimension\.icon\.square\.comfort);
|
|
5300
|
+
height: var(--mfui-sizes-mfui\.size\.dimension\.icon\.square\.comfort);
|
|
5301
|
+
}
|
|
5302
|
+
|
|
5303
|
+
.mfui-hEcKXC {
|
|
5304
|
+
padding-inline: var(--mfui-spacing-mfui\.size\.padding\.input\.horizontal\.comfort);
|
|
5305
|
+
place-items: center;
|
|
5306
|
+
position: absolute;
|
|
5307
|
+
display: grid;
|
|
5308
|
+
top: 0;
|
|
5309
|
+
right: calc(var(--mfui-spacing-mfui\.size\.padding\.input\.horizontal\.comfort) + var(--mfui-sizes-mfui\.size\.dimension\.icon\.square\.comfort));
|
|
5310
|
+
height: 100%;
|
|
5311
|
+
}
|
|
5312
|
+
|
|
4819
5313
|
.mfui-lkfQj {
|
|
4820
5314
|
padding-inline: var(--mfui-spacing-mfui\.size\.padding\.display-table-cell\.horizontal\.comfort);
|
|
4821
5315
|
padding-block: var(--mfui-spacing-mfui\.size\.padding\.display-table-cell\.vertical\.comfort);
|
|
@@ -5371,7 +5865,7 @@ li:last-child > .mfui-cXGJls {
|
|
|
5371
5865
|
width: 32px;
|
|
5372
5866
|
height: 32px;
|
|
5373
5867
|
}
|
|
5374
|
-
.mfui-fKGEVz[data-mfui-has-clear-button="true"] > [data-mfui-content="filter-trigger-display-value"],.mfui-ueqvR[data-mfui-has-clear-button="true"] > [data-mfui-content="filter-date-picker-display-value"] {
|
|
5868
|
+
.mfui-fKGEVz[data-mfui-has-clear-button="true"] > [data-mfui-content="filter-trigger-display-value"],.mfui-ueqvR[data-mfui-has-clear-button="true"] > [data-mfui-content="filter-date-picker-display-value"],.mfui-lbAdvC[data-mfui-has-clear-button="true"] > [data-mfui-content="filter-date-range-picker-display-value"],.mfui-ejNqZV[data-mfui-has-clear-button="true"] > [data-mfui-content="filter-month-picker-display-value"],.mfui-kCMNjq[data-mfui-has-clear-button="true"] > [data-mfui-content="filter-month-range-picker-display-value"] {
|
|
5375
5869
|
padding-right: 32px;
|
|
5376
5870
|
}
|
|
5377
5871
|
}
|
|
@@ -5748,7 +6242,7 @@ li:last-child > .mfui-cXGJls {
|
|
|
5748
6242
|
line-height: inherit;
|
|
5749
6243
|
}
|
|
5750
6244
|
|
|
5751
|
-
.mfui-
|
|
6245
|
+
.mfui-fICbeo {
|
|
5752
6246
|
padding-block: calc(4px - 1px);
|
|
5753
6247
|
padding-inline: var(--mfui-spacing-mfui\.size\.padding\.input\.horizontal\.comfort);
|
|
5754
6248
|
border-radius: var(--mfui-radii-mfui\.size\.radius\.control-component\.comfort);
|
|
@@ -5761,11 +6255,11 @@ li:last-child > .mfui-cXGJls {
|
|
|
5761
6255
|
min-height: var(--mfui-sizes-mfui\.size\.dimension\.control-component\.height\.comfort);
|
|
5762
6256
|
}
|
|
5763
6257
|
|
|
5764
|
-
.mfui-
|
|
6258
|
+
.mfui-jSENMT {
|
|
5765
6259
|
resize: both;
|
|
5766
6260
|
}
|
|
5767
6261
|
|
|
5768
|
-
.mfui-
|
|
6262
|
+
.mfui-cIbyDi {
|
|
5769
6263
|
padding-block: 0;
|
|
5770
6264
|
padding-inline: var(--mfui-spacing-mfui\.size\.padding\.input\.horizontal\.condensed);
|
|
5771
6265
|
border-radius: var(--mfui-radii-mfui\.size\.radius\.control-component\.condensed);
|
|
@@ -5778,7 +6272,7 @@ li:last-child > .mfui-cXGJls {
|
|
|
5778
6272
|
min-height: var(--mfui-sizes-mfui\.size\.dimension\.control-component\.height\.condensed);
|
|
5779
6273
|
}
|
|
5780
6274
|
|
|
5781
|
-
.mfui-
|
|
6275
|
+
.mfui-dkUmiU {
|
|
5782
6276
|
padding-block: calc(12px - 1px);
|
|
5783
6277
|
padding-inline: var(--mfui-spacing-mfui\.size\.padding\.input\.horizontal\.impact);
|
|
5784
6278
|
border-radius: var(--mfui-radii-mfui\.size\.radius\.control-component\.impact);
|
|
@@ -5791,41 +6285,41 @@ li:last-child > .mfui-cXGJls {
|
|
|
5791
6285
|
min-height: var(--mfui-sizes-mfui\.size\.dimension\.control-component\.height\.impact);
|
|
5792
6286
|
}
|
|
5793
6287
|
|
|
5794
|
-
.mfui-
|
|
6288
|
+
.mfui-iRYTTC {
|
|
5795
6289
|
border-color: var(--mfui-colors-mfui\.color\.disabled\.border);
|
|
5796
6290
|
background-color: var(--mfui-colors-mfui\.color\.disabled\.background);
|
|
5797
6291
|
}
|
|
5798
6292
|
|
|
5799
|
-
.mfui-
|
|
6293
|
+
.mfui-iRYTTC,.mfui-iRYTTC::placeholder,.mfui-iRYTTC[data-placeholder] {
|
|
5800
6294
|
color: var(--mfui-colors-mfui\.color\.disabled\.content);
|
|
5801
6295
|
}
|
|
5802
6296
|
|
|
5803
|
-
.mfui-
|
|
6297
|
+
.mfui-fIONTD {
|
|
5804
6298
|
border-color: var(--mfui-colors-mfui\.color\.signal-red\.border\.none);
|
|
5805
6299
|
}
|
|
5806
6300
|
|
|
5807
|
-
.mfui-
|
|
6301
|
+
.mfui-fIONTD:is(:focus-visible, [data-focus-visible]),.mfui-fIONTD:is(:hover, [data-hover]):not(:disabled, [disabled], [data-disabled]):not(:focus-visible, [data-focus-visible]) {
|
|
5808
6302
|
border-color: var(--mfui-colors-mfui\.color\.signal-red\.border\.hovered);
|
|
5809
6303
|
}
|
|
5810
6304
|
|
|
5811
|
-
.mfui-
|
|
6305
|
+
.mfui-fIONTD:is(:active, [data-active]):not(:disabled, [disabled], [data-disabled]):not(:focus-visible, [data-focus-visible]) {
|
|
5812
6306
|
border-color: var(--mfui-colors-mfui\.color\.signal-red\.border\.pressed);
|
|
5813
6307
|
}
|
|
5814
6308
|
|
|
5815
|
-
.mfui-
|
|
6309
|
+
.mfui-gqNQjO {
|
|
5816
6310
|
overflow: hidden;
|
|
5817
6311
|
resize: none;
|
|
5818
6312
|
}
|
|
5819
6313
|
|
|
5820
|
-
.mfui-
|
|
6314
|
+
.mfui-jobIAM {
|
|
5821
6315
|
resize: none;
|
|
5822
6316
|
}
|
|
5823
6317
|
|
|
5824
|
-
.mfui-
|
|
6318
|
+
.mfui-fivmfs {
|
|
5825
6319
|
resize: vertical;
|
|
5826
6320
|
}
|
|
5827
6321
|
|
|
5828
|
-
.mfui-
|
|
6322
|
+
.mfui-eBkQVo {
|
|
5829
6323
|
resize: horizontal;
|
|
5830
6324
|
}
|
|
5831
6325
|
|
|
@@ -7056,6 +7550,76 @@ li:last-child > .mfui-cXGJls {
|
|
|
7056
7550
|
margin-bottom: -1px;
|
|
7057
7551
|
}
|
|
7058
7552
|
|
|
7553
|
+
.mfui-jRMTll {
|
|
7554
|
+
padding-block: 0;
|
|
7555
|
+
padding-inline: var(--mfui-spacing-mfui\.size\.padding\.input\.horizontal\.comfort);
|
|
7556
|
+
border-radius: var(--mfui-radii-mfui\.size\.radius\.control-component\.comfort);
|
|
7557
|
+
border-width: var(--mfui-border-widths-mfui\.size\.border\.base\.width\.comfort);
|
|
7558
|
+
min-width: var(--mfui-sizes-mfui\.size\.target\.button\.comfort);
|
|
7559
|
+
min-height: var(--mfui-sizes-mfui\.size\.dimension\.control-component\.height\.comfort);
|
|
7560
|
+
}
|
|
7561
|
+
|
|
7562
|
+
.mfui-fCOYTJ {
|
|
7563
|
+
font-family: var(--mfui-fonts-mfui\.typography\.font-family\.input);
|
|
7564
|
+
font-size: var(--mfui-font-sizes-mfui\.typography\.font-size\.input);
|
|
7565
|
+
font-weight: var(--mfui-font-weights-mfui\.typography\.font-weight\.input);
|
|
7566
|
+
line-height: var(--mfui-line-heights-mfui\.typography\.line-height\.input);
|
|
7567
|
+
}
|
|
7568
|
+
|
|
7569
|
+
.mfui-iHXKYT {
|
|
7570
|
+
padding-block: 0;
|
|
7571
|
+
padding-inline: var(--mfui-spacing-mfui\.size\.padding\.input\.horizontal\.condensed);
|
|
7572
|
+
border-radius: var(--mfui-radii-mfui\.size\.radius\.control-component\.condensed);
|
|
7573
|
+
border-width: var(--mfui-border-widths-mfui\.size\.border\.base\.width\.condensed);
|
|
7574
|
+
min-width: var(--mfui-sizes-mfui\.size\.target\.button\.condensed);
|
|
7575
|
+
height: var(--mfui-sizes-mfui\.size\.dimension\.control-component\.height\.condensed);
|
|
7576
|
+
}
|
|
7577
|
+
|
|
7578
|
+
.mfui-frZgHr {
|
|
7579
|
+
font-family: var(--mfui-fonts-mfui\.typography\.font-family\.condensed-input);
|
|
7580
|
+
font-size: var(--mfui-font-sizes-mfui\.typography\.font-size\.condensed-input);
|
|
7581
|
+
font-weight: var(--mfui-font-weights-mfui\.typography\.font-weight\.condensed-input);
|
|
7582
|
+
line-height: var(--mfui-line-heights-mfui\.typography\.line-height\.condensed-input);
|
|
7583
|
+
height: calc(var(--mfui-sizes-mfui\.size\.dimension\.control-component\.height\.condensed) - 2 * sizes\.mfui\.size\.border\.base\.width\.condensed);
|
|
7584
|
+
}
|
|
7585
|
+
|
|
7586
|
+
.mfui-crSAFl {
|
|
7587
|
+
padding-block: 0;
|
|
7588
|
+
padding-inline: var(--mfui-spacing-mfui\.size\.padding\.input\.horizontal\.impact);
|
|
7589
|
+
border-radius: var(--mfui-radii-mfui\.size\.radius\.control-component\.impact);
|
|
7590
|
+
border-width: var(--mfui-border-widths-mfui\.size\.border\.base\.width\.impact);
|
|
7591
|
+
min-width: var(--mfui-sizes-mfui\.size\.target\.button\.impact);
|
|
7592
|
+
min-height: var(--mfui-sizes-mfui\.size\.dimension\.control-component\.height\.impact);
|
|
7593
|
+
}
|
|
7594
|
+
|
|
7595
|
+
.mfui-dkMGah {
|
|
7596
|
+
font-family: var(--mfui-fonts-mfui\.typography\.font-family\.input);
|
|
7597
|
+
font-size: var(--mfui-font-sizes-mfui\.typography\.font-size\.input);
|
|
7598
|
+
font-weight: var(--mfui-font-weights-mfui\.typography\.font-weight\.input);
|
|
7599
|
+
line-height: var(--mfui-line-heights-mfui\.typography\.line-height\.input);
|
|
7600
|
+
}
|
|
7601
|
+
|
|
7602
|
+
.mfui-hfSSBT {
|
|
7603
|
+
border-color: var(--mfui-colors-mfui\.color\.disabled\.border);
|
|
7604
|
+
background-color: var(--mfui-colors-mfui\.color\.disabled\.background);
|
|
7605
|
+
}
|
|
7606
|
+
|
|
7607
|
+
.mfui-hfSSBT,.mfui-hfLJor {
|
|
7608
|
+
color: var(--mfui-colors-mfui\.color\.disabled\.content);
|
|
7609
|
+
}
|
|
7610
|
+
|
|
7611
|
+
.mfui-fejPSi {
|
|
7612
|
+
border-color: var(--mfui-colors-mfui\.color\.signal-red\.border\.none);
|
|
7613
|
+
}
|
|
7614
|
+
|
|
7615
|
+
.mfui-fejPSi:has(input:focus-visible, input[data-focus-visible=true], textarea:focus-visible, textarea[data-focus-visible=true]),.mfui-fejPSi:is(:hover, [data-hover]):not(:has(input:disabled, input[disabled], input:focus-visible, input[data-focus-visible])):not(:has(:is(button, [role="button"]):is(:hover, [data-hover]))) {
|
|
7616
|
+
border-color: var(--mfui-colors-mfui\.color\.signal-red\.border\.hovered);
|
|
7617
|
+
}
|
|
7618
|
+
|
|
7619
|
+
.mfui-fejPSi:is(:active, [data-active]):not(:has(input:disabled, input[disabled], input:focus-visible, input[data-focus-visible])):not(:has(:is(button, [role="button"]):is(:active, [data-active]))) {
|
|
7620
|
+
border-color: var(--mfui-colors-mfui\.color\.signal-red\.border\.pressed);
|
|
7621
|
+
}
|
|
7622
|
+
|
|
7059
7623
|
.mfui-bjPlYK {
|
|
7060
7624
|
border-color: var(--mfui-colors-mfui\.color\.neutral\.border\.none);
|
|
7061
7625
|
border-style: dashed;
|
|
@@ -7326,19 +7890,19 @@ li:last-child > .mfui-cXGJls {
|
|
|
7326
7890
|
}
|
|
7327
7891
|
|
|
7328
7892
|
@media screen and (max-width: 37.4975rem) {
|
|
7329
|
-
.mfui-
|
|
7893
|
+
.mfui-fICbeo {
|
|
7330
7894
|
font-family: var(--mfui-fonts-mfui\.typography\.font-family\.input\.narrow);
|
|
7331
7895
|
font-size: var(--mfui-font-sizes-mfui\.typography\.font-size\.input\.narrow);
|
|
7332
7896
|
font-weight: var(--mfui-font-weights-mfui\.typography\.font-weight\.input\.narrow);
|
|
7333
7897
|
line-height: var(--mfui-line-heights-mfui\.typography\.line-height\.input\.narrow);
|
|
7334
7898
|
}
|
|
7335
|
-
.mfui-
|
|
7899
|
+
.mfui-cIbyDi {
|
|
7336
7900
|
font-family: var(--mfui-fonts-mfui\.typography\.font-family\.condensed-input\.narrow);
|
|
7337
7901
|
font-size: var(--mfui-font-sizes-mfui\.typography\.font-size\.condensed-input\.narrow);
|
|
7338
7902
|
font-weight: var(--mfui-font-weights-mfui\.typography\.font-weight\.condensed-input\.narrow);
|
|
7339
7903
|
line-height: var(--mfui-line-heights-mfui\.typography\.line-height\.condensed-input\.narrow);
|
|
7340
7904
|
}
|
|
7341
|
-
.mfui-
|
|
7905
|
+
.mfui-dkUmiU {
|
|
7342
7906
|
font-family: var(--mfui-fonts-mfui\.typography\.font-family\.input\.narrow);
|
|
7343
7907
|
font-size: var(--mfui-font-sizes-mfui\.typography\.font-size\.input\.narrow);
|
|
7344
7908
|
font-weight: var(--mfui-font-weights-mfui\.typography\.font-weight\.input\.narrow);
|
|
@@ -7410,7 +7974,19 @@ li:last-child > .mfui-cXGJls {
|
|
|
7410
7974
|
font-weight: var(--mfui-font-weights-mfui\.typography\.font-weight\.condensed-input\.narrow);
|
|
7411
7975
|
line-height: var(--mfui-line-heights-mfui\.typography\.line-height\.condensed-input\.narrow);
|
|
7412
7976
|
}
|
|
7413
|
-
.mfui-cpFilK,.mfui-fSzHIi {
|
|
7977
|
+
.mfui-cpFilK,.mfui-fSzHIi,.mfui-fCOYTJ {
|
|
7978
|
+
font-family: var(--mfui-fonts-mfui\.typography\.font-family\.input\.narrow);
|
|
7979
|
+
font-size: var(--mfui-font-sizes-mfui\.typography\.font-size\.input\.narrow);
|
|
7980
|
+
font-weight: var(--mfui-font-weights-mfui\.typography\.font-weight\.input\.narrow);
|
|
7981
|
+
line-height: var(--mfui-line-heights-mfui\.typography\.line-height\.input\.narrow);
|
|
7982
|
+
}
|
|
7983
|
+
.mfui-frZgHr {
|
|
7984
|
+
font-family: var(--mfui-fonts-mfui\.typography\.font-family\.condensed-input\.narrow);
|
|
7985
|
+
font-size: var(--mfui-font-sizes-mfui\.typography\.font-size\.condensed-input\.narrow);
|
|
7986
|
+
font-weight: var(--mfui-font-weights-mfui\.typography\.font-weight\.condensed-input\.narrow);
|
|
7987
|
+
line-height: var(--mfui-line-heights-mfui\.typography\.line-height\.condensed-input\.narrow);
|
|
7988
|
+
}
|
|
7989
|
+
.mfui-dkMGah {
|
|
7414
7990
|
font-family: var(--mfui-fonts-mfui\.typography\.font-family\.input\.narrow);
|
|
7415
7991
|
font-size: var(--mfui-font-sizes-mfui\.typography\.font-size\.input\.narrow);
|
|
7416
7992
|
font-weight: var(--mfui-font-weights-mfui\.typography\.font-weight\.input\.narrow);
|