@jobber/components 7.8.0 → 7.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/dist/Autocomplete/index.mjs +1 -1
  2. package/dist/Button/buttonRenderAdapter.d.ts +304 -0
  3. package/dist/Card/index.cjs +7 -4
  4. package/dist/Card/index.mjs +7 -4
  5. package/dist/Countdown/index.cjs +1 -1
  6. package/dist/Countdown/index.mjs +1 -1
  7. package/dist/Countdown-cjs.js +1 -1
  8. package/dist/Countdown-es.js +1 -1
  9. package/dist/DataDump/index.cjs +7 -4
  10. package/dist/DataDump/index.mjs +7 -4
  11. package/dist/DrawerRoot-cjs.js +2634 -2142
  12. package/dist/DrawerRoot-es.js +2523 -2065
  13. package/dist/InputAvatar/index.cjs +1 -1
  14. package/dist/InputAvatar/index.mjs +1 -1
  15. package/dist/InputFile/index.cjs +1 -1
  16. package/dist/InputFile/index.mjs +1 -1
  17. package/dist/InputFile-cjs.js +1 -1
  18. package/dist/InputFile-es.js +1 -1
  19. package/dist/InputNumber/index.cjs +2441 -186
  20. package/dist/InputNumber/index.mjs +2361 -106
  21. package/dist/Menu/Menu.Legacy.d.ts +3 -0
  22. package/dist/Menu/Menu.d.ts +66 -24
  23. package/dist/Menu/Menu.types.d.ts +8 -108
  24. package/dist/Menu/MenuBottomSheet.d.ts +29 -0
  25. package/dist/Menu/MenuDropdown.d.ts +29 -0
  26. package/dist/Menu/index.cjs +7 -4
  27. package/dist/Menu/index.mjs +7 -4
  28. package/dist/Menu/menuComposableShared.d.ts +27 -0
  29. package/dist/Menu/menuComposableTypes.d.ts +99 -0
  30. package/dist/Menu-cjs.js +828 -8419
  31. package/dist/Menu-es.js +823 -8414
  32. package/dist/MenuSubmenuTrigger-cjs.js +5283 -0
  33. package/dist/MenuSubmenuTrigger-es.js +5224 -0
  34. package/dist/Modal/index.mjs +1 -1
  35. package/dist/Page/index.cjs +6 -3
  36. package/dist/Page/index.mjs +6 -3
  37. package/dist/Page-cjs.js +1 -1
  38. package/dist/Page-es.js +1 -1
  39. package/dist/RecurringSelect/index.cjs +0 -1
  40. package/dist/RecurringSelect/index.mjs +0 -1
  41. package/dist/docs/Menu/Menu.md +7 -62
  42. package/dist/floating-ui.react-dom-es.js +1 -1
  43. package/dist/floating-ui.react-es.js +2 -2
  44. package/dist/index-cjs.js +1161 -166
  45. package/dist/index-es.js +1160 -166
  46. package/dist/index.cjs +7 -3
  47. package/dist/index.esm-es.js +1 -1
  48. package/dist/index.mjs +7 -3
  49. package/dist/primitives/BottomSheet/index.cjs +0 -1
  50. package/dist/primitives/BottomSheet/index.mjs +0 -1
  51. package/dist/primitives/index.cjs +0 -1
  52. package/dist/primitives/index.mjs +0 -1
  53. package/dist/styles.css +540 -31
  54. package/dist/unstyledPrimitives/index.cjs +6662 -8039
  55. package/dist/unstyledPrimitives/index.d.ts +2 -1
  56. package/dist/unstyledPrimitives/index.mjs +6733 -8111
  57. package/dist/useRenderElement-cjs.js +212 -212
  58. package/dist/useRenderElement-es.js +213 -213
  59. package/dist/utils/meta/meta.json +9 -0
  60. package/package.json +2 -2
  61. package/dist/Text-cjs2.js +0 -2484
  62. package/dist/Text-es2.js +0 -2417
  63. package/dist/index-cjs2.js +0 -1189
  64. package/dist/index-es2.js +0 -1186
