@jobber/components 6.115.3-edicleanu-753c899.3 → 6.115.3
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/InputAvatar/InputAvatar.d.ts +1 -1
- package/dist/InputFile/InputFile.d.ts +1 -1
- package/dist/Markdown-cjs.js +13 -12
- package/dist/Markdown-es.js +13 -12
- package/dist/styles.css +45 -45
- package/package.json +3 -6
|
@@ -7,7 +7,7 @@ interface InputAvatarProps extends Omit<AvatarProps, "size" | "UNSAFE_className"
|
|
|
7
7
|
* to upload the file.
|
|
8
8
|
*
|
|
9
9
|
* More info is available at:
|
|
10
|
-
* https://atlantis.getjobber.com
|
|
10
|
+
* https://atlantis.getjobber.com/components/InputFile
|
|
11
11
|
*/
|
|
12
12
|
getUploadParams(file: File): UploadParams | Promise<UploadParams>;
|
|
13
13
|
/**
|
|
@@ -142,7 +142,7 @@ interface InputFileProps {
|
|
|
142
142
|
* to upload the file.
|
|
143
143
|
*
|
|
144
144
|
* More info is available at:
|
|
145
|
-
* https://atlantis.getjobber.com
|
|
145
|
+
* https://atlantis.getjobber.com/components/InputFile
|
|
146
146
|
*/
|
|
147
147
|
getUploadParams(file: File): UploadParams | Promise<UploadParams>;
|
|
148
148
|
/**
|
package/dist/Markdown-cjs.js
CHANGED
|
@@ -16821,8 +16821,7 @@ function footer(state) {
|
|
|
16821
16821
|
}
|
|
16822
16822
|
|
|
16823
16823
|
/**
|
|
16824
|
-
* @
|
|
16825
|
-
* @typedef {import('unist').Parent} Parent
|
|
16824
|
+
* @import {Node, Parent} from 'unist'
|
|
16826
16825
|
*/
|
|
16827
16826
|
|
|
16828
16827
|
|
|
@@ -16870,7 +16869,11 @@ const convert$1 =
|
|
|
16870
16869
|
}
|
|
16871
16870
|
|
|
16872
16871
|
if (typeof test === 'object') {
|
|
16873
|
-
return Array.isArray(test)
|
|
16872
|
+
return Array.isArray(test)
|
|
16873
|
+
? anyFactory$1(test)
|
|
16874
|
+
: // Cast because `ReadonlyArray` goes into the above but `isArray`
|
|
16875
|
+
// narrows to `Array`.
|
|
16876
|
+
propertiesFactory(/** @type {Props} */ (test))
|
|
16874
16877
|
}
|
|
16875
16878
|
|
|
16876
16879
|
if (typeof test === 'string') {
|
|
@@ -16917,7 +16920,7 @@ function anyFactory$1(tests) {
|
|
|
16917
16920
|
* @param {Props} check
|
|
16918
16921
|
* @returns {Check}
|
|
16919
16922
|
*/
|
|
16920
|
-
function
|
|
16923
|
+
function propertiesFactory(check) {
|
|
16921
16924
|
const checkAsRecord = /** @type {Record<string, unknown>} */ (check);
|
|
16922
16925
|
|
|
16923
16926
|
return castFactory$1(all)
|
|
@@ -17006,8 +17009,7 @@ function color$1(d) {
|
|
|
17006
17009
|
}
|
|
17007
17010
|
|
|
17008
17011
|
/**
|
|
17009
|
-
* @
|
|
17010
|
-
* @typedef {import('unist').Parent} UnistParent
|
|
17012
|
+
* @import {Node as UnistNode, Parent as UnistParent} from 'unist'
|
|
17011
17013
|
*/
|
|
17012
17014
|
|
|
17013
17015
|
|
|
@@ -17110,9 +17112,9 @@ function visitParents$1(tree, test, visitor, reverse) {
|
|
|
17110
17112
|
typeof value.tagName === 'string'
|
|
17111
17113
|
? value.tagName
|
|
17112
17114
|
: // `xast`
|
|
17113
|
-
|
|
17114
|
-
|
|
17115
|
-
|
|
17115
|
+
typeof value.name === 'string'
|
|
17116
|
+
? value.name
|
|
17117
|
+
: undefined;
|
|
17116
17118
|
|
|
17117
17119
|
Object.defineProperty(visit, 'name', {
|
|
17118
17120
|
value:
|
|
@@ -17189,9 +17191,8 @@ function toResult$1(value) {
|
|
|
17189
17191
|
}
|
|
17190
17192
|
|
|
17191
17193
|
/**
|
|
17192
|
-
* @
|
|
17193
|
-
* @
|
|
17194
|
-
* @typedef {import('unist-util-visit-parents').VisitorResult} VisitorResult
|
|
17194
|
+
* @import {Node as UnistNode, Parent as UnistParent} from 'unist'
|
|
17195
|
+
* @import {VisitorResult} from 'unist-util-visit-parents'
|
|
17195
17196
|
*/
|
|
17196
17197
|
|
|
17197
17198
|
|
package/dist/Markdown-es.js
CHANGED
|
@@ -16819,8 +16819,7 @@ function footer(state) {
|
|
|
16819
16819
|
}
|
|
16820
16820
|
|
|
16821
16821
|
/**
|
|
16822
|
-
* @
|
|
16823
|
-
* @typedef {import('unist').Parent} Parent
|
|
16822
|
+
* @import {Node, Parent} from 'unist'
|
|
16824
16823
|
*/
|
|
16825
16824
|
|
|
16826
16825
|
|
|
@@ -16868,7 +16867,11 @@ const convert$1 =
|
|
|
16868
16867
|
}
|
|
16869
16868
|
|
|
16870
16869
|
if (typeof test === 'object') {
|
|
16871
|
-
return Array.isArray(test)
|
|
16870
|
+
return Array.isArray(test)
|
|
16871
|
+
? anyFactory$1(test)
|
|
16872
|
+
: // Cast because `ReadonlyArray` goes into the above but `isArray`
|
|
16873
|
+
// narrows to `Array`.
|
|
16874
|
+
propertiesFactory(/** @type {Props} */ (test))
|
|
16872
16875
|
}
|
|
16873
16876
|
|
|
16874
16877
|
if (typeof test === 'string') {
|
|
@@ -16915,7 +16918,7 @@ function anyFactory$1(tests) {
|
|
|
16915
16918
|
* @param {Props} check
|
|
16916
16919
|
* @returns {Check}
|
|
16917
16920
|
*/
|
|
16918
|
-
function
|
|
16921
|
+
function propertiesFactory(check) {
|
|
16919
16922
|
const checkAsRecord = /** @type {Record<string, unknown>} */ (check);
|
|
16920
16923
|
|
|
16921
16924
|
return castFactory$1(all)
|
|
@@ -17004,8 +17007,7 @@ function color$1(d) {
|
|
|
17004
17007
|
}
|
|
17005
17008
|
|
|
17006
17009
|
/**
|
|
17007
|
-
* @
|
|
17008
|
-
* @typedef {import('unist').Parent} UnistParent
|
|
17010
|
+
* @import {Node as UnistNode, Parent as UnistParent} from 'unist'
|
|
17009
17011
|
*/
|
|
17010
17012
|
|
|
17011
17013
|
|
|
@@ -17108,9 +17110,9 @@ function visitParents$1(tree, test, visitor, reverse) {
|
|
|
17108
17110
|
typeof value.tagName === 'string'
|
|
17109
17111
|
? value.tagName
|
|
17110
17112
|
: // `xast`
|
|
17111
|
-
|
|
17112
|
-
|
|
17113
|
-
|
|
17113
|
+
typeof value.name === 'string'
|
|
17114
|
+
? value.name
|
|
17115
|
+
: undefined;
|
|
17114
17116
|
|
|
17115
17117
|
Object.defineProperty(visit, 'name', {
|
|
17116
17118
|
value:
|
|
@@ -17187,9 +17189,8 @@ function toResult$1(value) {
|
|
|
17187
17189
|
}
|
|
17188
17190
|
|
|
17189
17191
|
/**
|
|
17190
|
-
* @
|
|
17191
|
-
* @
|
|
17192
|
-
* @typedef {import('unist-util-visit-parents').VisitorResult} VisitorResult
|
|
17192
|
+
* @import {Node as UnistNode, Parent as UnistParent} from 'unist'
|
|
17193
|
+
* @import {VisitorResult} from 'unist-util-visit-parents'
|
|
17193
17194
|
*/
|
|
17194
17195
|
|
|
17195
17196
|
|
package/dist/styles.css
CHANGED
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
|
|
79
79
|
._4yhnonWAWRY-,
|
|
80
80
|
.oGLMF6n8C74- {
|
|
81
|
-
background: hsl(
|
|
81
|
+
background: hsl(43, 18%, 92%);
|
|
82
82
|
background: var(--color-surface--hover);
|
|
83
83
|
}
|
|
84
84
|
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
|
|
93
93
|
.h5-1Pp0eRyo-:hover,
|
|
94
94
|
.LBrwH6TEUYA-:hover {
|
|
95
|
-
background: hsl(
|
|
95
|
+
background: hsl(43, 18%, 92%);
|
|
96
96
|
background: var(--color-surface--hover);
|
|
97
97
|
}
|
|
98
98
|
|
|
@@ -196,7 +196,7 @@
|
|
|
196
196
|
overflow: hidden;
|
|
197
197
|
color: hsl(197, 90%, 12%);
|
|
198
198
|
color: var(--color-heading);
|
|
199
|
-
background-color: hsl(
|
|
199
|
+
background-color: hsl(40, 9%, 85%);
|
|
200
200
|
background-color: var(--color-interactive--background);
|
|
201
201
|
cursor: default;
|
|
202
202
|
transition: 200ms;
|
|
@@ -208,7 +208,7 @@
|
|
|
208
208
|
}
|
|
209
209
|
|
|
210
210
|
.pmtAk9HEhF4- {
|
|
211
|
-
background-color: hsl(
|
|
211
|
+
background-color: hsl(43, 5%, 72%);
|
|
212
212
|
background-color: var(--color-interactive--background--hover);
|
|
213
213
|
}
|
|
214
214
|
|
|
@@ -254,7 +254,7 @@
|
|
|
254
254
|
}
|
|
255
255
|
|
|
256
256
|
.SmrmwoOlZDo-:hover::before {
|
|
257
|
-
background-color: hsl(
|
|
257
|
+
background-color: hsl(43, 5%, 72%);
|
|
258
258
|
background-color: var(--color-interactive--background--hover);
|
|
259
259
|
}
|
|
260
260
|
|
|
@@ -1736,7 +1736,7 @@ a.MVT-qs-bO9M-.MhDYVRl8PUc-:hover,
|
|
|
1736
1736
|
a.MVT-qs-bO9M-.MhDYVRl8PUc-:focus-visible {
|
|
1737
1737
|
color: hsl(197, 90%, 12%);
|
|
1738
1738
|
color: var(--color-interactive--subtle--hover);
|
|
1739
|
-
background-color: hsl(
|
|
1739
|
+
background-color: hsl(43, 18%, 92%);
|
|
1740
1740
|
background-color: var(--color-surface--hover);
|
|
1741
1741
|
fill: hsl(197, 90%, 12%);
|
|
1742
1742
|
fill: var(--color-interactive--subtle--hover);
|
|
@@ -1890,7 +1890,7 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
1890
1890
|
border: none;
|
|
1891
1891
|
border-radius: 100%;
|
|
1892
1892
|
border-radius: var(--radius-circle);
|
|
1893
|
-
background-color: hsl(
|
|
1893
|
+
background-color: hsl(40, 9%, 85%);
|
|
1894
1894
|
background-color: var(--color-interactive--background);
|
|
1895
1895
|
cursor: pointer;
|
|
1896
1896
|
-ms-flex-pack: center;
|
|
@@ -1908,7 +1908,7 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
1908
1908
|
.YmRTd-KeXv4-:hover,
|
|
1909
1909
|
.YmRTd-KeXv4-:focus-visible {
|
|
1910
1910
|
outline: none;
|
|
1911
|
-
background-color: hsl(
|
|
1911
|
+
background-color: hsl(43, 5%, 72%);
|
|
1912
1912
|
background-color: var(--color-interactive--background--hover);
|
|
1913
1913
|
}
|
|
1914
1914
|
|
|
@@ -2087,7 +2087,7 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
2087
2087
|
.y9zhi8Wr8QA-:hover,
|
|
2088
2088
|
.y9zhi8Wr8QA-:focus,
|
|
2089
2089
|
.y9zhi8Wr8QA-._3Xg49dtL1Q8- {
|
|
2090
|
-
background-color: hsl(
|
|
2090
|
+
background-color: hsl(43, 18%, 92%);
|
|
2091
2091
|
background-color: var(--color-surface--hover);
|
|
2092
2092
|
outline-color: hsl(198, 12%, 57%);
|
|
2093
2093
|
outline-color: var(--color-focus);
|
|
@@ -2395,7 +2395,7 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
2395
2395
|
padding: var(--space-smaller);
|
|
2396
2396
|
border-radius: 100%;
|
|
2397
2397
|
border-radius: var(--radius-circle);
|
|
2398
|
-
background-color: hsl(
|
|
2398
|
+
background-color: hsl(43, 18%, 92%);
|
|
2399
2399
|
background-color: var(--color-surface--background);
|
|
2400
2400
|
}
|
|
2401
2401
|
|
|
@@ -2688,7 +2688,7 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
2688
2688
|
|
|
2689
2689
|
.Vppn4k0fBsc-:hover,
|
|
2690
2690
|
.Vppn4k0fBsc-:focus {
|
|
2691
|
-
background-color: hsl(
|
|
2691
|
+
background-color: hsl(43, 18%, 92%);
|
|
2692
2692
|
background-color: var(--color-surface--hover);
|
|
2693
2693
|
}
|
|
2694
2694
|
|
|
@@ -3257,7 +3257,7 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
3257
3257
|
.P4Sdaq0-lZs-:focus-visible {
|
|
3258
3258
|
box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 1), 0px 0px 0px 4px hsl(198, 12%, 57%);
|
|
3259
3259
|
box-shadow: var(--shadow-focus);
|
|
3260
|
-
background-color: hsl(
|
|
3260
|
+
background-color: hsl(43, 18%, 92%);
|
|
3261
3261
|
background-color: var(--color-surface--hover);
|
|
3262
3262
|
}
|
|
3263
3263
|
|
|
@@ -3282,14 +3282,14 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
3282
3282
|
}
|
|
3283
3283
|
|
|
3284
3284
|
.M1BgN-oCmKw-:hover {
|
|
3285
|
-
background-color: hsl(
|
|
3285
|
+
background-color: hsl(43, 18%, 92%);
|
|
3286
3286
|
background-color: var(--color-surface--hover);
|
|
3287
3287
|
}
|
|
3288
3288
|
|
|
3289
3289
|
/* Background on both legacy (:focus-visible) and RAC ([data-focused]) */
|
|
3290
3290
|
|
|
3291
3291
|
.M1BgN-oCmKw-[data-focused] {
|
|
3292
|
-
background-color: hsl(
|
|
3292
|
+
background-color: hsl(43, 18%, 92%);
|
|
3293
3293
|
background-color: var(--color-surface--hover);
|
|
3294
3294
|
}
|
|
3295
3295
|
|
|
@@ -3698,7 +3698,7 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
3698
3698
|
color: hsl(197, 90%, 12%);
|
|
3699
3699
|
color: var(--color-heading);
|
|
3700
3700
|
text-align: left;
|
|
3701
|
-
background-color: hsl(
|
|
3701
|
+
background-color: hsl(40, 9%, 85%);
|
|
3702
3702
|
background-color: var(--chip-base-bg-color);
|
|
3703
3703
|
cursor: pointer;
|
|
3704
3704
|
transition: all 200ms;
|
|
@@ -3753,7 +3753,7 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
3753
3753
|
}
|
|
3754
3754
|
|
|
3755
3755
|
.VI-h7qe-Bl0-:hover {
|
|
3756
|
-
background-color: hsl(
|
|
3756
|
+
background-color: hsl(43, 18%, 92%);
|
|
3757
3757
|
background-color: var(--color-surface--hover);
|
|
3758
3758
|
}
|
|
3759
3759
|
|
|
@@ -3985,13 +3985,13 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
3985
3985
|
|
|
3986
3986
|
.ulLzwMsQL3U-._3LLjp8oIxJ0-:focus-visible ~ div[role="option"],
|
|
3987
3987
|
.ulLzwMsQL3U-._3LLjp8oIxJ0-:focus-visible ~ div[role="button"] {
|
|
3988
|
-
background-color: hsl(
|
|
3988
|
+
background-color: hsl(40, 9%, 85%);
|
|
3989
3989
|
background-color: var(--color-interactive--background);
|
|
3990
3990
|
}
|
|
3991
3991
|
|
|
3992
3992
|
.ulLzwMsQL3U-.H7VZzUBkgjk-:focus-visible ~ div[role="option"],
|
|
3993
3993
|
.ulLzwMsQL3U-.H7VZzUBkgjk-:focus-visible ~ div[role="button"] {
|
|
3994
|
-
background-color: hsl(
|
|
3994
|
+
background-color: hsl(43, 5%, 72%);
|
|
3995
3995
|
background-color: var(--color-interactive--background--hover);
|
|
3996
3996
|
}
|
|
3997
3997
|
|
|
@@ -4032,7 +4032,7 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
4032
4032
|
|
|
4033
4033
|
.ngKOY8l4BG4-:hover,
|
|
4034
4034
|
.ngKOY8l4BG4-:focus {
|
|
4035
|
-
background-color: hsl(
|
|
4035
|
+
background-color: hsl(43, 18%, 92%);
|
|
4036
4036
|
background-color: var(--color-surface--hover);
|
|
4037
4037
|
}
|
|
4038
4038
|
|
|
@@ -4260,7 +4260,7 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
4260
4260
|
._9SAK31TqNDY-:focus,
|
|
4261
4261
|
._8d0w-JzgzS4- {
|
|
4262
4262
|
outline: none;
|
|
4263
|
-
background-color: hsl(
|
|
4263
|
+
background-color: hsl(43, 18%, 92%);
|
|
4264
4264
|
background-color: var(--color-surface--hover);
|
|
4265
4265
|
}
|
|
4266
4266
|
|
|
@@ -4408,7 +4408,7 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
4408
4408
|
border: none;
|
|
4409
4409
|
border-radius: 100%;
|
|
4410
4410
|
border-radius: var(--radius-circle);
|
|
4411
|
-
background-color: hsl(
|
|
4411
|
+
background-color: hsl(40, 9%, 85%);
|
|
4412
4412
|
background-color: var(--color-interactive--background);
|
|
4413
4413
|
cursor: pointer;
|
|
4414
4414
|
-webkit-transform: translateY(-50%);
|
|
@@ -4634,7 +4634,7 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
4634
4634
|
|
|
4635
4635
|
.HowvTX8-pw4-:hover,
|
|
4636
4636
|
.HowvTX8-pw4-:focus-visible {
|
|
4637
|
-
background-color: hsl(
|
|
4637
|
+
background-color: hsl(43, 18%, 92%);
|
|
4638
4638
|
background-color: var(--color-surface--hover);
|
|
4639
4639
|
}
|
|
4640
4640
|
|
|
@@ -4702,7 +4702,7 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
4702
4702
|
.PoMXFVYVY5A-:hover,
|
|
4703
4703
|
.PoMXFVYVY5A-:focus-visible {
|
|
4704
4704
|
outline: none;
|
|
4705
|
-
background-color: hsl(
|
|
4705
|
+
background-color: hsl(43, 18%, 92%);
|
|
4706
4706
|
background-color: var(--color-surface--hover);
|
|
4707
4707
|
}
|
|
4708
4708
|
|
|
@@ -5275,7 +5275,7 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
5275
5275
|
.i-w6mU9puzE-:hover,
|
|
5276
5276
|
.i-w6mU9puzE-:focus-within {
|
|
5277
5277
|
--data-list-item-active-color: var(--color-surface--hover);
|
|
5278
|
-
background-color: hsl(
|
|
5278
|
+
background-color: hsl(43, 18%, 92%);
|
|
5279
5279
|
background-color: var(--data-list-item-active-color);
|
|
5280
5280
|
}
|
|
5281
5281
|
|
|
@@ -5859,7 +5859,7 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
5859
5859
|
|
|
5860
5860
|
.d4hPt6o50kw-:hover,
|
|
5861
5861
|
.d4hPt6o50kw-:focus {
|
|
5862
|
-
background-color: hsl(
|
|
5862
|
+
background-color: hsl(43, 18%, 92%);
|
|
5863
5863
|
background-color: var(--color-surface--hover);
|
|
5864
5864
|
}
|
|
5865
5865
|
|
|
@@ -6268,7 +6268,7 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
6268
6268
|
|
|
6269
6269
|
.zfAZTjk0VNE-:hover,
|
|
6270
6270
|
.zfAZTjk0VNE-:focus {
|
|
6271
|
-
background-color: hsl(
|
|
6271
|
+
background-color: hsl(43, 18%, 92%);
|
|
6272
6272
|
background-color: var(--color-surface--hover);
|
|
6273
6273
|
}
|
|
6274
6274
|
|
|
@@ -6408,13 +6408,13 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
6408
6408
|
}
|
|
6409
6409
|
|
|
6410
6410
|
.aGF6t8l8iUk-:first-child:hover {
|
|
6411
|
-
background: hsl(
|
|
6411
|
+
background: hsl(43, 18%, 92%);
|
|
6412
6412
|
background: var(--color-surface--hover);
|
|
6413
6413
|
cursor: pointer;
|
|
6414
6414
|
}
|
|
6415
6415
|
|
|
6416
6416
|
.W0kYDUxPkqI-:hover {
|
|
6417
|
-
background: hsl(
|
|
6417
|
+
background: hsl(43, 18%, 92%);
|
|
6418
6418
|
background: var(--color-surface--hover);
|
|
6419
6419
|
cursor: pointer;
|
|
6420
6420
|
}
|
|
@@ -6632,7 +6632,7 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
6632
6632
|
.-hmXAsAfH9U- option:focus,
|
|
6633
6633
|
.-hmXAsAfH9U- option:focus-visible,
|
|
6634
6634
|
.-hmXAsAfH9U- option:checked {
|
|
6635
|
-
background-color: hsl(
|
|
6635
|
+
background-color: hsl(43, 18%, 92%);
|
|
6636
6636
|
background-color: var(--color-surface--hover);
|
|
6637
6637
|
}
|
|
6638
6638
|
|
|
@@ -6833,7 +6833,7 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
6833
6833
|
}
|
|
6834
6834
|
|
|
6835
6835
|
.kJeYcsgg700- tbody tr.sJQbtw-NEHU-.J2p1EeT252A-:hover {
|
|
6836
|
-
background-color: hsl(
|
|
6836
|
+
background-color: hsl(43, 18%, 92%);
|
|
6837
6837
|
background-color: var(--color-surface--hover);
|
|
6838
6838
|
}
|
|
6839
6839
|
|
|
@@ -7551,14 +7551,14 @@ h2.react-datepicker__current-month {
|
|
|
7551
7551
|
justify-content: center;
|
|
7552
7552
|
}
|
|
7553
7553
|
.Ma55F5Y-XhE- .react-datepicker__day--highlighted {
|
|
7554
|
-
background: hsl(
|
|
7554
|
+
background: hsl(40, 9%, 85%);
|
|
7555
7555
|
background: var(--color-surface--active);
|
|
7556
7556
|
}
|
|
7557
7557
|
.Ma55F5Y-XhE- .react-datepicker__day--outside-month {
|
|
7558
7558
|
border-radius: 0;
|
|
7559
7559
|
color: hsl(198, 35%, 21%);
|
|
7560
7560
|
color: var(--color-text);
|
|
7561
|
-
background: hsl(
|
|
7561
|
+
background: hsl(40, 9%, 85%);
|
|
7562
7562
|
background: var(--color-interactive--background);
|
|
7563
7563
|
}
|
|
7564
7564
|
.Ma55F5Y-XhE- .react-datepicker__day--disabled {
|
|
@@ -7602,13 +7602,13 @@ h2.react-datepicker__current-month {
|
|
|
7602
7602
|
.Ma55F5Y-XhE- .react-datepicker__day:focus {
|
|
7603
7603
|
border-radius: 8px;
|
|
7604
7604
|
border-radius: var(--radius-base);
|
|
7605
|
-
background: hsl(
|
|
7605
|
+
background: hsl(43, 18%, 92%);
|
|
7606
7606
|
background: var(--color-surface--hover);
|
|
7607
7607
|
}
|
|
7608
7608
|
.Ma55F5Y-XhE- .react-datepicker__day--outside-month:hover,
|
|
7609
7609
|
.Ma55F5Y-XhE- .react-datepicker__day--outside-month:focus {
|
|
7610
7610
|
border-radius: 0;
|
|
7611
|
-
background: hsl(
|
|
7611
|
+
background: hsl(43, 5%, 72%);
|
|
7612
7612
|
background: var(--color-interactive--background--hover);
|
|
7613
7613
|
}
|
|
7614
7614
|
.Ma55F5Y-XhE- .react-datepicker__day:focus {
|
|
@@ -7724,7 +7724,7 @@ h2.react-datepicker__current-month {
|
|
|
7724
7724
|
|
|
7725
7725
|
._8BfGPs1d3OI-:hover,
|
|
7726
7726
|
._8BfGPs1d3OI-:focus-visible {
|
|
7727
|
-
background-color: hsl(
|
|
7727
|
+
background-color: hsl(43, 18%, 92%);
|
|
7728
7728
|
background-color: var(--color-surface--hover);
|
|
7729
7729
|
}
|
|
7730
7730
|
|
|
@@ -8251,7 +8251,7 @@ h2.react-datepicker__current-month {
|
|
|
8251
8251
|
box-sizing: border-box;
|
|
8252
8252
|
padding: 0;
|
|
8253
8253
|
overflow: hidden;
|
|
8254
|
-
background-color: hsl(
|
|
8254
|
+
background-color: hsl(40, 9%, 85%);
|
|
8255
8255
|
background-color: var(--color-interactive--background);
|
|
8256
8256
|
-ms-flex-negative: 0;
|
|
8257
8257
|
flex-shrink: 0;
|
|
@@ -8490,7 +8490,7 @@ progress.p9AgTzIbTwY-[value]::-webkit-progress-bar {
|
|
|
8490
8490
|
}
|
|
8491
8491
|
|
|
8492
8492
|
progress.p9AgTzIbTwY-[value]::-webkit-progress-bar {
|
|
8493
|
-
background-color: hsl(
|
|
8493
|
+
background-color: hsl(40, 9%, 85%);
|
|
8494
8494
|
background-color: var(--color-interactive--background);
|
|
8495
8495
|
}
|
|
8496
8496
|
|
|
@@ -9070,7 +9070,7 @@ html.atlantisLightBoxActive {
|
|
|
9070
9070
|
.yT6m1v71VK8-.fCb0O1wAjR0- {
|
|
9071
9071
|
border-color: hsl(198, 12%, 57%);
|
|
9072
9072
|
border-color: var(--color-focus);
|
|
9073
|
-
background-color: hsl(
|
|
9073
|
+
background-color: hsl(43, 18%, 92%);
|
|
9074
9074
|
background-color: var(--color-surface--hover);
|
|
9075
9075
|
}
|
|
9076
9076
|
|
|
@@ -9615,13 +9615,13 @@ input.oOrjwubmsVA- {
|
|
|
9615
9615
|
}
|
|
9616
9616
|
|
|
9617
9617
|
.h6M4H38O32Y- > * {
|
|
9618
|
-
background-color: hsl(
|
|
9618
|
+
background-color: hsl(43, 18%, 92%);
|
|
9619
9619
|
background-color: var(--color-surface--background);
|
|
9620
9620
|
}
|
|
9621
9621
|
|
|
9622
9622
|
.rwfzPbhL5qI-:hover > *,
|
|
9623
9623
|
.rwfzPbhL5qI-:focus > * {
|
|
9624
|
-
background-color: hsl(
|
|
9624
|
+
background-color: hsl(43, 18%, 92%);
|
|
9625
9625
|
background-color: var(--color-surface--hover);
|
|
9626
9626
|
}
|
|
9627
9627
|
|
|
@@ -9653,7 +9653,7 @@ input.oOrjwubmsVA- {
|
|
|
9653
9653
|
|
|
9654
9654
|
.h6M4H38O32Y-:hover > *,
|
|
9655
9655
|
.h6M4H38O32Y-:focus > * {
|
|
9656
|
-
background-color: hsl(
|
|
9656
|
+
background-color: hsl(43, 5%, 72%);
|
|
9657
9657
|
background-color: var(--color-interactive--background--hover);
|
|
9658
9658
|
}
|
|
9659
9659
|
|
|
@@ -9812,7 +9812,7 @@ input.oOrjwubmsVA- {
|
|
|
9812
9812
|
|
|
9813
9813
|
.poS49c-LqiU-:focus,
|
|
9814
9814
|
.poS49c-LqiU-.NxmdtEQX0fQ- {
|
|
9815
|
-
background-color: hsl(
|
|
9815
|
+
background-color: hsl(43, 18%, 92%);
|
|
9816
9816
|
background-color: var(--color-surface--hover);
|
|
9817
9817
|
outline-color: hsl(198, 12%, 57%);
|
|
9818
9818
|
outline-color: var(--color-focus);
|
|
@@ -10222,14 +10222,14 @@ input.oOrjwubmsVA- {
|
|
|
10222
10222
|
}
|
|
10223
10223
|
|
|
10224
10224
|
.zulupkPyEs8-:hover {
|
|
10225
|
-
background: hsl(
|
|
10225
|
+
background: hsl(43, 18%, 92%);
|
|
10226
10226
|
background: var(--color-surface--hover);
|
|
10227
10227
|
}
|
|
10228
10228
|
|
|
10229
10229
|
.XGjk9DHJAmw-:focus + .zulupkPyEs8- {
|
|
10230
10230
|
box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 1), 0px 0px 0px 4px hsl(198, 12%, 57%);
|
|
10231
10231
|
box-shadow: var(--shadow-focus);
|
|
10232
|
-
background: hsl(
|
|
10232
|
+
background: hsl(43, 18%, 92%);
|
|
10233
10233
|
background: var(--color-surface--hover);
|
|
10234
10234
|
}
|
|
10235
10235
|
|
|
@@ -11363,7 +11363,7 @@ ul.LfIIg9bwrhQ- {
|
|
|
11363
11363
|
|
|
11364
11364
|
.DEdzikxlAkw-:focus-visible {
|
|
11365
11365
|
outline: transparent;
|
|
11366
|
-
background-color: hsl(
|
|
11366
|
+
background-color: hsl(43, 18%, 92%);
|
|
11367
11367
|
background-color: var(--color-surface--hover);
|
|
11368
11368
|
}
|
|
11369
11369
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jobber/components",
|
|
3
|
-
"version": "6.115.3
|
|
3
|
+
"version": "6.115.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -473,6 +473,7 @@
|
|
|
473
473
|
],
|
|
474
474
|
"dependencies": {
|
|
475
475
|
"@floating-ui/react": "^0.27.5",
|
|
476
|
+
"@jobber/formatters": "^0.5.0",
|
|
476
477
|
"@tanstack/react-table": "8.5.13",
|
|
477
478
|
"@types/color": "^3.0.1",
|
|
478
479
|
"@types/lodash": "^4.14.136",
|
|
@@ -495,9 +496,6 @@
|
|
|
495
496
|
},
|
|
496
497
|
"devDependencies": {
|
|
497
498
|
"@csstools/postcss-global-data": "^1.0.3",
|
|
498
|
-
"@jobber/design": "^0.92.1-edicleanu-753c899.11+753c89916",
|
|
499
|
-
"@jobber/formatters": "^0.5.1-edicleanu-753c899.262+753c89916",
|
|
500
|
-
"@jobber/hooks": "^2.19.4-edicleanu-753c899.153+753c89916",
|
|
501
499
|
"@rollup/plugin-alias": "^5.1.0",
|
|
502
500
|
"@rollup/plugin-commonjs": "^25.0.7",
|
|
503
501
|
"@rollup/plugin-node-resolve": "15.2.3",
|
|
@@ -522,7 +520,6 @@
|
|
|
522
520
|
"peerDependencies": {
|
|
523
521
|
"@apollo/client": "^3",
|
|
524
522
|
"@jobber/design": "*",
|
|
525
|
-
"@jobber/formatters": "^0.5.0",
|
|
526
523
|
"@jobber/hooks": ">=2",
|
|
527
524
|
"@tanstack/react-table": "^8",
|
|
528
525
|
"axios": "^1.11.0",
|
|
@@ -541,5 +538,5 @@
|
|
|
541
538
|
"> 1%",
|
|
542
539
|
"IE 10"
|
|
543
540
|
],
|
|
544
|
-
"gitHead": "
|
|
541
|
+
"gitHead": "a707925b53e459e55d217809955eced664dfa70c"
|
|
545
542
|
}
|