@jobber/components 8.26.3 → 8.27.1
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/Select.d.ts +1 -0
- package/Select.js +17 -0
- package/dist/BottomSheet-cjs.js +8 -7
- package/dist/BottomSheet-es.js +9 -8
- package/dist/ComboboxChipRemove-cjs.js +2 -1
- package/dist/ComboboxChipRemove-es.js +4 -3
- package/dist/DrawerDescription-cjs.js +4 -97
- package/dist/DrawerDescription-es.js +6 -98
- package/dist/FieldDescription-cjs.js +880 -0
- package/dist/FieldDescription-es.js +856 -0
- package/dist/InputNumberExperimental-cjs.js +5 -875
- package/dist/InputNumberExperimental-es.js +2 -854
- package/dist/MenuSubmenuTrigger-es.js +4 -4
- package/dist/Modal/index.cjs +12 -2
- package/dist/Modal/index.mjs +13 -3
- package/dist/NumberFieldInput-cjs.js +2 -2
- package/dist/NumberFieldInput-es.js +1 -1
- package/dist/ScrollAreaViewport-cjs.js +2122 -12
- package/dist/ScrollAreaViewport-es.js +2118 -13
- package/dist/Select/Select.d.ts +31 -0
- package/dist/Select/Select.types.d.ts +145 -0
- package/dist/Select/SelectBottomSheet.d.ts +4 -0
- package/dist/Select/SelectDropdown.d.ts +4 -0
- package/dist/Select/index.cjs +41 -0
- package/dist/Select/index.d.ts +2 -0
- package/dist/Select/index.mjs +35 -0
- package/dist/Select-cjs.js +231 -0
- package/dist/Select-es.js +229 -0
- package/dist/SelectPrimitive-cjs.js +20 -3
- package/dist/SelectPrimitive-es.js +20 -3
- package/dist/dialogReturnFocus-cjs.js +8 -5
- package/dist/dialogReturnFocus-es.js +9 -6
- package/dist/docs/Dialog/Dialog.md +74 -21
- package/dist/docs/Select/Select.md +428 -0
- package/dist/docs/SelectPrimitive/SelectPrimitive.md +14 -1
- package/dist/docs/index.md +1 -0
- package/dist/floating-ui.react-dom-es.js +1 -1
- package/dist/floating-ui.react-es.js +1 -1
- package/dist/floating-ui.utils.dom-es.js +1 -1
- package/dist/index.cjs +9 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +8 -0
- package/dist/primitives/ComboboxPrimitive/index.cjs +1 -0
- package/dist/primitives/ComboboxPrimitive/index.mjs +1 -0
- package/dist/primitives/HelperText/HelperText.d.ts +2 -1
- package/dist/primitives/InputNumberExperimental/index.cjs +3 -1
- package/dist/primitives/InputNumberExperimental/index.mjs +3 -1
- package/dist/primitives/SelectPrimitive/SelectPrimitive.d.ts +11 -0
- package/dist/primitives/SelectPrimitive/index.d.ts +1 -1
- package/dist/primitives/SelectPrimitive/types.d.ts +15 -0
- package/dist/primitives/index.cjs +2 -0
- package/dist/primitives/index.mjs +2 -0
- package/dist/stringifyLocale-cjs.js +13 -0
- package/dist/stringifyLocale-es.js +11 -0
- package/dist/styles.css +300 -10
- package/dist/unstyledPrimitives/index.cjs +219 -2230
- package/dist/unstyledPrimitives/index.mjs +225 -2236
- package/dist/useButton-es.js +2 -2
- package/dist/useCompositeListItem-es.js +1 -1
- package/dist/useLabel-cjs.js +0 -11
- package/dist/useLabel-es.js +2 -12
- package/dist/useScrollLock-es.js +3 -3
- package/dist/utils/meta/meta.json +5 -0
- package/package.json +7 -2
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type React from "react";
|
|
2
|
+
import type { ReactNode } from "react";
|
|
2
3
|
import type { Select } from "../../unstyledPrimitives";
|
|
3
4
|
import type { OverlaySeparator } from "../OverlaySeparator";
|
|
4
5
|
export type SelectPrimitiveRootProps = React.ComponentPropsWithoutRef<typeof Select.Root>;
|
|
@@ -14,3 +15,17 @@ export type SelectPrimitiveItemIndicatorProps = React.ComponentPropsWithoutRef<t
|
|
|
14
15
|
export type SelectPrimitiveGroupProps = React.ComponentPropsWithoutRef<typeof Select.Group>;
|
|
15
16
|
export type SelectPrimitiveGroupLabelProps = React.ComponentPropsWithoutRef<typeof Select.GroupLabel>;
|
|
16
17
|
export type SelectPrimitiveSeparatorProps = React.ComponentPropsWithoutRef<typeof OverlaySeparator>;
|
|
18
|
+
/**
|
|
19
|
+
* Context-free, presentational trigger surface (field button + chevron). Render
|
|
20
|
+
* it via Base UI's `Select.Trigger` (or any trigger's `render` prop) so the
|
|
21
|
+
* field chrome can be reused outside a `Select.Root` — e.g. a bottom sheet.
|
|
22
|
+
*/
|
|
23
|
+
export interface SelectPrimitiveFieldTriggerProps extends React.ComponentPropsWithRef<"button"> {
|
|
24
|
+
/** The value/placeholder display element rendered before the chevron. */
|
|
25
|
+
readonly valueSlot?: ReactNode;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Presentational value text (the `.value` styling) for triggers rendered
|
|
29
|
+
* outside a `Select.Root`, where `SelectPrimitive.Value` can't be used.
|
|
30
|
+
*/
|
|
31
|
+
export type SelectPrimitiveValueTextProps = React.ComponentPropsWithRef<"span">;
|
|
@@ -32,8 +32,10 @@ require('../useLabelableId-cjs.js');
|
|
|
32
32
|
require('../useCompositeListItem-cjs.js');
|
|
33
33
|
require('../floating-ui.react-dom-cjs.js');
|
|
34
34
|
require('../resolveAriaLabelledBy-cjs.js');
|
|
35
|
+
require('../stringifyLocale-cjs.js');
|
|
35
36
|
require('../useLabel-cjs.js');
|
|
36
37
|
require('../ActivityIndicator-cjs.js');
|
|
38
|
+
require('../FieldDescription-cjs.js');
|
|
37
39
|
require('../NumberFieldInput-cjs.js');
|
|
38
40
|
require('../SelectGroupLabel-cjs.js');
|
|
39
41
|
require('../isElementDisabled-cjs.js');
|
|
@@ -30,8 +30,10 @@ import '../useLabelableId-es.js';
|
|
|
30
30
|
import '../useCompositeListItem-es.js';
|
|
31
31
|
import '../floating-ui.react-dom-es.js';
|
|
32
32
|
import '../resolveAriaLabelledBy-es.js';
|
|
33
|
+
import '../stringifyLocale-es.js';
|
|
33
34
|
import '../useLabel-es.js';
|
|
34
35
|
import '../ActivityIndicator-es.js';
|
|
36
|
+
import '../FieldDescription-es.js';
|
|
35
37
|
import '../NumberFieldInput-es.js';
|
|
36
38
|
import '../SelectGroupLabel-es.js';
|
|
37
39
|
import '../isElementDisabled-es.js';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
function stringifyLocale(locale) {
|
|
4
|
+
if (Array.isArray(locale)) {
|
|
5
|
+
return locale.map(value => stringifyLocale(value)).join(',');
|
|
6
|
+
}
|
|
7
|
+
if (locale == null) {
|
|
8
|
+
return '';
|
|
9
|
+
}
|
|
10
|
+
return String(locale);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
exports.stringifyLocale = stringifyLocale;
|
package/dist/styles.css
CHANGED
|
@@ -4055,7 +4055,7 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
4055
4055
|
*/
|
|
4056
4056
|
}
|
|
4057
4057
|
|
|
4058
|
-
.Qf3IFhKJwQ0-:has(~ ._868PDAA3U2M-[data-nested-drawer-open]) {
|
|
4058
|
+
.Qf3IFhKJwQ0-:has(~ .U069n8h0urk- ._868PDAA3U2M-[data-nested-drawer-open]) {
|
|
4059
4059
|
background-color: transparent;
|
|
4060
4060
|
}
|
|
4061
4061
|
|
|
@@ -4154,6 +4154,24 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
4154
4154
|
}
|
|
4155
4155
|
}
|
|
4156
4156
|
|
|
4157
|
+
/*
|
|
4158
|
+
* Positioning container for the popup, spanning the whole screen. Base UI's
|
|
4159
|
+
* Drawer expects the popup to render within a viewport (it enables swipe
|
|
4160
|
+
* handling and touch scroll locking). The popup positions itself (fixed, pinned
|
|
4161
|
+
* to the bottom); the viewport only establishes the full-screen area above the
|
|
4162
|
+
* backdrop.
|
|
4163
|
+
*/
|
|
4164
|
+
|
|
4165
|
+
.U069n8h0urk- {
|
|
4166
|
+
position: fixed;
|
|
4167
|
+
top: 0;
|
|
4168
|
+
right: 0;
|
|
4169
|
+
bottom: 0;
|
|
4170
|
+
left: 0;
|
|
4171
|
+
z-index: 1001;
|
|
4172
|
+
z-index: var(--elevation-modal);
|
|
4173
|
+
}
|
|
4174
|
+
|
|
4157
4175
|
.yL7--3ni8BM- {
|
|
4158
4176
|
display: -ms-flexbox;
|
|
4159
4177
|
display: flex;
|
|
@@ -10381,8 +10399,14 @@ h2.react-datepicker__current-month {
|
|
|
10381
10399
|
--dialog-popup-max-width: 1032px;
|
|
10382
10400
|
}
|
|
10383
10401
|
.nJoCr8oWJ7w- {
|
|
10384
|
-
|
|
10385
|
-
|
|
10402
|
+
/* Use 100% (not 100vw) so the popup fills the viewport's scrollable content
|
|
10403
|
+
box rather than the full vw since the vertical scrollbar takes up layout space */
|
|
10404
|
+
--dialog-popup-width: 100%;
|
|
10405
|
+
--dialog-popup-max-width: 100%;
|
|
10406
|
+
/* Always cap the popup to the viewport height for full-screen, regardless of
|
|
10407
|
+
whether any region is sticky. Without this, the "nothing-sticky" scroll
|
|
10408
|
+
composition will not be able to scroll. */
|
|
10409
|
+
--dialog-popup-max-height: 100dvh;
|
|
10386
10410
|
--dialog-popup-min-height: 100dvh;
|
|
10387
10411
|
/* No margins full screen — the viewport also drops its padding-block for
|
|
10388
10412
|
fullScreen (below) so the popup sits flush against every edge. Zeroing the
|
|
@@ -10456,12 +10480,8 @@ h2.react-datepicker__current-month {
|
|
|
10456
10480
|
padding: 0 24px 24px;
|
|
10457
10481
|
padding: 0 var(--space-large) var(--space-large);
|
|
10458
10482
|
}
|
|
10459
|
-
/* Slide the
|
|
10483
|
+
/* Slide the sheet up on open, down on close. */
|
|
10460
10484
|
.vmcZRwOcNMo- {
|
|
10461
|
-
-webkit-transform: translateY(0px);
|
|
10462
|
-
-webkit-transform: translateY(var(--drawer-swipe-movement-y, 0px));
|
|
10463
|
-
transform: translateY(0px);
|
|
10464
|
-
transform: translateY(var(--drawer-swipe-movement-y, 0px));
|
|
10465
10485
|
transition: -webkit-transform 200ms ease;
|
|
10466
10486
|
transition: -webkit-transform var(--timing-base) ease;
|
|
10467
10487
|
transition: transform 200ms ease;
|
|
@@ -10474,12 +10494,44 @@ h2.react-datepicker__current-month {
|
|
|
10474
10494
|
-webkit-transform: translateY(100%);
|
|
10475
10495
|
transform: translateY(100%);
|
|
10476
10496
|
}
|
|
10497
|
+
/*
|
|
10498
|
+
* Only transform the sheet mid-swipe, never while it's just sitting open.
|
|
10499
|
+
* Why it matters: any transform on this element makes its `position: fixed`
|
|
10500
|
+
* children size themselves to the sheet instead of the screen. FilterPicker's
|
|
10501
|
+
* click-away layer is one of those fixed, full-screen children — with a
|
|
10502
|
+
* transform here it shrinks to the sheet's box, so tapping the backdrop misses
|
|
10503
|
+
* it, hits the sheet, and closes the whole sheet instead of just the picker.
|
|
10504
|
+
* A swipe is the one time we need the transform, and there's no open picker to
|
|
10505
|
+
* break then. base-ui adds `data-swiping` and updates the movement variable
|
|
10506
|
+
* while a swipe is happening.
|
|
10507
|
+
*/
|
|
10508
|
+
.vmcZRwOcNMo-[data-swiping] {
|
|
10509
|
+
-webkit-transform: translateY(0px);
|
|
10510
|
+
-webkit-transform: translateY(var(--drawer-swipe-movement-y, 0px));
|
|
10511
|
+
transform: translateY(0px);
|
|
10512
|
+
transform: translateY(var(--drawer-swipe-movement-y, 0px));
|
|
10513
|
+
}
|
|
10477
10514
|
/* Full-screen bottom sheet */
|
|
10478
10515
|
.vmcZRwOcNMo-[data-size="fullScreen"] {
|
|
10479
10516
|
height: 100dvh;
|
|
10480
10517
|
max-height: 100dvh;
|
|
10481
10518
|
border-radius: 0;
|
|
10482
10519
|
}
|
|
10520
|
+
/* The sheet content renders inside a `Drawer.Content` region (`data-drawer-content`,
|
|
10521
|
+
swipe-ignored so a nested floater can catch an outside press). It's a direct
|
|
10522
|
+
child of the popup, so pass the popup's flex column through it — otherwise the
|
|
10523
|
+
Header/ScrollArea/Footer no longer flex against the popup and the scroll region
|
|
10524
|
+
can't fill/scroll (most visibly on fullScreen at 100dvh). */
|
|
10525
|
+
.vmcZRwOcNMo- > [data-drawer-content] {
|
|
10526
|
+
display: -ms-flexbox;
|
|
10527
|
+
display: flex;
|
|
10528
|
+
-ms-flex: 1 1 auto;
|
|
10529
|
+
flex: 1 1 auto;
|
|
10530
|
+
min-height: 0;
|
|
10531
|
+
-ms-flex-direction: column;
|
|
10532
|
+
flex-direction: column;
|
|
10533
|
+
overflow: hidden;
|
|
10534
|
+
}
|
|
10483
10535
|
/* Scroll divider — shown on a sticky Header/Footer only while the scroll region
|
|
10484
10536
|
actually overflows (BaseUI sets `data-has-overflow-y` on the ScrollArea root
|
|
10485
10537
|
when its content overflows). */
|
|
@@ -10548,8 +10600,12 @@ h2.react-datepicker__current-month {
|
|
|
10548
10600
|
background-color: transparent;
|
|
10549
10601
|
backdrop-filter: none;
|
|
10550
10602
|
}
|
|
10551
|
-
/* Bottom sheet backdrop
|
|
10552
|
-
|
|
10603
|
+
/* Bottom sheet backdrop. The sheet popup (`data-dialog-variant="sheet"`) renders
|
|
10604
|
+
inside the drawer viewport, which is the backdrop's following sibling, so
|
|
10605
|
+
target the viewport by its testid then match the sheet popup within it. */
|
|
10606
|
+
[data-testid="ATL-BottomSheet-Backdrop"]:has(
|
|
10607
|
+
~ [data-testid="ATL-BottomSheet-Viewport"] [data-dialog-variant="sheet"]
|
|
10608
|
+
) {
|
|
10553
10609
|
background-color: rgba(121, 119, 114, 0.48);
|
|
10554
10610
|
backdrop-filter: blur(2px);
|
|
10555
10611
|
}
|
|
@@ -13487,6 +13543,240 @@ input.oOrjwubmsVA- {
|
|
|
13487
13543
|
left: calc(100% / var(--segmentedControl--option-count) * 4);
|
|
13488
13544
|
}
|
|
13489
13545
|
|
|
13546
|
+
.cWI-uFeNWWw- {
|
|
13547
|
+
display: -ms-flexbox;
|
|
13548
|
+
display: flex;
|
|
13549
|
+
-ms-flex-direction: column;
|
|
13550
|
+
flex-direction: column;
|
|
13551
|
+
gap: 4px;
|
|
13552
|
+
gap: var(--space-smaller);
|
|
13553
|
+
width: 100%;
|
|
13554
|
+
}
|
|
13555
|
+
|
|
13556
|
+
.ddkBixixBz4- {
|
|
13557
|
+
display: -ms-inline-flexbox;
|
|
13558
|
+
display: inline-flex;
|
|
13559
|
+
width: auto;
|
|
13560
|
+
vertical-align: middle;
|
|
13561
|
+
}
|
|
13562
|
+
|
|
13563
|
+
._-1-lIAkgLuo- {
|
|
13564
|
+
position: relative;
|
|
13565
|
+
width: 100%;
|
|
13566
|
+
}
|
|
13567
|
+
|
|
13568
|
+
.cWI-uFeNWWw-.ddkBixixBz4- ._-1-lIAkgLuo- {
|
|
13569
|
+
width: auto;
|
|
13570
|
+
}
|
|
13571
|
+
|
|
13572
|
+
.cWI-uFeNWWw- ._7rwBeCqTgRY- {
|
|
13573
|
+
--field--height: calc(var(--space-largest) + 2 * var(--border-base));
|
|
13574
|
+
|
|
13575
|
+
transition: border-color 200ms ease-out;
|
|
13576
|
+
|
|
13577
|
+
transition: border-color var(--timing-base) ease-out;
|
|
13578
|
+
}
|
|
13579
|
+
|
|
13580
|
+
.cWI-uFeNWWw-.ddkBixixBz4- ._7rwBeCqTgRY- {
|
|
13581
|
+
width: auto;
|
|
13582
|
+
}
|
|
13583
|
+
|
|
13584
|
+
/* ------ Size variants ------ */
|
|
13585
|
+
|
|
13586
|
+
.cWI-uFeNWWw-._5QeBX5VxX6o- ._7rwBeCqTgRY- {
|
|
13587
|
+
--field--height: calc(var(--space-larger) + var(--space-smaller));
|
|
13588
|
+
--field--padding-x: var(--space-slim);
|
|
13589
|
+
}
|
|
13590
|
+
|
|
13591
|
+
.cWI-uFeNWWw-.Pp5nj1nxejw- ._7rwBeCqTgRY- {
|
|
13592
|
+
--field--height: var(--space-extravagant);
|
|
13593
|
+
--field--padding-x: var(--space-large);
|
|
13594
|
+
}
|
|
13595
|
+
|
|
13596
|
+
/* ------ Floating label ------ */
|
|
13597
|
+
|
|
13598
|
+
.M1IjAW17-OE- {
|
|
13599
|
+
position: absolute;
|
|
13600
|
+
top: calc(2px + 1px);
|
|
13601
|
+
top: calc(var(--space-smallest) + var(--border-base));
|
|
13602
|
+
left: 0;
|
|
13603
|
+
z-index: 1;
|
|
13604
|
+
width: 100%;
|
|
13605
|
+
box-sizing: border-box;
|
|
13606
|
+
padding: 0 calc(16px + 1px);
|
|
13607
|
+
padding: 0 calc(var(--space-base) + var(--border-base));
|
|
13608
|
+
overflow: hidden;
|
|
13609
|
+
color: hsl(197, 21%, 36%);
|
|
13610
|
+
color: var(--color-text--secondary);
|
|
13611
|
+
font-size: 12px;
|
|
13612
|
+
font-size: var(--typography--fontSize-small);
|
|
13613
|
+
line-height: calc(16px * 1.25);
|
|
13614
|
+
line-height: calc(var(--base-unit) * 1.25);
|
|
13615
|
+
text-align: left;
|
|
13616
|
+
text-overflow: ellipsis;
|
|
13617
|
+
white-space: nowrap;
|
|
13618
|
+
pointer-events: none;
|
|
13619
|
+
|
|
13620
|
+
transition: top 100ms ease-out,
|
|
13621
|
+
font-size 100ms ease-out,
|
|
13622
|
+
-webkit-transform 100ms ease-out;
|
|
13623
|
+
|
|
13624
|
+
transition: top var(--timing-quick) ease-out,
|
|
13625
|
+
font-size var(--timing-quick) ease-out,
|
|
13626
|
+
-webkit-transform var(--timing-quick) ease-out;
|
|
13627
|
+
|
|
13628
|
+
transition: top 100ms ease-out,
|
|
13629
|
+
font-size 100ms ease-out,
|
|
13630
|
+
transform 100ms ease-out;
|
|
13631
|
+
|
|
13632
|
+
transition: top var(--timing-quick) ease-out,
|
|
13633
|
+
font-size var(--timing-quick) ease-out,
|
|
13634
|
+
transform var(--timing-quick) ease-out;
|
|
13635
|
+
|
|
13636
|
+
transition: top 100ms ease-out,
|
|
13637
|
+
font-size 100ms ease-out,
|
|
13638
|
+
transform 100ms ease-out,
|
|
13639
|
+
-webkit-transform 100ms ease-out;
|
|
13640
|
+
|
|
13641
|
+
transition: top var(--timing-quick) ease-out,
|
|
13642
|
+
font-size var(--timing-quick) ease-out,
|
|
13643
|
+
transform var(--timing-quick) ease-out,
|
|
13644
|
+
-webkit-transform var(--timing-quick) ease-out;
|
|
13645
|
+
}
|
|
13646
|
+
|
|
13647
|
+
.cWI-uFeNWWw-.Pp5nj1nxejw- .M1IjAW17-OE- {
|
|
13648
|
+
padding: 0 calc(24px + 1px);
|
|
13649
|
+
padding: 0 calc(var(--space-large) + var(--border-base));
|
|
13650
|
+
}
|
|
13651
|
+
|
|
13652
|
+
._-1-lIAkgLuo-:has(._7rwBeCqTgRY-[data-placeholder]) .M1IjAW17-OE- {
|
|
13653
|
+
top: 50%;
|
|
13654
|
+
font-size: 14px;
|
|
13655
|
+
font-size: var(--typography--fontSize-base);
|
|
13656
|
+
-webkit-transform: translateY(-50%);
|
|
13657
|
+
transform: translateY(-50%);
|
|
13658
|
+
}
|
|
13659
|
+
|
|
13660
|
+
.M1IjAW17-OE-[data-disabled] {
|
|
13661
|
+
color: hsl(0, 0%, 58%);
|
|
13662
|
+
color: var(--color-disabled);
|
|
13663
|
+
}
|
|
13664
|
+
|
|
13665
|
+
.cWI-uFeNWWw-._1rx-nSAJT0U-:not(._5QeBX5VxX6o-) ._7rwBeCqTgRY- {
|
|
13666
|
+
padding-top: calc(16px + 4px);
|
|
13667
|
+
padding-top: calc(var(--space-base) + var(--space-smaller));
|
|
13668
|
+
padding-bottom: 8px;
|
|
13669
|
+
padding-bottom: var(--space-small);
|
|
13670
|
+
}
|
|
13671
|
+
|
|
13672
|
+
.cWI-uFeNWWw-._1rx-nSAJT0U-.Pp5nj1nxejw- ._7rwBeCqTgRY- {
|
|
13673
|
+
padding-top: calc(24px + 4px);
|
|
13674
|
+
padding-top: calc(var(--space-large) + var(--space-smaller));
|
|
13675
|
+
}
|
|
13676
|
+
|
|
13677
|
+
.cWI-uFeNWWw-._5QeBX5VxX6o-._1rx-nSAJT0U- .M1IjAW17-OE- {
|
|
13678
|
+
display: none;
|
|
13679
|
+
}
|
|
13680
|
+
|
|
13681
|
+
/* ------ Mobile bottom sheet ------ */
|
|
13682
|
+
|
|
13683
|
+
.AVkCcDISAio- {
|
|
13684
|
+
--sheet-item-gap: var(--space-small);
|
|
13685
|
+
--sheet-item-min-height: calc(var(--base-unit) * 3);
|
|
13686
|
+
--sheet-item-padding-y: var(--space-small);
|
|
13687
|
+
--sheet-item-padding-x: var(--space-small);
|
|
13688
|
+
|
|
13689
|
+
display: -ms-flexbox;
|
|
13690
|
+
|
|
13691
|
+
display: flex;
|
|
13692
|
+
-ms-flex-direction: column;
|
|
13693
|
+
flex-direction: column;
|
|
13694
|
+
padding: 16px;
|
|
13695
|
+
padding: var(--space-base);
|
|
13696
|
+
outline: none;
|
|
13697
|
+
}
|
|
13698
|
+
|
|
13699
|
+
._35H33txs5QU- {
|
|
13700
|
+
display: -ms-flexbox;
|
|
13701
|
+
display: flex;
|
|
13702
|
+
-ms-flex-align: center;
|
|
13703
|
+
align-items: center;
|
|
13704
|
+
gap: var(--sheet-item-gap);
|
|
13705
|
+
min-height: var(--sheet-item-min-height);
|
|
13706
|
+
box-sizing: border-box;
|
|
13707
|
+
padding: var(--sheet-item-padding-y) var(--sheet-item-padding-x);
|
|
13708
|
+
border-radius: 8px;
|
|
13709
|
+
border-radius: var(--radius-base);
|
|
13710
|
+
outline: none;
|
|
13711
|
+
color: hsl(197, 90%, 12%);
|
|
13712
|
+
color: var(--color-heading);
|
|
13713
|
+
font-size: 14px;
|
|
13714
|
+
font-size: var(--typography--fontSize-base);
|
|
13715
|
+
cursor: pointer;
|
|
13716
|
+
}
|
|
13717
|
+
|
|
13718
|
+
._35H33txs5QU-:focus-visible,
|
|
13719
|
+
._35H33txs5QU-:hover {
|
|
13720
|
+
background-color: hsl(43, 18%, 92%);
|
|
13721
|
+
background-color: var(--color-surface--hover);
|
|
13722
|
+
}
|
|
13723
|
+
|
|
13724
|
+
.uL9j4OZn-3c- {
|
|
13725
|
+
-ms-flex: 1;
|
|
13726
|
+
flex: 1;
|
|
13727
|
+
min-width: 0;
|
|
13728
|
+
overflow: hidden;
|
|
13729
|
+
text-overflow: ellipsis;
|
|
13730
|
+
white-space: nowrap;
|
|
13731
|
+
}
|
|
13732
|
+
|
|
13733
|
+
._7NHtDHZnkG8- {
|
|
13734
|
+
display: -ms-inline-flexbox;
|
|
13735
|
+
display: inline-flex;
|
|
13736
|
+
-ms-flex-negative: 0;
|
|
13737
|
+
flex-shrink: 0;
|
|
13738
|
+
-ms-flex-align: center;
|
|
13739
|
+
align-items: center;
|
|
13740
|
+
}
|
|
13741
|
+
|
|
13742
|
+
.UQ1tsDd1NFs- {
|
|
13743
|
+
display: -ms-flexbox;
|
|
13744
|
+
display: flex;
|
|
13745
|
+
-ms-flex-direction: column;
|
|
13746
|
+
flex-direction: column;
|
|
13747
|
+
}
|
|
13748
|
+
|
|
13749
|
+
.UQ1tsDd1NFs-:not(:last-child) {
|
|
13750
|
+
padding-bottom: 8px;
|
|
13751
|
+
padding-bottom: var(--space-small);
|
|
13752
|
+
border-bottom: 1px solid hsl(200, 13%, 87%);
|
|
13753
|
+
border-bottom: var(--border-base) solid var(--color-border);
|
|
13754
|
+
}
|
|
13755
|
+
|
|
13756
|
+
.UQ1tsDd1NFs-:not(:first-child) {
|
|
13757
|
+
margin-top: 8px;
|
|
13758
|
+
margin-top: var(--space-small);
|
|
13759
|
+
}
|
|
13760
|
+
|
|
13761
|
+
._0kBfkWoRI5c- {
|
|
13762
|
+
padding: var(--sheet-item-padding-y) var(--sheet-item-padding-x)
|
|
13763
|
+
4px;
|
|
13764
|
+
padding: var(--sheet-item-padding-y) var(--sheet-item-padding-x)
|
|
13765
|
+
var(--space-smaller);
|
|
13766
|
+
color: hsl(197, 21%, 36%);
|
|
13767
|
+
color: var(--color-text--secondary);
|
|
13768
|
+
font-size: 14px;
|
|
13769
|
+
font-size: var(--typography--fontSize-base);
|
|
13770
|
+
}
|
|
13771
|
+
|
|
13772
|
+
.RPsN9vqlzRw- {
|
|
13773
|
+
margin: 8px 0;
|
|
13774
|
+
margin: var(--space-small) 0;
|
|
13775
|
+
border: none;
|
|
13776
|
+
border-bottom: 1px solid hsl(200, 13%, 87%);
|
|
13777
|
+
border-bottom: var(--border-base) solid var(--color-border);
|
|
13778
|
+
}
|
|
13779
|
+
|
|
13490
13780
|
.cCwRgRAz4qk- {
|
|
13491
13781
|
--sideDrawer--base-padding: var(--space-base);
|
|
13492
13782
|
--sideDrawer--background: var(--color-surface);
|