package/dist/styles.css CHANGED
@@ -3070,6 +3070,305 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
3070
3070
  box-shadow: var(--shadow-high);
3071
3071
  }
3072
3072
 
3073
+ .h-nk89U2n6Q- * {
3074
+ box-sizing: border-box;
3075
+ }
3076
+
3077
+ .h-nk89U2n6Q- {
3078
+ position: relative;
3079
+ }
3080
+
3081
+ .krpkWzoaVcc- {
3082
+ z-index: 1001;
3083
+ z-index: var(--elevation-modal);
3084
+ }
3085
+
3086
+ ._7sU7mp1w0jM- {
3087
+ --menu-space: var(--space-small);
3088
+ --menu-offset: var(--space-smallest);
3089
+ z-index: 1001;
3090
+ z-index: var(--elevation-modal);
3091
+ box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.1), 0px 4px 12px 0px rgba(0, 0, 0, 0.05);
3092
+ box-shadow: var(--shadow-base);
3093
+ box-sizing: border-box;
3094
+ padding: 8px;
3095
+ padding: var(--menu-space);
3096
+ padding-bottom: calc(env(safe-area-inset-bottom) + 8px);
3097
+ padding-bottom: calc(env(safe-area-inset-bottom) + var(--menu-space));
3098
+ border-radius: 8px 8px 0 0;
3099
+ border-radius: var(--radius-base) var(--radius-base) 0 0;
3100
+ outline: none;
3101
+ overflow-y: scroll;
3102
+ background-color: rgba(255, 255, 255, 1);
3103
+ background-color: var(--color-surface);
3104
+ -webkit-overflow-scrolling: touch;
3105
+ }
3106
+
3107
+ @media (max-width: 489px) {
3108
+
3109
+ ._7sU7mp1w0jM- {
3110
+ position: fixed;
3111
+ right: 0;
3112
+ bottom: 0;
3113
+ left: 0;
3114
+ max-height: 70vh;
3115
+ }
3116
+ }
3117
+
3118
+ @media (--small-screens-and-below) {
3119
+
3120
+ ._7sU7mp1w0jM- {
3121
+ position: fixed;
3122
+ right: 0;
3123
+ bottom: 0;
3124
+ left: 0;
3125
+ max-height: 70vh;
3126
+ }
3127
+ }
3128
+
3129
+ @media (min-width: 490px) {
3130
+
3131
+ ._7sU7mp1w0jM- {
3132
+ width: calc(16px * 12.5);
3133
+ width: calc(var(--base-unit) * 12.5);
3134
+ padding: var(--menu-space);
3135
+ border: 1px solid hsl(200, 13%, 87%);
3136
+ border: var(--border-base) solid var(--color-border);
3137
+ border-radius: 8px;
3138
+ border-radius: var(--radius-base);
3139
+ overflow: auto;
3140
+ }
3141
+ }
3142
+
3143
+ @media (--small-screens-and-up) {
3144
+
3145
+ ._7sU7mp1w0jM- {
3146
+ width: calc(16px * 12.5);
3147
+ width: calc(var(--base-unit) * 12.5);
3148
+ padding: var(--menu-space);
3149
+ border: 1px solid hsl(200, 13%, 87%);
3150
+ border: var(--border-base) solid var(--color-border);
3151
+ border-radius: 8px;
3152
+ border-radius: var(--radius-base);
3153
+ overflow: auto;
3154
+ }
3155
+ }
3156
+
3157
+ ._4x-vvEmn4gM- {
3158
+ padding: var(--menu-space) 0;
3159
+ }
3160
+
3161
+ ._4x-vvEmn4gM-,
3162
+ .i0QNcs4S-wk- {
3163
+ border-bottom: 1px solid hsl(200, 13%, 87%);
3164
+ border-bottom: var(--border-base) solid var(--color-border);
3165
+ }
3166
+
3167
+ ._4x-vvEmn4gM-:last-of-type {
3168
+ padding-bottom: 0;
3169
+ border-bottom: none;
3170
+ }
3171
+
3172
+ ._4x-vvEmn4gM-:first-of-type {
3173
+ padding-top: 0;
3174
+ }
3175
+
3176
+ .i0QNcs4S-wk- {
3177
+ margin: 8px 0;
3178
+ margin: var(--space-small) 0;
3179
+ grid-column: 1 / -1;
3180
+ }
3181
+
3182
+ ._7CsejipGrzM- {
3183
+ display: -ms-inline-flexbox;
3184
+ display: inline-flex;
3185
+ outline: none;
3186
+ }
3187
+
3188
+ .bO7lGVQC42c- {
3189
+ display: grid;
3190
+ max-height: inherit;
3191
+ grid-template-columns: auto 1fr auto;
3192
+ }
3193
+
3194
+ .u6fDgbWmPck- {
3195
+ display: grid;
3196
+ grid-template-columns: subgrid;
3197
+ grid-column: 1 / -1;
3198
+ -ms-flex-align: center;
3199
+ align-items: center;
3200
+ grid-gap: var(--menu-space);
3201
+ gap: var(--menu-space);
3202
+ }
3203
+
3204
+ .u6fDgbWmPck- > [data-menu-slot="icon"] {
3205
+ grid-column-start: 1;
3206
+ grid-row-start: 1;
3207
+ }
3208
+
3209
+ .u6fDgbWmPck- > [data-menu-slot="label"] {
3210
+ grid-column-start: 2;
3211
+ }
3212
+
3213
+ .-TSNrZBKZJI- {
3214
+ display: grid;
3215
+ grid-template-columns: subgrid;
3216
+ grid-column: 1 / -1;
3217
+ grid-column-start: 1;
3218
+ }
3219
+
3220
+ .bO7lGVQC42c- .-TSNrZBKZJI-:not(:first-child) {
3221
+ margin-top: 8px;
3222
+ margin-top: var(--space-small);
3223
+ }
3224
+
3225
+ /* When a section follows a separator, avoid doubling vertical spacing.
3226
+ Grid items don't collapse margins, so the section's top margin would add
3227
+ to the separator's bottom margin. Remove the section margin in this case. */
3228
+
3229
+ .bO7lGVQC42c- .i0QNcs4S-wk- + .-TSNrZBKZJI- {
3230
+ margin-top: 0;
3231
+ }
3232
+
3233
+ .zs7dS2pKjEw- {
3234
+ grid-column: 1 / -1;
3235
+ grid-column-start: 1;
3236
+ }
3237
+
3238
+ .MZJgunQcmdQ- {
3239
+ display: -ms-flexbox;
3240
+ display: flex;
3241
+ -ms-flex-align: center;
3242
+ align-items: center;
3243
+ padding: calc(var(--menu-space) * 1.5) var(--menu-space);
3244
+ }
3245
+
3246
+ ._-1GOlrzd098- {
3247
+ display: -ms-flexbox;
3248
+ display: flex;
3249
+ gap: var(--menu-space);
3250
+ -ms-flex-align: center;
3251
+ align-items: center;
3252
+ width: 100%;
3253
+ }
3254
+
3255
+ /* Legacy variant focus-visible styling */
3256
+
3257
+ ._-1GOlrzd098-:focus-visible {
3258
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 1), 0px 0px 0px 4px hsl(198, 12%, 57%);
3259
+ box-shadow: var(--shadow-focus);
3260
+ background-color: hsl(43, 18%, 92%);
3261
+ background-color: var(--color-surface--hover);
3262
+ }
3263
+
3264
+ .NYXV5w4pd0c- {
3265
+ box-sizing: border-box;
3266
+ padding: var(--menu-space);
3267
+ border: none;
3268
+ border-radius: 8px;
3269
+ border-radius: var(--radius-base);
3270
+ outline: transparent;
3271
+ text-align: left;
3272
+ background-color: transparent;
3273
+ cursor: pointer;
3274
+
3275
+ transition: background-color 200ms ease-out,
3276
+ box-shadow 200ms ease-out;
3277
+
3278
+ transition: background-color var(--timing-base) ease-out,
3279
+ box-shadow var(--timing-base) ease-out;
3280
+ }
3281
+
3282
+ .NYXV5w4pd0c-:hover {
3283
+ background-color: hsl(43, 18%, 92%);
3284
+ background-color: var(--color-surface--hover);
3285
+ }
3286
+
3287
+ /* Background on both legacy (:focus-visible) and RAC ([data-focused]) */
3288
+
3289
+ .NYXV5w4pd0c-[data-focused] {
3290
+ background-color: hsl(43, 18%, 92%);
3291
+ background-color: var(--color-surface--hover);
3292
+ }
3293
+
3294
+ /* Focus ring for legacy and RAC keyboard focus */
3295
+
3296
+ .NYXV5w4pd0c-[data-focus-visible] {
3297
+ box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 1), 0px 0px 0px 4px hsl(198, 12%, 57%);
3298
+ box-shadow: var(--shadow-focus);
3299
+ }
3300
+
3301
+ /* Do not show focus ring when item is hovered (pointer interaction) */
3302
+
3303
+ .NYXV5w4pd0c-[data-hovered][data-focus-visible] {
3304
+ box-shadow: none;
3305
+ }
3306
+
3307
+ .NYXV5w4pd0c- span {
3308
+ /* match appearance of Button labels */
3309
+ -webkit-font-smoothing: antialiased;
3310
+ }
3311
+
3312
+ .NYXV5w4pd0c-.baYK2zQ6-GA- > span {
3313
+ color: hsl(6, 64%, 51%);
3314
+ color: var(--color-destructive);
3315
+ }
3316
+
3317
+ .A7T14ALVEKg- {
3318
+ position: fixed;
3319
+ top: 0;
3320
+ right: 0;
3321
+ bottom: 0;
3322
+ left: 0;
3323
+ z-index: 1001;
3324
+ z-index: var(--elevation-modal);
3325
+ background-color: rgba(0, 0, 0, 0.32);
3326
+ background-color: var(--color-overlay);
3327
+ }
3328
+
3329
+ @media (min-width: 490px) {
3330
+
3331
+ .A7T14ALVEKg- {
3332
+ background-color: transparent;
3333
+ }
3334
+ }
3335
+
3336
+ @media (--small-screens-and-up) {
3337
+
3338
+ .A7T14ALVEKg- {
3339
+ background-color: transparent;
3340
+ }
3341
+ }
3342
+
3343
+ .Lgbn9IRPI5Y- {
3344
+ width: 100%;
3345
+ }
3346
+
3347
+ .o-ps580KdWI- {
3348
+ position: absolute;
3349
+ width: 1px;
3350
+ height: 1px;
3351
+ margin: -1px;
3352
+ overflow: hidden;
3353
+ clip: rect(0, 0, 0, 0);
3354
+ white-space: nowrap;
3355
+ }
3356
+
3357
+ .Vw9MFreevMU- {
3358
+ display: -ms-flexbox;
3359
+ display: flex;
3360
+ -ms-flex-align: center;
3361
+ align-items: center;
3362
+ gap: 8px;
3363
+ gap: var(--space-small);
3364
+ padding: 16px 16px 0;
3365
+ padding: var(--space-base) var(--space-base) 0;
3366
+ }
3367
+
3368
+ .wpNMcBuNwwY- {
3369
+ min-width: 0;
3370
+ }
3371
+
3073
3372
  .fpi0W91w2ag- * {
3074
3373
  box-sizing: border-box;
3075
3374
  }
