@jobber/components 6.111.5 → 6.111.7
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/styles.css +57 -12
- package/package.json +2 -2
package/dist/styles.css
CHANGED
|
@@ -733,6 +733,8 @@
|
|
|
733
733
|
display: -ms-flexbox;
|
|
734
734
|
display: flex;
|
|
735
735
|
height: var(--field--height);
|
|
736
|
+
-ms-flex-align: center;
|
|
737
|
+
align-items: center;
|
|
736
738
|
-ms-flex: 1;
|
|
737
739
|
flex: 1;
|
|
738
740
|
}
|
|
@@ -1533,8 +1535,6 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
1533
1535
|
justify-content: center;
|
|
1534
1536
|
-ms-flex-align: center;
|
|
1535
1537
|
align-items: center;
|
|
1536
|
-
-webkit-transform: translateY(50%);
|
|
1537
|
-
transform: translateY(50%);
|
|
1538
1538
|
}
|
|
1539
1539
|
|
|
1540
1540
|
.YmRTd-KeXv4-:focus {
|
|
@@ -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:
|
|
10330
|
-
align-items:
|
|
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
|
|
10336
|
+
border: var(--border-base) solid var(--color-border);
|
|
10337
10337
|
border-radius: 8px;
|
|
10338
10338
|
border-radius: var(--radius-base);
|
|
10339
|
-
background-color:
|
|
10340
|
-
background-color: var(--color-
|
|
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:
|
|
10387
|
-
transition: var(--timing-
|
|
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.
|
|
3
|
+
"version": "6.111.7",
|
|
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": "
|
|
541
|
+
"gitHead": "cca677d99a6152517fe9f4c265af04a219113966"
|
|
542
542
|
}
|