@jobber/components 6.111.5 → 6.111.6

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 (2) hide show
  1. package/dist/styles.css +55 -10
  2. package/package.json +2 -2
package/dist/styles.css CHANGED
@@ -10326,18 +10326,18 @@ input.oOrjwubmsVA- {
10326
10326
 
10327
10327
  display: grid;
10328
10328
  grid-template-columns: repeat(var(--segmentedControl--option-count), 1fr);
10329
- -ms-flex-align: center;
10330
- align-items: center;
10329
+ -ms-flex-align: stretch;
10330
+ align-items: stretch;
10331
10331
  position: relative;
10332
10332
  min-height: 40px;
10333
10333
  min-height: var(--segmentedControl--size);
10334
10334
  box-sizing: border-box;
10335
10335
  border: 1px solid hsl(200, 13%, 87%);
10336
- border: var(--border-base) solid var(--color-border--interactive);
10336
+ border: var(--border-base) solid var(--color-border);
10337
10337
  border-radius: 8px;
10338
10338
  border-radius: var(--radius-base);
10339
- background-color: hsl(51, 17%, 85%);
10340
- background-color: var(--color-interactive--background);
10339
+ background-color: rgba(255, 255, 255, 1);
10340
+ background-color: var(--color-surface);
10341
10341
  }
10342
10342
 
10343
10343
  .V41prM1xcKI- {
@@ -10360,7 +10360,11 @@ input.oOrjwubmsVA- {
10360
10360
  z-index: 1;
10361
10361
  padding: 0 12px;
10362
10362
  padding: 0 var(--space-slim);
10363
+ border-radius: 8px;
10364
+ border-radius: var(--radius-base);
10363
10365
  overflow: hidden;
10366
+ color: hsl(197, 15%, 43%);
10367
+ color: var(--color-text--secondary);
10364
10368
  font-size: 14px;
10365
10369
  font-size: var(--typography--fontSize-base);
10366
10370
  font-weight: 600;
@@ -10370,6 +10374,26 @@ input.oOrjwubmsVA- {
10370
10374
  align-items: center;
10371
10375
  -ms-flex-pack: center;
10372
10376
  justify-content: center;
10377
+ transition:
10378
+ background-color 300ms ease-out,
10379
+ color 300ms ease-out;
10380
+ transition:
10381
+ background-color var(--timing-slow) ease-out,
10382
+ color var(--timing-slow) ease-out;
10383
+ }
10384
+
10385
+ .FDDKTZkTdfM- input[type="radio"]:checked + label {
10386
+ color: hsl(107, 58%, 33%);
10387
+ color: var(--color-interactive);
10388
+ }
10389
+
10390
+ /* Hover only on unselected options; selected already has a green border. */
10391
+
10392
+ .FDDKTZkTdfM- input[type="radio"]:not(:checked) + label:hover {
10393
+ color: hsl(107, 65%, 24%);
10394
+ color: var(--color-interactive--hover);
10395
+ background-color: hsl(109, 28%, 92%);
10396
+ background-color: var(--color-interactive--background--subtle--hover);
10373
10397
  }
10374
10398
 
10375
10399
  .FDDKTZkTdfM- span {
@@ -10377,17 +10401,38 @@ input.oOrjwubmsVA- {
10377
10401
  left: 0;
10378
10402
  width: calc(100% / var(--segmentedControl--option-count));
10379
10403
  height: 100%;
10404
+ box-sizing: border-box;
10405
+ border: 1px solid hsl(107, 58%, 33%);
10406
+ border: var(--border-base) solid var(--color-interactive);
10380
10407
  border-radius: 8px;
10381
10408
  border-radius: var(--radius-base);
10382
- outline: 1px solid hsl(200, 13%, 87%);
10383
- outline: var(--border-base) solid var(--color-border--interactive);
10384
10409
  background-color: rgba(255, 255, 255, 1);
10385
10410
  background-color: var(--color-surface);
10386
- transition: 200ms left ease;
10387
- transition: var(--timing-base) left ease;
10411
+ transition: 300ms left ease-out;
10412
+ transition: var(--timing-slow) left ease-out;
10413
+ }
10414
+
10415
+ /* Focus ring at z-index: 2 so hover backgrounds (z-index: 1) can't cover it.
10416
+ Negative inset aligns with the span's outer edge so the green border stays
10417
+ visible inside the focus ring. */
10418
+
10419
+ .FDDKTZkTdfM- span::after {
10420
+ content: "";
10421
+ position: absolute;
10422
+ top: calc(-1 * 1px);
10423
+ right: calc(-1 * 1px);
10424
+ bottom: calc(-1 * 1px);
10425
+ left: calc(-1 * 1px);
10426
+ top: calc(-1 * var(--border-base));
10427
+ right: calc(-1 * var(--border-base));
10428
+ bottom: calc(-1 * var(--border-base));
10429
+ left: calc(-1 * var(--border-base));
10430
+ z-index: 2;
10431
+ border-radius: inherit;
10432
+ pointer-events: none;
10388
10433
  }
10389
10434
 
10390
- .FDDKTZkTdfM- input[type="radio"]:focus-visible ~ span {
10435
+ .FDDKTZkTdfM- input[type="radio"]:focus-visible ~ span::after {
10391
10436
  box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 1), 0px 0px 0px 4px hsl(198, 12%, 57%);
10392
10437
  box-shadow: var(--shadow-focus);
10393
10438
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jobber/components",
3
- "version": "6.111.5",
3
+ "version": "6.111.6",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -538,5 +538,5 @@
538
538
  "> 1%",
539
539
  "IE 10"
540
540
  ],
541
- "gitHead": "74ad056f656ebfec2d55cc1f52703abbd8aaaecc"
541
+ "gitHead": "5e13c04744e67afffde1230699b158b1d3c44fbe"
542
542
  }