@@ -3085,6 +3384,11 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
3085
3384
 
3086
3385
  .-DayvgvIcVo- {
3087
3386
  --menu-space: var(--space-small);
3387
+ --menu-item-gap: var(--space-small);
3388
+ --menu-item-min-height: calc(var(--base-unit) * 2.5);
3389
+ --menu-item-padding-y: var(--space-small);
3390
+ --menu-item-padding-x: var(--space-small);
3391
+ --menu-item-padding-right: var(--space-small);
3088
3392
  --menu-offset: var(--space-smallest);
3089
3393
  z-index: 1001;
3090
3394
  z-index: var(--elevation-modal);
@@ -3107,6 +3411,12 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
3107
3411
  @media (max-width: 489px) {
3108
3412
 
3109
3413
  .-DayvgvIcVo- {
3414
+ --menu-space: var(--space-base);
3415
+ --menu-item-gap: var(--space-small);
3416
+ --menu-item-min-height: calc(var(--base-unit) * 3);
3417
+ --menu-item-padding-y: var(--space-small);
3418
+ --menu-item-padding-x: var(--space-small);
3419
+ --menu-item-padding-right: var(--space-small);
3110
3420
  position: fixed;
3111
3421
  right: 0;
3112
3422
  bottom: 0;
@@ -3118,6 +3428,12 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
3118
3428
  @media (--small-screens-and-below) {
3119
3429
 
3120
3430
  .-DayvgvIcVo- {
3431
+ --menu-space: var(--space-base);
3432
+ --menu-item-gap: var(--space-small);
3433
+ --menu-item-min-height: calc(var(--base-unit) * 3);
3434
+ --menu-item-padding-y: var(--space-small);
3435
+ --menu-item-padding-x: var(--space-small);
3436
+ --menu-item-padding-right: var(--space-small);
3121
3437
  position: fixed;
3122
3438
  right: 0;
3123
3439
  bottom: 0;
@@ -3191,50 +3507,112 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
3191
3507
  grid-template-columns: auto 1fr auto;
3192
3508
  }
3193
3509
 
3510
+ .J3CW8IU48RM- {
3511
+ --menu-space: var(--space-base);
3512
+ --menu-item-gap: var(--space-small);
3513
+ --menu-item-min-height: calc(var(--base-unit) * 3);
3514
+ --menu-item-padding-y: var(--space-small);
3515
+ --menu-item-padding-x: var(--space-small);
3516
+ --menu-item-padding-right: var(--space-small);
3517
+ box-sizing: border-box;
3518
+ padding: 16px;
3519
+ padding: var(--menu-space);
3520
+ padding-bottom: 16px;
3521
+ padding-bottom: var(--menu-space);
3522
+ }
3523
+
3194
3524
  .bWR8m7-LKg4- {
3195
3525
  display: grid;
3196
3526
  grid-template-columns: subgrid;
3197
3527
  grid-column: 1 / -1;
3198
3528
  -ms-flex-align: center;
3199
3529
  align-items: center;
3200
- grid-gap: var(--menu-space);
3201
- gap: var(--menu-space);
3530
+ width: 100%;
3531
+ grid-gap: var(--menu-item-gap);
3532
+ gap: var(--menu-item-gap);
3202
3533
  }
3203
3534
 
3204
- .bWR8m7-LKg4- > [data-menu-slot="icon"] {
3535
+ .bWR8m7-LKg4- > [data-menu-slot="icon"],
3536
+ .bWR8m7-LKg4- > [data-menu-slot="prefix"] {
3537
+ display: -ms-inline-flexbox;
3538
+ display: inline-flex;
3539
+ -ms-flex-align: center;
3540
+ align-items: center;
3541
+ justify-self: start;
3205
3542
  grid-column-start: 1;
3206
3543
  grid-row-start: 1;
3207
3544
  }
3208
3545
 
3209
3546
  .bWR8m7-LKg4- > [data-menu-slot="label"] {
3210
3547
  grid-column-start: 2;
3548
+ width: 100%;
3549
+ min-width: 0;
3550
+ justify-self: start;
3211
3551
  }
3212
3552
 
3213
- .PH5vvtLgvXI- {
3553
+ .fzLvI88EH3s- > [data-menu-slot="label"] {
3554
+ grid-column: 1 / 3;
3555
+ }
3556
+
3557
+ .bWR8m7-LKg4- > [data-menu-slot="suffix"] {
3558
+ display: -ms-inline-flexbox;
3559
+ display: inline-flex;
3560
+ -ms-flex-align: center;
3561
+ align-items: center;
3562
+ -ms-flex-pack: center;
3563
+ justify-content: center;
3564
+ grid-column-start: 3;
3565
+ grid-row-start: 1;
3566
+ justify-self: end;
3567
+ min-width: calc(16px * 1.5);
3568
+ min-width: calc(var(--base-unit) * 1.5);
3569
+ }
3570
+
3571
+ .bWR8m7-LKg4- > [data-menu-slot="suffix"][data-unchecked] {
3572
+ visibility: hidden;
3573
+ }
3574
+
3575
+ .PH5vvtLgvXI-,
3576
+ .Q0ssxff-Qo4- {
3214
3577
  display: grid;
3215
3578
  grid-template-columns: subgrid;
3216
3579
  grid-column: 1 / -1;
3217
3580
  grid-column-start: 1;
3218
3581
  }
3219
3582
 
3220
- .QInUBKqkrl0- .PH5vvtLgvXI-:not(:first-child) {
3583
+ ._2hYsKO-OHAI- {
3584
+ display: grid;
3585
+ grid-template-columns: subgrid;
3586
+ grid-column: 1 / -1;
3587
+ grid-column-start: 1;
3588
+ }
3589
+
3590
+ .QInUBKqkrl0- .PH5vvtLgvXI-:not(:first-child),
3591
+ .QInUBKqkrl0- .Q0ssxff-Qo4-:not(:first-child) {
3221
3592
  margin-top: 8px;
3222
3593
  margin-top: var(--space-small);
3223
3594
  }
3224
3595
 
3225
- /* When a section follows a separator, avoid doubling vertical spacing.
3226
- Grid items don't collapse margins, so the section's top margin would add
3227
- to the separator's bottom margin. Remove the section margin in this case. */
3228
-
3229
- .QInUBKqkrl0- .jnggqK3YTIU- + .PH5vvtLgvXI- {
3596
+ .QInUBKqkrl0- .jnggqK3YTIU- + .PH5vvtLgvXI-,
3597
+ .QInUBKqkrl0- .jnggqK3YTIU- + .Q0ssxff-Qo4- {
3230
3598
  margin-top: 0;
3231
3599
  }
3232
3600
 
3233
- .iJjIifpa9bk- {
3601
+ .iJjIifpa9bk-,
3602
+ .BklkzNPbJ5Q- {
3234
3603
  grid-column: 1 / -1;
3235
3604
  grid-column-start: 1;
3236
3605
  }
3237
3606
 
3607
+ ._5-p9DbyRav4- {
3608
+ display: -ms-flexbox;
3609
+ display: flex;
3610
+ -ms-flex-align: center;
3611
+ align-items: center;
3612
+ padding: 8px 8px 4px;
3613
+ padding: var(--space-small) var(--space-small) var(--space-smaller);
3614
+ }
3615
+
3238
3616
  .Bq7pLWj3jm4- {
3239
3617
  display: -ms-flexbox;
3240
3618
  display: flex;
@@ -3252,8 +3630,6 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
3252
3630
  width: 100%;
3253
3631
  }
3254
3632
 
3255
- /* Legacy variant focus-visible styling */
3256
-
3257
3633
  .P4Sdaq0-lZs-:focus-visible {
3258
3634
  box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 1), 0px 0px 0px 4px hsl(198, 12%, 57%);
3259
3635
  box-shadow: var(--shadow-focus);
@@ -3262,23 +3638,42 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
3262
3638
  }
3263
3639
 
3264
3640
  .M1BgN-oCmKw- {
3641
+ width: 100%;
3642
+ min-height: var(--menu-item-min-height);
3265
3643
  box-sizing: border-box;
3266
- padding: var(--menu-space);
3644
+ padding-top: var(--menu-item-padding-y);
3645
+ padding-bottom: var(--menu-item-padding-y);
3646
+ padding-left: var(--menu-item-padding-x);
3647
+ padding-right: var(--menu-item-padding-right);
3267
3648
  border: none;
3268
- border-radius: 8px;
3269
- border-radius: var(--radius-base);
3649
+ border-radius: 4px;
3650
+ border-radius: var(--radius-small);
3270
3651
  outline: transparent;
3652
+ color: inherit;
3271
3653
  text-align: left;
3654
+ -webkit-text-decoration: none;
3655
+ text-decoration: none;
3656
+ -webkit-user-select: none;
3657
+ -ms-user-select: none;
3658
+ user-select: none;
3272
3659
  background-color: transparent;
3273
3660
  cursor: pointer;
3274
3661
 
3275
- transition:
3276
- background-color 200ms ease-out,
3662
+ transition: background-color 200ms ease-out,
3277
3663
  box-shadow 200ms ease-out;
3278
3664
 
3279
- transition:
3280
- background-color var(--timing-base) ease-out,
3665
+ transition: background-color var(--timing-base) ease-out,
3281
3666
  box-shadow var(--timing-base) ease-out;
3667
+ -webkit-touch-callout: none;
3668
+ -webkit-tap-highlight-color: transparent;
3669
+ }
3670
+
3671
+ .fzLvI88EH3s- {
3672
+ --menu-item-padding-right: var(--space-smaller);
3673
+ }
3674
+
3675
+ .M1BgN-oCmKw-:visited {
3676
+ color: inherit;
3282
3677
  }
3283
3678
 
3284
3679
  .M1BgN-oCmKw-:hover {
@@ -3286,28 +3681,27 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
3286
3681
  background-color: var(--color-surface--hover);
3287
3682
  }
3288
3683
 
3289
- /* Background on both legacy (:focus-visible) and RAC ([data-focused]) */
3684
+ .M1BgN-oCmKw-.U9ihZZavz9w-:hover {
3685
+ background-color: hsl(7, 63%, 95%);
3686
+ background-color: var(--color-critical--surface);
3687
+ }
3290
3688
 
3291
- .M1BgN-oCmKw-[data-focused] {
3689
+ .M1BgN-oCmKw-[data-highlighted] {
3292
3690
  background-color: hsl(43, 18%, 92%);
3293
3691
  background-color: var(--color-surface--hover);
3294
3692
  }
3295
3693
 
3296
- /* Focus ring for legacy and RAC keyboard focus */
3694
+ .M1BgN-oCmKw-.U9ihZZavz9w-[data-highlighted] {
3695
+ background-color: hsl(7, 63%, 95%);
3696
+ background-color: var(--color-critical--surface);
3697
+ }
3297
3698
 
3298
- .M1BgN-oCmKw-[data-focus-visible] {
3699
+ .M1BgN-oCmKw-:focus-visible {
3299
3700
  box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 1), 0px 0px 0px 4px hsl(198, 12%, 57%);
3300
3701
  box-shadow: var(--shadow-focus);
3301
3702
  }
3302
3703
 
3303
- /* Do not show focus ring when item is hovered (pointer interaction) */
3304
-
3305
- .M1BgN-oCmKw-[data-hovered][data-focus-visible] {
3306
- box-shadow: none;
3307
- }
3308
-
3309
3704
  .M1BgN-oCmKw- span {
3310
- /* match appearance of Button labels */
3311
3705
  -webkit-font-smoothing: antialiased;
3312
3706
  }
3313
3707
 
@@ -3342,6 +3736,24 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
3342
3736
  }
3343
3737
  }
3344
3738
 
3739
+ .nf47GCAYI-c- {
3740
+ padding: 0;
3741
+ }
3742
+
3743
+ .cuw8ct7rX6s- {
3744
+ visibility: hidden;
3745
+ pointer-events: none;
3746
+ }
3747
+
3748
+ .a6uZEXgX8sg- {
3749
+ display: grid;
3750
+ grid-template-columns: auto 1fr auto;
3751
+ padding: 0 16px
3752
+ calc(env(safe-area-inset-bottom) + 16px);
3753
+ padding: 0 var(--space-base)
3754
+ calc(env(safe-area-inset-bottom) + var(--space-base));
3755
+ }
3756
+
3345
3757
  ._5OJ7B6mFcwk- {
3346
3758
  width: 100%;
3347
3759
  }
@@ -3356,6 +3768,103 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
3356
3768
  white-space: nowrap;
3357
3769
  }
3358
3770
 
3771
+ .P9RktRZz8u4- {
3772
+ margin: 8px 0;
3773
+ margin: var(--space-small) 0;
3774
+ border-bottom: 1px solid hsl(200, 13%, 87%);
3775
+ border-bottom: var(--border-base) solid var(--color-border);
3776
+ grid-column: 1 / -1;
3777
+ }
3778
+
3779
+ .Qf3IFhKJwQ0- {
3780
+ position: fixed;
3781
+ top: 0;
3782
+ right: 0;
3783
+ bottom: 0;
3784
+ left: 0;
3785
+ z-index: 1001;
3786
+ z-index: var(--elevation-modal);
3787
+ background-color: rgba(0, 0, 0, 0.32);
3788
+ background-color: var(--color-overlay);
3789
+ }
3790
+
3791
+ ._868PDAA3U2M- {
3792
+ display: -ms-flexbox;
3793
+ display: flex;
3794
+ position: fixed;
3795
+ right: 0;
3796
+ bottom: 0;
3797
+ left: 0;
3798
+ z-index: 1001;
3799
+ z-index: var(--elevation-modal);
3800
+ max-height: 70vh;
3801
+ box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.1), 0px 4px 12px 0px rgba(0, 0, 0, 0.05);
3802
+ box-shadow: var(--shadow-base);
3803
+ border-radius: 16px 16px 0 0;
3804
+ border-radius: var(--radius-large) var(--radius-large) 0 0;
3805
+ outline: none;
3806
+ overflow: hidden;
3807
+ background-color: rgba(255, 255, 255, 1);
3808
+ background-color: var(--color-surface);
3809
+ -ms-flex-direction: column;
3810
+ flex-direction: column;
3811
+ }
3812
+
3813
+ .eKuxReHyju8- {
3814
+ display: -ms-flexbox;
3815
+ display: flex;
3816
+ position: relative;
3817
+ min-height: 0;
3818
+ box-sizing: border-box;
3819
+ overflow: hidden;
3820
+ -ms-flex-direction: column;
3821
+ flex-direction: column;
3822
+ -ms-flex: 1 1 auto;
3823
+ flex: 1 1 auto;
3824
+ }
3825
+
3826
+ ._1I0eaFciaWo- {
3827
+ -ms-flex: 1 1 auto;
3828
+ flex: 1 1 auto;
3829
+ min-height: 0;
3830
+ padding-bottom: env(safe-area-inset-bottom);
3831
+ overflow-y: auto;
3832
+ -webkit-overflow-scrolling: touch;
3833
+ }
3834
+
3835
+ .BYEzqcZUGls- {
3836
+ position: absolute;
3837
+ right: 0;
3838
+ bottom: 0;
3839
+ left: 0;
3840
+ height: calc(40px + env(safe-area-inset-bottom));
3841
+ background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 1));
3842
+ background: linear-gradient(to bottom, transparent, var(--color-surface));
3843
+ pointer-events: none;
3844
+ }
3845
+
3846
+ .yL7--3ni8BM- {
3847
+ display: -ms-flexbox;
3848
+ display: flex;
3849
+ -ms-flex-align: start;
3850
+ align-items: flex-start;
3851
+ }
3852
+
3853
+ .T8y6sv17efg- {
3854
+ gap: 0;
3855
+ }
3856
+
3857
+ .VOiBogstpjU- {
3858
+ gap: 4px;
3859
+ gap: var(--space-smaller);
3860
+ }
3861
+
3862
+ .bvlhcaSPuO8- {
3863
+ -ms-flex-negative: 0;
3864
+ flex-shrink: 0;
3865
+ line-height: 0;
3866
+ }
3867
+
3359
3868
  .kub1yKbFFN0- {
3360
3869
  display: -ms-flexbox;
3361
3870
  display: flex;