@jobber/components 6.15.0 → 6.17.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/AtlantisThemeContext/index.cjs +5 -4
- package/dist/AtlantisThemeContext/index.mjs +2 -1
- package/dist/AtlantisThemeContext-cjs.js +396 -0
- package/dist/AtlantisThemeContext-es.js +391 -0
- package/dist/Autocomplete/index.cjs +1 -0
- package/dist/Autocomplete/index.mjs +1 -0
- package/dist/Autocomplete-cjs.js +2 -32
- package/dist/Autocomplete-es.js +2 -32
- package/dist/Banner-cjs.js +3 -3
- package/dist/Banner-es.js +3 -3
- package/dist/BannerIcon-cjs.js +1 -1
- package/dist/BannerIcon-es.js +1 -1
- package/dist/Combobox-es.js +1 -1
- package/dist/DataListSearch-es.js +1 -1
- package/dist/Gallery/index.cjs +15 -6
- package/dist/Gallery/index.mjs +15 -6
- package/dist/InputTime-es.js +1 -1
- package/dist/InternalChipDismissible-es.js +1 -1
- package/dist/LightBox/index.cjs +15 -4
- package/dist/LightBox/index.mjs +15 -4
- package/dist/LightBox-cjs.js +104 -21
- package/dist/LightBox-es.js +104 -21
- package/dist/debounce-es.js +1 -1
- package/dist/index.cjs +6 -4
- package/dist/index.mjs +3 -1
- package/dist/styles.css +175 -54
- package/dist/throttle-es.js +1 -1
- package/dist/updateTheme-cjs.js +2 -394
- package/dist/updateTheme-es.js +2 -390
- package/dist/useDebounce-cjs.js +36 -0
- package/dist/useDebounce-es.js +34 -0
- package/dist/useScrollToActive-es.js +1 -1
- package/package.json +2 -2
package/dist/styles.css
CHANGED
|
@@ -1656,35 +1656,58 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
1656
1656
|
}
|
|
1657
1657
|
|
|
1658
1658
|
.ucGelS5nNm0- {
|
|
1659
|
+
--banner-surface: var(--color-surface);
|
|
1660
|
+
--banner-textColor: var(--color-text);
|
|
1659
1661
|
display: -ms-flexbox;
|
|
1660
1662
|
display: flex;
|
|
1661
1663
|
position: relative;
|
|
1662
|
-
box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.1), 0px 4px 12px 0px rgba(0, 0, 0, 0.05);
|
|
1663
|
-
box-shadow: var(--shadow-base);
|
|
1664
1664
|
padding: calc(16px - 4px) 16px;
|
|
1665
1665
|
padding: calc(var(--space-base) - var(--space-smaller)) var(--space-base);
|
|
1666
|
-
border: 1px solid hsl(200, 13%, 87%);
|
|
1667
|
-
border: var(--border-base) solid var(--color-border);
|
|
1668
1666
|
border-radius: 8px;
|
|
1669
1667
|
border-radius: var(--radius-base);
|
|
1670
1668
|
color: hsl(198, 35%, 21%);
|
|
1671
|
-
color: var(--
|
|
1669
|
+
color: var(--banner-textColor);
|
|
1672
1670
|
background-color: rgba(255, 255, 255, 1);
|
|
1673
|
-
background-color: var(--
|
|
1671
|
+
background-color: var(--banner-surface);
|
|
1674
1672
|
gap: 8px;
|
|
1675
1673
|
gap: var(--space-small);
|
|
1676
1674
|
-ms-flex-align: center;
|
|
1677
1675
|
align-items: center;
|
|
1678
1676
|
}
|
|
1679
1677
|
|
|
1678
|
+
._5VzH3Cz9ps8- {
|
|
1679
|
+
--banner-surface: var(--color-informative--surface);
|
|
1680
|
+
--banner-textColor: var(--color-informative--onSurface);
|
|
1681
|
+
}
|
|
1682
|
+
|
|
1683
|
+
._16jyB9OYJIs- {
|
|
1684
|
+
--banner-surface: var(--color-critical--surface);
|
|
1685
|
+
--banner-textColor: var(--color-critical--onSurface);
|
|
1686
|
+
}
|
|
1687
|
+
|
|
1688
|
+
._4h-6cc8lZo8- {
|
|
1689
|
+
--banner-surface: var(--color-warning--surface);
|
|
1690
|
+
--banner-textColor: var(--color-warning--onSurface);
|
|
1691
|
+
}
|
|
1692
|
+
|
|
1693
|
+
.k7T2IV0R8Q0- {
|
|
1694
|
+
--banner-surface: var(--color-success--surface);
|
|
1695
|
+
--banner-textColor: var(--color-success--onSurface);
|
|
1696
|
+
}
|
|
1697
|
+
|
|
1698
|
+
.dG2vHE6g8f0- > a,
|
|
1699
|
+
.dG2vHE6g8f0- > p {
|
|
1700
|
+
color: inherit;
|
|
1701
|
+
}
|
|
1702
|
+
|
|
1680
1703
|
.dG2vHE6g8f0- > a {
|
|
1681
|
-
|
|
1682
|
-
|
|
1704
|
+
-webkit-text-decoration: underline;
|
|
1705
|
+
text-decoration: underline;
|
|
1683
1706
|
}
|
|
1684
1707
|
|
|
1685
1708
|
.dG2vHE6g8f0- > a:hover {
|
|
1686
1709
|
color: hsl(197, 90%, 12%);
|
|
1687
|
-
color: var(--color-
|
|
1710
|
+
color: var(--color-heading);
|
|
1688
1711
|
}
|
|
1689
1712
|
|
|
1690
1713
|
.j9IeihCCYxI- {
|
|
@@ -1745,8 +1768,8 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
1745
1768
|
|
|
1746
1769
|
.W0pSTO-oRmk- {
|
|
1747
1770
|
width: 100%;
|
|
1748
|
-
|
|
1749
|
-
|
|
1771
|
+
padding-left: 32px;
|
|
1772
|
+
padding-left: var(--space-larger);
|
|
1750
1773
|
}
|
|
1751
1774
|
}
|
|
1752
1775
|
|
|
@@ -1754,8 +1777,8 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
1754
1777
|
|
|
1755
1778
|
.W0pSTO-oRmk- {
|
|
1756
1779
|
width: 100%;
|
|
1757
|
-
|
|
1758
|
-
|
|
1780
|
+
padding-left: 32px;
|
|
1781
|
+
padding-left: var(--space-larger);
|
|
1759
1782
|
}
|
|
1760
1783
|
}
|
|
1761
1784
|
|
|
@@ -1764,6 +1787,7 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
1764
1787
|
margin: calc(var(--space-smallest) * -1) 0;
|
|
1765
1788
|
-ms-flex-item-align: start;
|
|
1766
1789
|
align-self: flex-start;
|
|
1790
|
+
mix-blend-mode: multiply;
|
|
1767
1791
|
}
|
|
1768
1792
|
|
|
1769
1793
|
@media (max-width: 489px) {
|
|
@@ -1782,6 +1806,10 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
1782
1806
|
}
|
|
1783
1807
|
}
|
|
1784
1808
|
|
|
1809
|
+
[data-theme="dark"] .-IYYDBmq2Q0- {
|
|
1810
|
+
mix-blend-mode: screen;
|
|
1811
|
+
}
|
|
1812
|
+
|
|
1785
1813
|
.BQhacg0OlMs- {
|
|
1786
1814
|
display: -ms-inline-flexbox;
|
|
1787
1815
|
display: inline-flex;
|
|
@@ -7230,10 +7258,21 @@ html.atlantisLightBoxActive {
|
|
|
7230
7258
|
}
|
|
7231
7259
|
}
|
|
7232
7260
|
}
|
|
7261
|
+
.i9Tw1T65W-k- {
|
|
7262
|
+
position: absolute;
|
|
7263
|
+
top: 0;
|
|
7264
|
+
right: 0;
|
|
7265
|
+
bottom: 0;
|
|
7266
|
+
left: 0;
|
|
7267
|
+
background-position: center center;
|
|
7268
|
+
background-repeat: no-repeat;
|
|
7269
|
+
background-size: cover;
|
|
7270
|
+
opacity: 0.6;
|
|
7271
|
+
-webkit-filter: saturate(67%);
|
|
7272
|
+
filter: saturate(67%);
|
|
7273
|
+
}
|
|
7233
7274
|
.Q8amcRaTGf0-,
|
|
7234
7275
|
.W9FVb24yJrk- {
|
|
7235
|
-
display: -ms-flexbox;
|
|
7236
|
-
display: flex;
|
|
7237
7276
|
position: absolute;
|
|
7238
7277
|
top: 50%;
|
|
7239
7278
|
z-index: 1;
|
|
@@ -7242,75 +7281,157 @@ html.atlantisLightBoxActive {
|
|
|
7242
7281
|
transform: translateY(-50%);
|
|
7243
7282
|
}
|
|
7244
7283
|
.Q8amcRaTGf0- {
|
|
7245
|
-
right:
|
|
7246
|
-
right: var(--space-
|
|
7284
|
+
right: 24px;
|
|
7285
|
+
right: var(--space-large);
|
|
7286
|
+
}
|
|
7287
|
+
@media (min-width: 768px) {
|
|
7288
|
+
.Q8amcRaTGf0- {
|
|
7289
|
+
right: 32px;
|
|
7290
|
+
right: var(--space-larger);
|
|
7291
|
+
}
|
|
7292
|
+
}
|
|
7293
|
+
@media (--medium-screens-and-up) {
|
|
7294
|
+
.Q8amcRaTGf0- {
|
|
7295
|
+
right: 32px;
|
|
7296
|
+
right: var(--space-larger);
|
|
7247
7297
|
}
|
|
7298
|
+
}
|
|
7248
7299
|
.W9FVb24yJrk- {
|
|
7249
|
-
left:
|
|
7250
|
-
left: var(--space-
|
|
7300
|
+
left: 24px;
|
|
7301
|
+
left: var(--space-large);
|
|
7302
|
+
}
|
|
7303
|
+
@media (min-width: 768px) {
|
|
7304
|
+
.W9FVb24yJrk- {
|
|
7305
|
+
left: 32px;
|
|
7306
|
+
left: var(--space-larger);
|
|
7307
|
+
}
|
|
7308
|
+
}
|
|
7309
|
+
@media (--medium-screens-and-up) {
|
|
7310
|
+
.W9FVb24yJrk- {
|
|
7311
|
+
left: 32px;
|
|
7312
|
+
left: var(--space-larger);
|
|
7313
|
+
}
|
|
7314
|
+
}
|
|
7315
|
+
.nsN0TPWsBXI- {
|
|
7316
|
+
opacity: 0;
|
|
7317
|
+
transition: opacity 200ms ease-in;
|
|
7318
|
+
transition: opacity var(--timing-base) ease-in;
|
|
7319
|
+
}
|
|
7320
|
+
.nsN0TPWsBXI-:hover,
|
|
7321
|
+
.nsN0TPWsBXI-:focus-within {
|
|
7322
|
+
opacity: 1;
|
|
7323
|
+
}
|
|
7324
|
+
.dkLYp7AD2jE- {
|
|
7325
|
+
opacity: 1;
|
|
7326
|
+
transition: opacity 200ms ease-in;
|
|
7327
|
+
transition: opacity var(--timing-base) ease-in;
|
|
7251
7328
|
}
|
|
7252
7329
|
._5p2iAj4JfoE- {
|
|
7253
7330
|
display: -ms-flexbox;
|
|
7254
7331
|
display: flex;
|
|
7255
7332
|
position: fixed;
|
|
7256
7333
|
top: 0;
|
|
7334
|
+
right: 0;
|
|
7335
|
+
bottom: 0;
|
|
7257
7336
|
left: 0;
|
|
7258
7337
|
z-index: 1001;
|
|
7259
7338
|
z-index: var(--elevation-modal);
|
|
7260
|
-
width: 100%;
|
|
7261
|
-
height: 100%;
|
|
7262
|
-
|
|
7263
|
-
|
|
7339
|
+
max-width: 100%;
|
|
7340
|
+
max-height: 100%;
|
|
7341
|
+
padding: 16px;
|
|
7342
|
+
padding: var(--space-base);
|
|
7343
|
+
background-color: hsl(0, 0%, 72%);
|
|
7344
|
+
background-color: var(--color-base-grey--400);
|
|
7345
|
+
-ms-flex-pack: center;
|
|
7346
|
+
justify-content: center;
|
|
7264
7347
|
-ms-flex-direction: column;
|
|
7265
7348
|
flex-direction: column;
|
|
7266
7349
|
}
|
|
7350
|
+
@media (min-width: 768px) {
|
|
7351
|
+
._5p2iAj4JfoE- {
|
|
7352
|
+
padding: 16px 32px;
|
|
7353
|
+
padding: var(--space-base) var(--space-larger);
|
|
7354
|
+
}
|
|
7355
|
+
}
|
|
7356
|
+
@media (--medium-screens-and-up) {
|
|
7357
|
+
._5p2iAj4JfoE- {
|
|
7358
|
+
padding: 16px 32px;
|
|
7359
|
+
padding: var(--space-base) var(--space-larger);
|
|
7360
|
+
}
|
|
7361
|
+
}
|
|
7267
7362
|
.rMK4cKdOxFw- {
|
|
7268
|
-
display:
|
|
7269
|
-
display: flex;
|
|
7363
|
+
display: grid;
|
|
7270
7364
|
z-index: 1;
|
|
7271
7365
|
z-index: var(--elevation-base);
|
|
7272
|
-
|
|
7273
|
-
|
|
7274
|
-
color: hsl(197, 15%, 45%);
|
|
7275
|
-
color: var(--color-text--secondary);
|
|
7366
|
+
margin-bottom: 48px;
|
|
7367
|
+
margin-bottom: var(--space-largest);
|
|
7276
7368
|
font-size: 16px;
|
|
7277
7369
|
font-size: var(--typography--fontSize-large);
|
|
7278
|
-
background-color: hsl(53, 21%, 93%);
|
|
7279
|
-
background-color: var(--color-surface--background);
|
|
7280
|
-
-ms-flex-pack: justify;
|
|
7281
|
-
justify-content: space-between;
|
|
7282
|
-
}
|
|
7283
|
-
.tZU2g-NYdIs- {
|
|
7284
|
-
display: -ms-inline-flexbox;
|
|
7285
|
-
display: inline-flex;
|
|
7286
7370
|
-ms-flex-align: center;
|
|
7287
7371
|
align-items: center;
|
|
7372
|
+
grid-template-columns: 1fr 1fr 1fr;
|
|
7373
|
+
}
|
|
7374
|
+
._0m6vb11DgiA- {
|
|
7375
|
+
grid-column: 3;
|
|
7376
|
+
justify-self: end;
|
|
7377
|
+
}
|
|
7378
|
+
.kCc68gGuTgg- {
|
|
7379
|
+
grid-column: 2;
|
|
7380
|
+
justify-self: center;
|
|
7288
7381
|
}
|
|
7289
|
-
.
|
|
7382
|
+
.yYFVVScosfQ- {
|
|
7383
|
+
position: absolute;
|
|
7384
|
+
width: 100%;
|
|
7385
|
+
height: 100%;
|
|
7386
|
+
-o-object-fit: contain;
|
|
7387
|
+
object-fit: contain;
|
|
7388
|
+
}
|
|
7389
|
+
.UskuwLHR6fg- {
|
|
7390
|
+
position: relative;
|
|
7391
|
+
height: 100%;
|
|
7392
|
+
max-width: 100%;
|
|
7393
|
+
margin-bottom: 24px;
|
|
7394
|
+
margin-bottom: var(--space-large);
|
|
7395
|
+
}
|
|
7396
|
+
@media (min-width: 768px) {
|
|
7397
|
+
.UskuwLHR6fg- {
|
|
7398
|
+
margin: 0 calc(48px + 16px) 24px;
|
|
7399
|
+
margin: 0 calc(var(--space-largest) + var(--space-base)) var(--space-large);
|
|
7400
|
+
}
|
|
7401
|
+
}
|
|
7402
|
+
@media (--medium-screens-and-up) {
|
|
7403
|
+
.UskuwLHR6fg- {
|
|
7404
|
+
margin: 0 calc(48px + 16px) 24px;
|
|
7405
|
+
margin: 0 calc(var(--space-largest) + var(--space-base)) var(--space-large);
|
|
7406
|
+
}
|
|
7407
|
+
}
|
|
7408
|
+
.OGjhge-r-U4- {
|
|
7290
7409
|
display: -ms-flexbox;
|
|
7291
7410
|
display: flex;
|
|
7292
|
-
-
|
|
7293
|
-
|
|
7294
|
-
|
|
7295
|
-
-
|
|
7296
|
-
|
|
7297
|
-
|
|
7411
|
+
z-index: 1;
|
|
7412
|
+
z-index: var(--elevation-base);
|
|
7413
|
+
max-width: 600px;
|
|
7414
|
+
max-height: 90px;
|
|
7415
|
+
margin: 0 auto 32px;
|
|
7416
|
+
margin: 0 auto var(--space-larger);
|
|
7417
|
+
overflow-y: auto;
|
|
7418
|
+
text-align: center;
|
|
7419
|
+
-ms-flex-direction: column;
|
|
7420
|
+
flex-direction: column;
|
|
7421
|
+
-ms-flex-negative: 0;
|
|
7422
|
+
flex-shrink: 0;
|
|
7423
|
+
gap: 8px;
|
|
7424
|
+
gap: var(--space-small);
|
|
7298
7425
|
}
|
|
7299
|
-
.
|
|
7426
|
+
.GKIdLTmvcvQ- {
|
|
7300
7427
|
position: fixed;
|
|
7301
7428
|
top: 0;
|
|
7302
7429
|
right: 0;
|
|
7303
7430
|
bottom: 0;
|
|
7304
7431
|
left: 0;
|
|
7305
|
-
|
|
7306
|
-
|
|
7307
|
-
|
|
7308
|
-
.yYFVVScosfQ- {
|
|
7309
|
-
position: absolute;
|
|
7310
|
-
top: 50%;
|
|
7311
|
-
max-width: 100%;
|
|
7312
|
-
max-height: 100%;
|
|
7313
|
-
margin: auto;
|
|
7432
|
+
-webkit-backdrop-filter: blur(30px);
|
|
7433
|
+
backdrop-filter: blur(30px);
|
|
7434
|
+
background-color: rgba(3, 43, 58, 0.25);
|
|
7314
7435
|
}
|
|
7315
7436
|
|
|
7316
7437
|
._0X4jj5NERa4- {
|
package/dist/throttle-es.js
CHANGED