@jobber/components 6.118.1-TAYLORfix-b410f1e.1 → 6.118.1
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/Autocomplete/Autocomplete.types.d.ts +11 -0
- package/dist/Autocomplete/components/FloatingMenu.d.ts +1 -2
- package/dist/Autocomplete/components/MenuList.d.ts +1 -2
- package/dist/Autocomplete/useAutocomplete.d.ts +1 -12
- package/dist/Autocomplete/utils/menuModel.d.ts +1 -2
- package/dist/DatePicker/DatePicker.d.ts +0 -1
- package/dist/styles.css +57 -213
- package/package.json +2 -2
|
@@ -493,4 +493,15 @@ export type AutocompleteRebuiltProps<Value extends OptionLike = OptionLike, Mult
|
|
|
493
493
|
export declare const menuOptions: <T extends OptionLike, ActionExtra extends object = ExtraProps>(options: T[], actions?: MenuAction<ActionExtra>[]) => MenuOptions<T, ActionExtra>;
|
|
494
494
|
export declare const menuSection: <T extends OptionLike, SectionExtra extends object = ExtraProps, ActionExtra extends object = ExtraProps>(label: string, options: T[], actions?: MenuAction<ActionExtra>[], extra?: SectionExtra) => MenuSection<T, SectionExtra, ActionExtra>;
|
|
495
495
|
export declare function defineMenu<T extends OptionLike, S extends object = ExtraProps, A extends object = ExtraProps>(menu: MenuItem<T, S, A>[]): MenuItem<T, S, A>[];
|
|
496
|
+
export type RenderItem<T extends OptionLike, S extends object = Record<string, unknown>, A extends object = Record<string, unknown>> = {
|
|
497
|
+
kind: "option";
|
|
498
|
+
value: T;
|
|
499
|
+
} | {
|
|
500
|
+
kind: "action";
|
|
501
|
+
action: MenuAction<A>;
|
|
502
|
+
origin?: ActionOrigin;
|
|
503
|
+
} | {
|
|
504
|
+
kind: "section";
|
|
505
|
+
section: MenuSection<T, S, A>;
|
|
506
|
+
};
|
|
496
507
|
export {};
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import type { UseFloatingReturn, UseInteractionsReturn } from "@floating-ui/react";
|
|
3
|
-
import type { ActionConfig, AutocompleteRebuiltProps, MenuFooter, MenuHeader, OptionLike } from "../Autocomplete.types";
|
|
4
|
-
import type { RenderItem } from "../useAutocomplete";
|
|
3
|
+
import type { ActionConfig, AutocompleteRebuiltProps, MenuFooter, MenuHeader, OptionLike, RenderItem } from "../Autocomplete.types";
|
|
5
4
|
interface FloatingMenuProps<Value extends OptionLike> {
|
|
6
5
|
readonly context: UseFloatingReturn["context"];
|
|
7
6
|
readonly getFloatingProps: UseInteractionsReturn["getFloatingProps"];
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import type { ActionConfig, AutocompleteRebuiltProps, OptionLike } from "../Autocomplete.types";
|
|
3
|
-
import type { RenderItem } from "../useAutocomplete";
|
|
2
|
+
import type { ActionConfig, AutocompleteRebuiltProps, OptionLike, RenderItem } from "../Autocomplete.types";
|
|
4
3
|
interface MenuListProps<T extends OptionLike> {
|
|
5
4
|
readonly items: Array<RenderItem<T>>;
|
|
6
5
|
readonly activeIndex: number | null;
|
|
@@ -1,16 +1,5 @@
|
|
|
1
1
|
import type React from "react";
|
|
2
|
-
import type { ActionConfig,
|
|
3
|
-
export type RenderItem<T extends OptionLike, S extends object = Record<string, unknown>, A extends object = Record<string, unknown>> = {
|
|
4
|
-
kind: "option";
|
|
5
|
-
value: T;
|
|
6
|
-
} | {
|
|
7
|
-
kind: "action";
|
|
8
|
-
action: MenuAction<A>;
|
|
9
|
-
origin?: ActionOrigin;
|
|
10
|
-
} | {
|
|
11
|
-
kind: "section";
|
|
12
|
-
section: MenuSection<T, S, A>;
|
|
13
|
-
};
|
|
2
|
+
import type { ActionConfig, AutocompleteRebuiltProps, OptionLike, RenderItem } from "./Autocomplete.types";
|
|
14
3
|
export declare function useAutocomplete<Value extends OptionLike, Multiple extends boolean = false, SectionExtra extends object = Record<string, unknown>, ActionExtra extends object = Record<string, unknown>>(props: AutocompleteRebuiltProps<Value, Multiple, SectionExtra, ActionExtra>, inputRef: React.RefObject<HTMLInputElement | HTMLTextAreaElement | null>): {
|
|
15
4
|
renderable: RenderItem<Value, SectionExtra, ActionExtra>[];
|
|
16
5
|
optionCount: number;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type React from "react";
|
|
2
|
-
import type { ActionConfig, MenuFooter, MenuHeader, MenuItem, MenuOptions, MenuSection, OptionLike } from "../Autocomplete.types";
|
|
3
|
-
import type { RenderItem } from "../useAutocomplete";
|
|
2
|
+
import type { ActionConfig, MenuFooter, MenuHeader, MenuItem, MenuOptions, MenuSection, OptionLike, RenderItem } from "../Autocomplete.types";
|
|
4
3
|
export declare function flattenMenu<Value extends OptionLike, S extends object, A extends object>(menu: MenuItem<Value, S, A>[]): {
|
|
5
4
|
optionItems: Value[];
|
|
6
5
|
sections: (MenuSection<Value, S, A> | MenuOptions<Value, A>)[];
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { ReactElement } from "react";
|
|
2
2
|
import React from "react";
|
|
3
|
-
import "react-datepicker/dist/react-datepicker.css";
|
|
4
3
|
import type { XOR } from "ts-xor";
|
|
5
4
|
import type { DatePickerActivatorProps } from "./DatePickerActivator";
|
|
6
5
|
import type { DayOfWeek } from "../sharedHelpers/types";
|
package/dist/styles.css
CHANGED
|
@@ -6919,9 +6919,10 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
6919
6919
|
border-top: var(--border-base) solid var(--color-border);
|
|
6920
6920
|
}
|
|
6921
6921
|
|
|
6922
|
-
|
|
6923
|
-
|
|
6924
|
-
|
|
6922
|
+
{
|
|
6923
|
+
/* sr-only utility class for accessibility */
|
|
6924
|
+
}
|
|
6925
|
+
.react-datepicker__navigation-icon::before, .react-datepicker__year-read-view--down-arrow, .react-datepicker__month-read-view--down-arrow, .react-datepicker__month-year-read-view--down-arrow {
|
|
6925
6926
|
border-color: #ccc;
|
|
6926
6927
|
border-style: solid;
|
|
6927
6928
|
border-width: 3px 3px 0 0;
|
|
@@ -6932,7 +6933,6 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
6932
6933
|
top: 6px;
|
|
6933
6934
|
width: 9px;
|
|
6934
6935
|
}
|
|
6935
|
-
/* sr-only utility class for accessibility */
|
|
6936
6936
|
.react-datepicker__sr-only {
|
|
6937
6937
|
position: absolute;
|
|
6938
6938
|
width: 1px;
|
|
@@ -6963,8 +6963,7 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
6963
6963
|
.react-datepicker--time-only .react-datepicker__time-container {
|
|
6964
6964
|
border-left: 0;
|
|
6965
6965
|
}
|
|
6966
|
-
.react-datepicker--time-only .react-datepicker__time,
|
|
6967
|
-
.react-datepicker--time-only .react-datepicker__time-box {
|
|
6966
|
+
.react-datepicker--time-only .react-datepicker__time, .react-datepicker--time-only .react-datepicker__time-box {
|
|
6968
6967
|
border-bottom-left-radius: 0.3rem;
|
|
6969
6968
|
border-bottom-right-radius: 0.3rem;
|
|
6970
6969
|
}
|
|
@@ -7002,18 +7001,11 @@ a._7BLGtYNuJOU-.zgRx3ehZ2z8-:hover {
|
|
|
7002
7001
|
.react-datepicker__header:not(.react-datepicker__header--has-time-select) {
|
|
7003
7002
|
border-top-right-radius: 0.3rem;
|
|
7004
7003
|
}
|
|
7005
|
-
.react-datepicker__year-dropdown-container--select,
|
|
7006
|
-
.react-datepicker__month-dropdown-container--select,
|
|
7007
|
-
.react-datepicker__month-year-dropdown-container--select,
|
|
7008
|
-
.react-datepicker__year-dropdown-container--scroll,
|
|
7009
|
-
.react-datepicker__month-dropdown-container--scroll,
|
|
7010
|
-
.react-datepicker__month-year-dropdown-container--scroll {
|
|
7004
|
+
.react-datepicker__year-dropdown-container--select, .react-datepicker__month-dropdown-container--select, .react-datepicker__month-year-dropdown-container--select, .react-datepicker__year-dropdown-container--scroll, .react-datepicker__month-dropdown-container--scroll, .react-datepicker__month-year-dropdown-container--scroll {
|
|
7011
7005
|
display: inline-block;
|
|
7012
7006
|
margin: 0 15px;
|
|
7013
7007
|
}
|
|
7014
|
-
.react-datepicker__current-month,
|
|
7015
|
-
.react-datepicker-time__header,
|
|
7016
|
-
.react-datepicker-year-header {
|
|
7008
|
+
.react-datepicker__current-month, .react-datepicker-time__header, .react-datepicker-year-header {
|
|
7017
7009
|
margin-top: 0;
|
|
7018
7010
|
color: #000;
|
|
7019
7011
|
font-weight: bold;
|
|
@@ -7029,16 +7021,13 @@ h2.react-datepicker__current-month {
|
|
|
7029
7021
|
overflow: hidden;
|
|
7030
7022
|
}
|
|
7031
7023
|
.react-datepicker__navigation {
|
|
7032
|
-
-
|
|
7033
|
-
-
|
|
7034
|
-
align-items: center;
|
|
7024
|
+
-ms-flex-align: center;
|
|
7025
|
+
align-items: center;
|
|
7035
7026
|
background: none;
|
|
7036
|
-
display: -webkit-box;
|
|
7037
7027
|
display: -ms-flexbox;
|
|
7038
7028
|
display: flex;
|
|
7039
|
-
-
|
|
7040
|
-
-
|
|
7041
|
-
justify-content: center;
|
|
7029
|
+
-ms-flex-pack: center;
|
|
7030
|
+
justify-content: center;
|
|
7042
7031
|
text-align: center;
|
|
7043
7032
|
cursor: pointer;
|
|
7044
7033
|
position: absolute;
|
|
@@ -7106,7 +7095,6 @@ h2.react-datepicker__current-month {
|
|
|
7106
7095
|
text-align: center;
|
|
7107
7096
|
}
|
|
7108
7097
|
.react-datepicker__year-wrapper {
|
|
7109
|
-
display: -webkit-box;
|
|
7110
7098
|
display: -ms-flexbox;
|
|
7111
7099
|
display: flex;
|
|
7112
7100
|
-ms-flex-wrap: wrap;
|
|
@@ -7122,8 +7110,7 @@ h2.react-datepicker__current-month {
|
|
|
7122
7110
|
margin: 0.4rem;
|
|
7123
7111
|
text-align: center;
|
|
7124
7112
|
}
|
|
7125
|
-
.react-datepicker__month .react-datepicker__month-text,
|
|
7126
|
-
.react-datepicker__month .react-datepicker__quarter-text {
|
|
7113
|
+
.react-datepicker__month .react-datepicker__month-text, .react-datepicker__month .react-datepicker__quarter-text {
|
|
7127
7114
|
display: inline-block;
|
|
7128
7115
|
width: 4rem;
|
|
7129
7116
|
margin: 2px;
|
|
@@ -7148,8 +7135,7 @@ h2.react-datepicker__current-month {
|
|
|
7148
7135
|
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input {
|
|
7149
7136
|
width: auto;
|
|
7150
7137
|
}
|
|
7151
|
-
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-inner-spin-button,
|
|
7152
|
-
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-outer-spin-button {
|
|
7138
|
+
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-inner-spin-button, .react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-outer-spin-button {
|
|
7153
7139
|
-webkit-appearance: none;
|
|
7154
7140
|
margin: 0;
|
|
7155
7141
|
}
|
|
@@ -7193,8 +7179,7 @@ h2.react-datepicker__current-month {
|
|
|
7193
7179
|
padding-right: 0;
|
|
7194
7180
|
padding-left: 0;
|
|
7195
7181
|
width: 100%;
|
|
7196
|
-
|
|
7197
|
-
box-sizing: content-box;
|
|
7182
|
+
box-sizing: content-box;
|
|
7198
7183
|
}
|
|
7199
7184
|
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item {
|
|
7200
7185
|
height: 30px;
|
|
@@ -7250,9 +7235,7 @@ h2.react-datepicker__current-month {
|
|
|
7250
7235
|
.react-datepicker__week {
|
|
7251
7236
|
white-space: nowrap;
|
|
7252
7237
|
}
|
|
7253
|
-
.react-datepicker__day-name,
|
|
7254
|
-
.react-datepicker__day,
|
|
7255
|
-
.react-datepicker__time-name {
|
|
7238
|
+
.react-datepicker__day-name, .react-datepicker__day, .react-datepicker__time-name {
|
|
7256
7239
|
color: #000;
|
|
7257
7240
|
display: inline-block;
|
|
7258
7241
|
width: 1.7rem;
|
|
@@ -7260,64 +7243,37 @@ h2.react-datepicker__current-month {
|
|
|
7260
7243
|
text-align: center;
|
|
7261
7244
|
margin: 0.166rem;
|
|
7262
7245
|
}
|
|
7263
|
-
.react-datepicker__day,
|
|
7264
|
-
.react-datepicker__month-text,
|
|
7265
|
-
.react-datepicker__quarter-text,
|
|
7266
|
-
.react-datepicker__year-text {
|
|
7246
|
+
.react-datepicker__day, .react-datepicker__month-text, .react-datepicker__quarter-text, .react-datepicker__year-text {
|
|
7267
7247
|
cursor: pointer;
|
|
7268
7248
|
}
|
|
7269
|
-
.react-datepicker__day:not([aria-disabled=true]):hover,
|
|
7270
|
-
.react-datepicker__month-text:not([aria-disabled=true]):hover,
|
|
7271
|
-
.react-datepicker__quarter-text:not([aria-disabled=true]):hover,
|
|
7272
|
-
.react-datepicker__year-text:not([aria-disabled=true]):hover {
|
|
7249
|
+
.react-datepicker__day:not([aria-disabled=true]):hover, .react-datepicker__month-text:not([aria-disabled=true]):hover, .react-datepicker__quarter-text:not([aria-disabled=true]):hover, .react-datepicker__year-text:not([aria-disabled=true]):hover {
|
|
7273
7250
|
border-radius: 0.3rem;
|
|
7274
7251
|
background-color: #f0f0f0;
|
|
7275
7252
|
}
|
|
7276
|
-
.react-datepicker__day--today,
|
|
7277
|
-
.react-datepicker__month-text--today,
|
|
7278
|
-
.react-datepicker__quarter-text--today,
|
|
7279
|
-
.react-datepicker__year-text--today {
|
|
7253
|
+
.react-datepicker__day--today, .react-datepicker__month-text--today, .react-datepicker__quarter-text--today, .react-datepicker__year-text--today {
|
|
7280
7254
|
font-weight: bold;
|
|
7281
7255
|
}
|
|
7282
|
-
.react-datepicker__day--highlighted,
|
|
7283
|
-
.react-datepicker__month-text--highlighted,
|
|
7284
|
-
.react-datepicker__quarter-text--highlighted,
|
|
7285
|
-
.react-datepicker__year-text--highlighted {
|
|
7256
|
+
.react-datepicker__day--highlighted, .react-datepicker__month-text--highlighted, .react-datepicker__quarter-text--highlighted, .react-datepicker__year-text--highlighted {
|
|
7286
7257
|
border-radius: 0.3rem;
|
|
7287
7258
|
background-color: #3dcc4a;
|
|
7288
7259
|
color: #fff;
|
|
7289
7260
|
}
|
|
7290
|
-
.react-datepicker__day--highlighted:not([aria-disabled=true]):hover,
|
|
7291
|
-
.react-datepicker__month-text--highlighted:not([aria-disabled=true]):hover,
|
|
7292
|
-
.react-datepicker__quarter-text--highlighted:not([aria-disabled=true]):hover,
|
|
7293
|
-
.react-datepicker__year-text--highlighted:not([aria-disabled=true]):hover {
|
|
7261
|
+
.react-datepicker__day--highlighted:not([aria-disabled=true]):hover, .react-datepicker__month-text--highlighted:not([aria-disabled=true]):hover, .react-datepicker__quarter-text--highlighted:not([aria-disabled=true]):hover, .react-datepicker__year-text--highlighted:not([aria-disabled=true]):hover {
|
|
7294
7262
|
background-color: rgb(49.8551020408, 189.6448979592, 62.5632653061);
|
|
7295
7263
|
}
|
|
7296
|
-
.react-datepicker__day--highlighted-custom-1,
|
|
7297
|
-
.react-datepicker__month-text--highlighted-custom-1,
|
|
7298
|
-
.react-datepicker__quarter-text--highlighted-custom-1,
|
|
7299
|
-
.react-datepicker__year-text--highlighted-custom-1 {
|
|
7264
|
+
.react-datepicker__day--highlighted-custom-1, .react-datepicker__month-text--highlighted-custom-1, .react-datepicker__quarter-text--highlighted-custom-1, .react-datepicker__year-text--highlighted-custom-1 {
|
|
7300
7265
|
color: magenta;
|
|
7301
7266
|
}
|
|
7302
|
-
.react-datepicker__day--highlighted-custom-2,
|
|
7303
|
-
.react-datepicker__month-text--highlighted-custom-2,
|
|
7304
|
-
.react-datepicker__quarter-text--highlighted-custom-2,
|
|
7305
|
-
.react-datepicker__year-text--highlighted-custom-2 {
|
|
7267
|
+
.react-datepicker__day--highlighted-custom-2, .react-datepicker__month-text--highlighted-custom-2, .react-datepicker__quarter-text--highlighted-custom-2, .react-datepicker__year-text--highlighted-custom-2 {
|
|
7306
7268
|
color: green;
|
|
7307
7269
|
}
|
|
7308
|
-
.react-datepicker__day--holidays,
|
|
7309
|
-
.react-datepicker__month-text--holidays,
|
|
7310
|
-
.react-datepicker__quarter-text--holidays,
|
|
7311
|
-
.react-datepicker__year-text--holidays {
|
|
7270
|
+
.react-datepicker__day--holidays, .react-datepicker__month-text--holidays, .react-datepicker__quarter-text--holidays, .react-datepicker__year-text--holidays {
|
|
7312
7271
|
position: relative;
|
|
7313
7272
|
border-radius: 0.3rem;
|
|
7314
7273
|
background-color: #ff6803;
|
|
7315
7274
|
color: #fff;
|
|
7316
7275
|
}
|
|
7317
|
-
.react-datepicker__day--holidays .overlay,
|
|
7318
|
-
.react-datepicker__month-text--holidays .overlay,
|
|
7319
|
-
.react-datepicker__quarter-text--holidays .overlay,
|
|
7320
|
-
.react-datepicker__year-text--holidays .overlay {
|
|
7276
|
+
.react-datepicker__day--holidays .overlay, .react-datepicker__month-text--holidays .overlay, .react-datepicker__quarter-text--holidays .overlay, .react-datepicker__year-text--holidays .overlay {
|
|
7321
7277
|
position: absolute;
|
|
7322
7278
|
bottom: 100%;
|
|
7323
7279
|
left: 50%;
|
|
@@ -7330,89 +7286,43 @@ h2.react-datepicker__current-month {
|
|
|
7330
7286
|
white-space: nowrap;
|
|
7331
7287
|
visibility: hidden;
|
|
7332
7288
|
opacity: 0;
|
|
7333
|
-
-webkit-transition: visibility 0s, opacity 0.3s ease-in-out;
|
|
7334
7289
|
transition: visibility 0s, opacity 0.3s ease-in-out;
|
|
7335
7290
|
}
|
|
7336
|
-
.react-datepicker__day--holidays:not([aria-disabled=true]):hover,
|
|
7337
|
-
.react-datepicker__month-text--holidays:not([aria-disabled=true]):hover,
|
|
7338
|
-
.react-datepicker__quarter-text--holidays:not([aria-disabled=true]):hover,
|
|
7339
|
-
.react-datepicker__year-text--holidays:not([aria-disabled=true]):hover {
|
|
7291
|
+
.react-datepicker__day--holidays:not([aria-disabled=true]):hover, .react-datepicker__month-text--holidays:not([aria-disabled=true]):hover, .react-datepicker__quarter-text--holidays:not([aria-disabled=true]):hover, .react-datepicker__year-text--holidays:not([aria-disabled=true]):hover {
|
|
7340
7292
|
background-color: rgb(207, 82.9642857143, 0);
|
|
7341
7293
|
}
|
|
7342
|
-
.react-datepicker__day--holidays:hover .overlay,
|
|
7343
|
-
.react-datepicker__month-text--holidays:hover .overlay,
|
|
7344
|
-
.react-datepicker__quarter-text--holidays:hover .overlay,
|
|
7345
|
-
.react-datepicker__year-text--holidays:hover .overlay {
|
|
7294
|
+
.react-datepicker__day--holidays:hover .overlay, .react-datepicker__month-text--holidays:hover .overlay, .react-datepicker__quarter-text--holidays:hover .overlay, .react-datepicker__year-text--holidays:hover .overlay {
|
|
7346
7295
|
visibility: visible;
|
|
7347
7296
|
opacity: 1;
|
|
7348
7297
|
}
|
|
7349
|
-
.react-datepicker__day--selected, .react-datepicker__day--in-selecting-range, .react-datepicker__day--in-range,
|
|
7350
|
-
.react-datepicker__month-text--selected,
|
|
7351
|
-
.react-datepicker__month-text--in-selecting-range,
|
|
7352
|
-
.react-datepicker__month-text--in-range,
|
|
7353
|
-
.react-datepicker__quarter-text--selected,
|
|
7354
|
-
.react-datepicker__quarter-text--in-selecting-range,
|
|
7355
|
-
.react-datepicker__quarter-text--in-range,
|
|
7356
|
-
.react-datepicker__year-text--selected,
|
|
7357
|
-
.react-datepicker__year-text--in-selecting-range,
|
|
7358
|
-
.react-datepicker__year-text--in-range {
|
|
7298
|
+
.react-datepicker__day--selected, .react-datepicker__day--in-selecting-range, .react-datepicker__day--in-range, .react-datepicker__month-text--selected, .react-datepicker__month-text--in-selecting-range, .react-datepicker__month-text--in-range, .react-datepicker__quarter-text--selected, .react-datepicker__quarter-text--in-selecting-range, .react-datepicker__quarter-text--in-range, .react-datepicker__year-text--selected, .react-datepicker__year-text--in-selecting-range, .react-datepicker__year-text--in-range {
|
|
7359
7299
|
border-radius: 0.3rem;
|
|
7360
7300
|
background-color: #216ba5;
|
|
7361
7301
|
color: #fff;
|
|
7362
7302
|
}
|
|
7363
|
-
.react-datepicker__day--selected:not([aria-disabled=true]):hover, .react-datepicker__day--in-selecting-range:not([aria-disabled=true]):hover, .react-datepicker__day--in-range:not([aria-disabled=true]):hover,
|
|
7364
|
-
.react-datepicker__month-text--selected:not([aria-disabled=true]):hover,
|
|
7365
|
-
.react-datepicker__month-text--in-selecting-range:not([aria-disabled=true]):hover,
|
|
7366
|
-
.react-datepicker__month-text--in-range:not([aria-disabled=true]):hover,
|
|
7367
|
-
.react-datepicker__quarter-text--selected:not([aria-disabled=true]):hover,
|
|
7368
|
-
.react-datepicker__quarter-text--in-selecting-range:not([aria-disabled=true]):hover,
|
|
7369
|
-
.react-datepicker__quarter-text--in-range:not([aria-disabled=true]):hover,
|
|
7370
|
-
.react-datepicker__year-text--selected:not([aria-disabled=true]):hover,
|
|
7371
|
-
.react-datepicker__year-text--in-selecting-range:not([aria-disabled=true]):hover,
|
|
7372
|
-
.react-datepicker__year-text--in-range:not([aria-disabled=true]):hover {
|
|
7303
|
+
.react-datepicker__day--selected:not([aria-disabled=true]):hover, .react-datepicker__day--in-selecting-range:not([aria-disabled=true]):hover, .react-datepicker__day--in-range:not([aria-disabled=true]):hover, .react-datepicker__month-text--selected:not([aria-disabled=true]):hover, .react-datepicker__month-text--in-selecting-range:not([aria-disabled=true]):hover, .react-datepicker__month-text--in-range:not([aria-disabled=true]):hover, .react-datepicker__quarter-text--selected:not([aria-disabled=true]):hover, .react-datepicker__quarter-text--in-selecting-range:not([aria-disabled=true]):hover, .react-datepicker__quarter-text--in-range:not([aria-disabled=true]):hover, .react-datepicker__year-text--selected:not([aria-disabled=true]):hover, .react-datepicker__year-text--in-selecting-range:not([aria-disabled=true]):hover, .react-datepicker__year-text--in-range:not([aria-disabled=true]):hover {
|
|
7373
7304
|
background-color: rgb(28.75, 93.2196969697, 143.75);
|
|
7374
7305
|
}
|
|
7375
|
-
.react-datepicker__day--keyboard-selected,
|
|
7376
|
-
.react-datepicker__month-text--keyboard-selected,
|
|
7377
|
-
.react-datepicker__quarter-text--keyboard-selected,
|
|
7378
|
-
.react-datepicker__year-text--keyboard-selected {
|
|
7306
|
+
.react-datepicker__day--keyboard-selected, .react-datepicker__month-text--keyboard-selected, .react-datepicker__quarter-text--keyboard-selected, .react-datepicker__year-text--keyboard-selected {
|
|
7379
7307
|
border-radius: 0.3rem;
|
|
7380
7308
|
background-color: rgb(186.25, 217.0833333333, 241.25);
|
|
7381
7309
|
color: rgb(0, 0, 0);
|
|
7382
7310
|
}
|
|
7383
|
-
.react-datepicker__day--keyboard-selected:not([aria-disabled=true]):hover,
|
|
7384
|
-
.react-datepicker__month-text--keyboard-selected:not([aria-disabled=true]):hover,
|
|
7385
|
-
.react-datepicker__quarter-text--keyboard-selected:not([aria-disabled=true]):hover,
|
|
7386
|
-
.react-datepicker__year-text--keyboard-selected:not([aria-disabled=true]):hover {
|
|
7311
|
+
.react-datepicker__day--keyboard-selected:not([aria-disabled=true]):hover, .react-datepicker__month-text--keyboard-selected:not([aria-disabled=true]):hover, .react-datepicker__quarter-text--keyboard-selected:not([aria-disabled=true]):hover, .react-datepicker__year-text--keyboard-selected:not([aria-disabled=true]):hover {
|
|
7387
7312
|
background-color: rgb(28.75, 93.2196969697, 143.75);
|
|
7388
7313
|
}
|
|
7389
|
-
.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range):not(.react-datepicker__month-text--in-range):not(.react-datepicker__quarter-text--in-range):not(.react-datepicker__year-text--in-range),
|
|
7390
|
-
.react-datepicker__month-text--in-selecting-range:not(.react-datepicker__day--in-range):not(.react-datepicker__month-text--in-range):not(.react-datepicker__quarter-text--in-range):not(.react-datepicker__year-text--in-range),
|
|
7391
|
-
.react-datepicker__quarter-text--in-selecting-range:not(.react-datepicker__day--in-range):not(.react-datepicker__month-text--in-range):not(.react-datepicker__quarter-text--in-range):not(.react-datepicker__year-text--in-range),
|
|
7392
|
-
.react-datepicker__year-text--in-selecting-range:not(.react-datepicker__day--in-range):not(.react-datepicker__month-text--in-range):not(.react-datepicker__quarter-text--in-range):not(.react-datepicker__year-text--in-range) {
|
|
7314
|
+
.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range):not(.react-datepicker__month-text--in-range):not(.react-datepicker__quarter-text--in-range):not(.react-datepicker__year-text--in-range), .react-datepicker__month-text--in-selecting-range:not(.react-datepicker__day--in-range):not(.react-datepicker__month-text--in-range):not(.react-datepicker__quarter-text--in-range):not(.react-datepicker__year-text--in-range), .react-datepicker__quarter-text--in-selecting-range:not(.react-datepicker__day--in-range):not(.react-datepicker__month-text--in-range):not(.react-datepicker__quarter-text--in-range):not(.react-datepicker__year-text--in-range), .react-datepicker__year-text--in-selecting-range:not(.react-datepicker__day--in-range):not(.react-datepicker__month-text--in-range):not(.react-datepicker__quarter-text--in-range):not(.react-datepicker__year-text--in-range) {
|
|
7393
7315
|
background-color: rgba(33, 107, 165, 0.5);
|
|
7394
7316
|
}
|
|
7395
|
-
.react-datepicker__month--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range):not(.react-datepicker__month-text--in-selecting-range):not(.react-datepicker__quarter-text--in-selecting-range):not(.react-datepicker__year-text--in-selecting-range), .react-datepicker__year--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range):not(.react-datepicker__month-text--in-selecting-range):not(.react-datepicker__quarter-text--in-selecting-range):not(.react-datepicker__year-text--in-selecting-range),
|
|
7396
|
-
.react-datepicker__month--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range):not(.react-datepicker__month-text--in-selecting-range):not(.react-datepicker__quarter-text--in-selecting-range):not(.react-datepicker__year-text--in-selecting-range),
|
|
7397
|
-
.react-datepicker__year--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range):not(.react-datepicker__month-text--in-selecting-range):not(.react-datepicker__quarter-text--in-selecting-range):not(.react-datepicker__year-text--in-selecting-range),
|
|
7398
|
-
.react-datepicker__month--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range):not(.react-datepicker__month-text--in-selecting-range):not(.react-datepicker__quarter-text--in-selecting-range):not(.react-datepicker__year-text--in-selecting-range),
|
|
7399
|
-
.react-datepicker__year--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range):not(.react-datepicker__month-text--in-selecting-range):not(.react-datepicker__quarter-text--in-selecting-range):not(.react-datepicker__year-text--in-selecting-range),
|
|
7400
|
-
.react-datepicker__month--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range):not(.react-datepicker__month-text--in-selecting-range):not(.react-datepicker__quarter-text--in-selecting-range):not(.react-datepicker__year-text--in-selecting-range),
|
|
7401
|
-
.react-datepicker__year--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range):not(.react-datepicker__month-text--in-selecting-range):not(.react-datepicker__quarter-text--in-selecting-range):not(.react-datepicker__year-text--in-selecting-range) {
|
|
7317
|
+
.react-datepicker__month--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range):not(.react-datepicker__month-text--in-selecting-range):not(.react-datepicker__quarter-text--in-selecting-range):not(.react-datepicker__year-text--in-selecting-range), .react-datepicker__year--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range):not(.react-datepicker__month-text--in-selecting-range):not(.react-datepicker__quarter-text--in-selecting-range):not(.react-datepicker__year-text--in-selecting-range), .react-datepicker__month--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range):not(.react-datepicker__month-text--in-selecting-range):not(.react-datepicker__quarter-text--in-selecting-range):not(.react-datepicker__year-text--in-selecting-range), .react-datepicker__year--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range):not(.react-datepicker__month-text--in-selecting-range):not(.react-datepicker__quarter-text--in-selecting-range):not(.react-datepicker__year-text--in-selecting-range), .react-datepicker__month--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range):not(.react-datepicker__month-text--in-selecting-range):not(.react-datepicker__quarter-text--in-selecting-range):not(.react-datepicker__year-text--in-selecting-range), .react-datepicker__year--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range):not(.react-datepicker__month-text--in-selecting-range):not(.react-datepicker__quarter-text--in-selecting-range):not(.react-datepicker__year-text--in-selecting-range), .react-datepicker__month--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range):not(.react-datepicker__month-text--in-selecting-range):not(.react-datepicker__quarter-text--in-selecting-range):not(.react-datepicker__year-text--in-selecting-range), .react-datepicker__year--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range):not(.react-datepicker__month-text--in-selecting-range):not(.react-datepicker__quarter-text--in-selecting-range):not(.react-datepicker__year-text--in-selecting-range) {
|
|
7402
7318
|
background-color: #f0f0f0;
|
|
7403
7319
|
color: #000;
|
|
7404
7320
|
}
|
|
7405
|
-
.react-datepicker__day--disabled,
|
|
7406
|
-
.react-datepicker__month-text--disabled,
|
|
7407
|
-
.react-datepicker__quarter-text--disabled,
|
|
7408
|
-
.react-datepicker__year-text--disabled {
|
|
7321
|
+
.react-datepicker__day--disabled, .react-datepicker__month-text--disabled, .react-datepicker__quarter-text--disabled, .react-datepicker__year-text--disabled {
|
|
7409
7322
|
cursor: default;
|
|
7410
7323
|
color: #ccc;
|
|
7411
7324
|
}
|
|
7412
|
-
.react-datepicker__day--disabled .overlay,
|
|
7413
|
-
.react-datepicker__month-text--disabled .overlay,
|
|
7414
|
-
.react-datepicker__quarter-text--disabled .overlay,
|
|
7415
|
-
.react-datepicker__year-text--disabled .overlay {
|
|
7325
|
+
.react-datepicker__day--disabled .overlay, .react-datepicker__month-text--disabled .overlay, .react-datepicker__quarter-text--disabled .overlay, .react-datepicker__year-text--disabled .overlay {
|
|
7416
7326
|
position: absolute;
|
|
7417
7327
|
bottom: 70%;
|
|
7418
7328
|
left: 50%;
|
|
@@ -7425,7 +7335,6 @@ h2.react-datepicker__current-month {
|
|
|
7425
7335
|
white-space: nowrap;
|
|
7426
7336
|
visibility: hidden;
|
|
7427
7337
|
opacity: 0;
|
|
7428
|
-
-webkit-transition: visibility 0s, opacity 0.3s ease-in-out;
|
|
7429
7338
|
transition: visibility 0s, opacity 0.3s ease-in-out;
|
|
7430
7339
|
}
|
|
7431
7340
|
.react-datepicker__input-container {
|
|
@@ -7436,43 +7345,29 @@ h2.react-datepicker__current-month {
|
|
|
7436
7345
|
.react-datepicker__input-container .react-datepicker__calendar-icon {
|
|
7437
7346
|
position: absolute;
|
|
7438
7347
|
padding: 0.5rem;
|
|
7439
|
-
|
|
7440
|
-
box-sizing: content-box;
|
|
7348
|
+
box-sizing: content-box;
|
|
7441
7349
|
}
|
|
7442
7350
|
.react-datepicker__view-calendar-icon input {
|
|
7443
7351
|
padding: 6px 10px 5px 25px;
|
|
7444
7352
|
}
|
|
7445
|
-
.react-datepicker__year-read-view,
|
|
7446
|
-
.react-datepicker__month-read-view,
|
|
7447
|
-
.react-datepicker__month-year-read-view {
|
|
7353
|
+
.react-datepicker__year-read-view, .react-datepicker__month-read-view, .react-datepicker__month-year-read-view {
|
|
7448
7354
|
border: 1px solid transparent;
|
|
7449
7355
|
border-radius: 0.3rem;
|
|
7450
7356
|
position: relative;
|
|
7451
7357
|
}
|
|
7452
|
-
.react-datepicker__year-read-view:hover,
|
|
7453
|
-
.react-datepicker__month-read-view:hover,
|
|
7454
|
-
.react-datepicker__month-year-read-view:hover {
|
|
7358
|
+
.react-datepicker__year-read-view:hover, .react-datepicker__month-read-view:hover, .react-datepicker__month-year-read-view:hover {
|
|
7455
7359
|
cursor: pointer;
|
|
7456
7360
|
}
|
|
7457
|
-
.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,
|
|
7458
|
-
.react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,
|
|
7459
|
-
.react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,
|
|
7460
|
-
.react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,
|
|
7461
|
-
.react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,
|
|
7462
|
-
.react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow {
|
|
7361
|
+
.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow, .react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow, .react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow, .react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow, .react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow, .react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow {
|
|
7463
7362
|
border-top-color: rgb(178.5, 178.5, 178.5);
|
|
7464
7363
|
}
|
|
7465
|
-
.react-datepicker__year-read-view--down-arrow,
|
|
7466
|
-
.react-datepicker__month-read-view--down-arrow,
|
|
7467
|
-
.react-datepicker__month-year-read-view--down-arrow {
|
|
7364
|
+
.react-datepicker__year-read-view--down-arrow, .react-datepicker__month-read-view--down-arrow, .react-datepicker__month-year-read-view--down-arrow {
|
|
7468
7365
|
-webkit-transform: rotate(135deg);
|
|
7469
7366
|
transform: rotate(135deg);
|
|
7470
7367
|
right: -16px;
|
|
7471
7368
|
top: 0;
|
|
7472
7369
|
}
|
|
7473
|
-
.react-datepicker__year-dropdown,
|
|
7474
|
-
.react-datepicker__month-dropdown,
|
|
7475
|
-
.react-datepicker__month-year-dropdown {
|
|
7370
|
+
.react-datepicker__year-dropdown, .react-datepicker__month-dropdown, .react-datepicker__month-year-dropdown {
|
|
7476
7371
|
background-color: #f0f0f0;
|
|
7477
7372
|
position: absolute;
|
|
7478
7373
|
width: 50%;
|
|
@@ -7483,60 +7378,41 @@ h2.react-datepicker__current-month {
|
|
|
7483
7378
|
border-radius: 0.3rem;
|
|
7484
7379
|
border: 1px solid #aeaeae;
|
|
7485
7380
|
}
|
|
7486
|
-
.react-datepicker__year-dropdown:hover,
|
|
7487
|
-
.react-datepicker__month-dropdown:hover,
|
|
7488
|
-
.react-datepicker__month-year-dropdown:hover {
|
|
7381
|
+
.react-datepicker__year-dropdown:hover, .react-datepicker__month-dropdown:hover, .react-datepicker__month-year-dropdown:hover {
|
|
7489
7382
|
cursor: pointer;
|
|
7490
7383
|
}
|
|
7491
|
-
.react-datepicker__year-dropdown--scrollable,
|
|
7492
|
-
.react-datepicker__month-dropdown--scrollable,
|
|
7493
|
-
.react-datepicker__month-year-dropdown--scrollable {
|
|
7384
|
+
.react-datepicker__year-dropdown--scrollable, .react-datepicker__month-dropdown--scrollable, .react-datepicker__month-year-dropdown--scrollable {
|
|
7494
7385
|
height: 150px;
|
|
7495
7386
|
overflow-y: scroll;
|
|
7496
7387
|
}
|
|
7497
|
-
.react-datepicker__year-option,
|
|
7498
|
-
.react-datepicker__month-option,
|
|
7499
|
-
.react-datepicker__month-year-option {
|
|
7388
|
+
.react-datepicker__year-option, .react-datepicker__month-option, .react-datepicker__month-year-option {
|
|
7500
7389
|
line-height: 20px;
|
|
7501
7390
|
width: 100%;
|
|
7502
7391
|
display: block;
|
|
7503
7392
|
margin-left: auto;
|
|
7504
7393
|
margin-right: auto;
|
|
7505
7394
|
}
|
|
7506
|
-
.react-datepicker__year-option:first-of-type,
|
|
7507
|
-
.react-datepicker__month-option:first-of-type,
|
|
7508
|
-
.react-datepicker__month-year-option:first-of-type {
|
|
7395
|
+
.react-datepicker__year-option:first-of-type, .react-datepicker__month-option:first-of-type, .react-datepicker__month-year-option:first-of-type {
|
|
7509
7396
|
border-top-left-radius: 0.3rem;
|
|
7510
7397
|
border-top-right-radius: 0.3rem;
|
|
7511
7398
|
}
|
|
7512
|
-
.react-datepicker__year-option:last-of-type,
|
|
7513
|
-
.react-datepicker__month-option:last-of-type,
|
|
7514
|
-
.react-datepicker__month-year-option:last-of-type {
|
|
7399
|
+
.react-datepicker__year-option:last-of-type, .react-datepicker__month-option:last-of-type, .react-datepicker__month-year-option:last-of-type {
|
|
7515
7400
|
-webkit-user-select: none;
|
|
7516
|
-
-moz-user-select: none;
|
|
7517
7401
|
-ms-user-select: none;
|
|
7518
7402
|
user-select: none;
|
|
7519
7403
|
border-bottom-left-radius: 0.3rem;
|
|
7520
7404
|
border-bottom-right-radius: 0.3rem;
|
|
7521
7405
|
}
|
|
7522
|
-
.react-datepicker__year-option:hover,
|
|
7523
|
-
.react-datepicker__month-option:hover,
|
|
7524
|
-
.react-datepicker__month-year-option:hover {
|
|
7406
|
+
.react-datepicker__year-option:hover, .react-datepicker__month-option:hover, .react-datepicker__month-year-option:hover {
|
|
7525
7407
|
background-color: #ccc;
|
|
7526
7408
|
}
|
|
7527
|
-
.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,
|
|
7528
|
-
.react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,
|
|
7529
|
-
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming {
|
|
7409
|
+
.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming, .react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming, .react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming {
|
|
7530
7410
|
border-bottom-color: rgb(178.5, 178.5, 178.5);
|
|
7531
7411
|
}
|
|
7532
|
-
.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,
|
|
7533
|
-
.react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,
|
|
7534
|
-
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous {
|
|
7412
|
+
.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous, .react-datepicker__month-option:hover .react-datepicker__navigation--years-previous, .react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous {
|
|
7535
7413
|
border-top-color: rgb(178.5, 178.5, 178.5);
|
|
7536
7414
|
}
|
|
7537
|
-
.react-datepicker__year-option--selected,
|
|
7538
|
-
.react-datepicker__month-option--selected,
|
|
7539
|
-
.react-datepicker__month-year-option--selected {
|
|
7415
|
+
.react-datepicker__year-option--selected, .react-datepicker__month-option--selected, .react-datepicker__month-year-option--selected {
|
|
7540
7416
|
position: absolute;
|
|
7541
7417
|
left: 15px;
|
|
7542
7418
|
}
|
|
@@ -7591,33 +7467,25 @@ h2.react-datepicker__current-month {
|
|
|
7591
7467
|
background-color: rgba(0, 0, 0, 0.8);
|
|
7592
7468
|
left: 0;
|
|
7593
7469
|
top: 0;
|
|
7594
|
-
-
|
|
7595
|
-
-
|
|
7596
|
-
|
|
7597
|
-
|
|
7598
|
-
-ms-flex-align: center;
|
|
7599
|
-
align-items: center;
|
|
7600
|
-
display: -webkit-box;
|
|
7470
|
+
-ms-flex-pack: center;
|
|
7471
|
+
justify-content: center;
|
|
7472
|
+
-ms-flex-align: center;
|
|
7473
|
+
align-items: center;
|
|
7601
7474
|
display: -ms-flexbox;
|
|
7602
7475
|
display: flex;
|
|
7603
7476
|
z-index: 2147483647;
|
|
7604
7477
|
}
|
|
7605
|
-
.react-datepicker__portal .react-datepicker__day-name,
|
|
7606
|
-
.react-datepicker__portal .react-datepicker__day,
|
|
7607
|
-
.react-datepicker__portal .react-datepicker__time-name {
|
|
7478
|
+
.react-datepicker__portal .react-datepicker__day-name, .react-datepicker__portal .react-datepicker__day, .react-datepicker__portal .react-datepicker__time-name {
|
|
7608
7479
|
width: 3rem;
|
|
7609
7480
|
line-height: 3rem;
|
|
7610
7481
|
}
|
|
7611
7482
|
@media (max-width: 400px), (max-height: 550px) {
|
|
7612
|
-
.react-datepicker__portal .react-datepicker__day-name,
|
|
7613
|
-
.react-datepicker__portal .react-datepicker__day,
|
|
7614
|
-
.react-datepicker__portal .react-datepicker__time-name {
|
|
7483
|
+
.react-datepicker__portal .react-datepicker__day-name, .react-datepicker__portal .react-datepicker__day, .react-datepicker__portal .react-datepicker__time-name {
|
|
7615
7484
|
width: 2rem;
|
|
7616
7485
|
line-height: 2rem;
|
|
7617
7486
|
}
|
|
7618
7487
|
}
|
|
7619
|
-
.react-datepicker__portal .react-datepicker__current-month,
|
|
7620
|
-
.react-datepicker__portal .react-datepicker-time__header {
|
|
7488
|
+
.react-datepicker__portal .react-datepicker__current-month, .react-datepicker__portal .react-datepicker-time__header {
|
|
7621
7489
|
font-size: 1.44rem;
|
|
7622
7490
|
}
|
|
7623
7491
|
.react-datepicker__children-container {
|
|
@@ -7629,8 +7497,7 @@ h2.react-datepicker__current-month {
|
|
|
7629
7497
|
}
|
|
7630
7498
|
.react-datepicker__aria-live {
|
|
7631
7499
|
position: absolute;
|
|
7632
|
-
|
|
7633
|
-
clip-path: circle(0);
|
|
7500
|
+
clip-path: circle(0);
|
|
7634
7501
|
border: 0;
|
|
7635
7502
|
height: 1px;
|
|
7636
7503
|
margin: -1px;
|
|
@@ -7644,16 +7511,13 @@ h2.react-datepicker__current-month {
|
|
|
7644
7511
|
height: 1em;
|
|
7645
7512
|
vertical-align: -0.125em;
|
|
7646
7513
|
}
|
|
7647
|
-
|
|
7648
7514
|
.OmFI-Bfdzgw- {
|
|
7649
7515
|
display: inline-block;
|
|
7650
7516
|
}
|
|
7651
|
-
|
|
7652
7517
|
.HWDFy10kcYA- {
|
|
7653
7518
|
display: block;
|
|
7654
7519
|
width: 100%;
|
|
7655
7520
|
}
|
|
7656
|
-
|
|
7657
7521
|
.Ma55F5Y-XhE-.react-datepicker {
|
|
7658
7522
|
--datepicker-cell-size: calc(var(--space-base) * 2.375);
|
|
7659
7523
|
box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.1), 0px 4px 12px 0px rgba(0, 0, 0, 0.05);
|
|
@@ -7667,17 +7531,14 @@ h2.react-datepicker__current-month {
|
|
|
7667
7531
|
background-color: rgba(255, 255, 255, 1);
|
|
7668
7532
|
background-color: var(--color-surface);
|
|
7669
7533
|
}
|
|
7670
|
-
|
|
7671
7534
|
.Ma55F5Y-XhE-._58kEbTu-IAA- {
|
|
7672
7535
|
box-shadow: none;
|
|
7673
7536
|
}
|
|
7674
|
-
|
|
7675
7537
|
.react-datepicker__input-container,
|
|
7676
7538
|
.react-datepicker-wrapper {
|
|
7677
7539
|
width: 100%;
|
|
7678
7540
|
max-width: 100%;
|
|
7679
7541
|
}
|
|
7680
|
-
|
|
7681
7542
|
.LDxKi0E-1rg- {
|
|
7682
7543
|
position: fixed;
|
|
7683
7544
|
top: 0;
|
|
@@ -7685,14 +7546,12 @@ h2.react-datepicker__current-month {
|
|
|
7685
7546
|
z-index: 1001;
|
|
7686
7547
|
z-index: var(--elevation-modal);
|
|
7687
7548
|
}
|
|
7688
|
-
|
|
7689
7549
|
.Ma55F5Y-XhE- .react-datepicker__header {
|
|
7690
7550
|
padding: 0;
|
|
7691
7551
|
border-bottom: none;
|
|
7692
7552
|
background: rgba(255, 255, 255, 1);
|
|
7693
7553
|
background: var(--color-surface);
|
|
7694
7554
|
}
|
|
7695
|
-
|
|
7696
7555
|
.Epg-Ub8Dn9A- {
|
|
7697
7556
|
display: -ms-flexbox;
|
|
7698
7557
|
display: flex;
|
|
@@ -7701,7 +7560,6 @@ h2.react-datepicker__current-month {
|
|
|
7701
7560
|
-ms-flex-align: center;
|
|
7702
7561
|
align-items: center;
|
|
7703
7562
|
}
|
|
7704
|
-
|
|
7705
7563
|
.Ma55F5Y-XhE- .react-datepicker__day {
|
|
7706
7564
|
display: -ms-inline-flexbox;
|
|
7707
7565
|
display: inline-flex;
|
|
@@ -7722,12 +7580,10 @@ h2.react-datepicker__current-month {
|
|
|
7722
7580
|
-ms-flex-pack: center;
|
|
7723
7581
|
justify-content: center;
|
|
7724
7582
|
}
|
|
7725
|
-
|
|
7726
7583
|
.Ma55F5Y-XhE- .react-datepicker__day--highlighted {
|
|
7727
7584
|
background: hsl(40, 9%, 85%);
|
|
7728
7585
|
background: var(--color-surface--active);
|
|
7729
7586
|
}
|
|
7730
|
-
|
|
7731
7587
|
.Ma55F5Y-XhE- .react-datepicker__day--outside-month {
|
|
7732
7588
|
border-radius: 0;
|
|
7733
7589
|
color: hsl(198, 35%, 21%);
|
|
@@ -7735,24 +7591,20 @@ h2.react-datepicker__current-month {
|
|
|
7735
7591
|
background: hsl(40, 9%, 85%);
|
|
7736
7592
|
background: var(--color-interactive--background);
|
|
7737
7593
|
}
|
|
7738
|
-
|
|
7739
7594
|
.Ma55F5Y-XhE- .react-datepicker__day--disabled {
|
|
7740
7595
|
color: hsl(0, 0%, 58%);
|
|
7741
7596
|
color: var(--color-disabled);
|
|
7742
7597
|
cursor: default;
|
|
7743
7598
|
}
|
|
7744
|
-
|
|
7745
7599
|
.Ma55F5Y-XhE- .react-datepicker__month {
|
|
7746
7600
|
margin: 0;
|
|
7747
7601
|
}
|
|
7748
|
-
|
|
7749
7602
|
.Ma55F5Y-XhE- .react-datepicker__day--selected {
|
|
7750
7603
|
color: rgba(255, 255, 255, 1);
|
|
7751
7604
|
color: var(--color-text--reverse);
|
|
7752
7605
|
background: hsl(107, 58%, 33%);
|
|
7753
7606
|
background: var(--color-interactive);
|
|
7754
7607
|
}
|
|
7755
|
-
|
|
7756
7608
|
.Ma55F5Y-XhE- .react-datepicker__day-names {
|
|
7757
7609
|
display: -ms-flexbox;
|
|
7758
7610
|
display: flex;
|
|
@@ -7769,7 +7621,6 @@ h2.react-datepicker__current-month {
|
|
|
7769
7621
|
-ms-flex-pack: justify;
|
|
7770
7622
|
justify-content: space-between;
|
|
7771
7623
|
}
|
|
7772
|
-
|
|
7773
7624
|
.Ma55F5Y-XhE- .react-datepicker__day-name {
|
|
7774
7625
|
width: auto;
|
|
7775
7626
|
color: hsl(198, 35%, 21%);
|
|
@@ -7777,7 +7628,6 @@ h2.react-datepicker__current-month {
|
|
|
7777
7628
|
-ms-flex: 1;
|
|
7778
7629
|
flex: 1;
|
|
7779
7630
|
}
|
|
7780
|
-
|
|
7781
7631
|
.Ma55F5Y-XhE- .react-datepicker__day:hover,
|
|
7782
7632
|
.Ma55F5Y-XhE- .react-datepicker__day:focus {
|
|
7783
7633
|
border-radius: 8px;
|
|
@@ -7785,33 +7635,28 @@ h2.react-datepicker__current-month {
|
|
|
7785
7635
|
background: hsl(43, 18%, 92%);
|
|
7786
7636
|
background: var(--color-surface--hover);
|
|
7787
7637
|
}
|
|
7788
|
-
|
|
7789
7638
|
.Ma55F5Y-XhE- .react-datepicker__day--outside-month:hover,
|
|
7790
7639
|
.Ma55F5Y-XhE- .react-datepicker__day--outside-month:focus {
|
|
7791
7640
|
border-radius: 0;
|
|
7792
7641
|
background: hsl(43, 5%, 72%);
|
|
7793
7642
|
background: var(--color-interactive--background--hover);
|
|
7794
7643
|
}
|
|
7795
|
-
|
|
7796
7644
|
.Ma55F5Y-XhE- .react-datepicker__day:focus {
|
|
7797
7645
|
position: relative;
|
|
7798
7646
|
box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 1), 0px 0px 0px 4px hsl(198, 12%, 57%);
|
|
7799
7647
|
box-shadow: var(--shadow-focus);
|
|
7800
7648
|
outline: none;
|
|
7801
7649
|
}
|
|
7802
|
-
|
|
7803
7650
|
.Ma55F5Y-XhE- .react-datepicker__day--selected:hover,
|
|
7804
7651
|
.Ma55F5Y-XhE- .react-datepicker__day--selected:focus {
|
|
7805
7652
|
background: hsl(107, 65%, 24%);
|
|
7806
7653
|
background: var(--color-interactive--hover);
|
|
7807
7654
|
}
|
|
7808
|
-
|
|
7809
7655
|
.Ma55F5Y-XhE- .react-datepicker__day--disabled:hover,
|
|
7810
7656
|
.Ma55F5Y-XhE- .react-datepicker__day--disabled:focus {
|
|
7811
7657
|
box-shadow: none;
|
|
7812
7658
|
background: transparent;
|
|
7813
7659
|
}
|
|
7814
|
-
|
|
7815
7660
|
.Ma55F5Y-XhE-
|
|
7816
7661
|
.react-datepicker__day--disabled.react-datepicker__day--outside-month:hover,
|
|
7817
7662
|
.Ma55F5Y-XhE-
|
|
@@ -7820,7 +7665,6 @@ h2.react-datepicker__current-month {
|
|
|
7820
7665
|
background: hsl(0, 0%, 93%);
|
|
7821
7666
|
background: var(--color-disabled--secondary);
|
|
7822
7667
|
}
|
|
7823
|
-
|
|
7824
7668
|
.Wx3NP8La95k- {
|
|
7825
7669
|
margin-top: 1px;
|
|
7826
7670
|
margin-top: var(--space-minuscule);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jobber/components",
|
|
3
|
-
"version": "6.118.1
|
|
3
|
+
"version": "6.118.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -541,5 +541,5 @@
|
|
|
541
541
|
"> 1%",
|
|
542
542
|
"IE 10"
|
|
543
543
|
],
|
|
544
|
-
"gitHead": "
|
|
544
|
+
"gitHead": "4214777d44b28c2e1486c8fba8de3f839199213f"
|
|
545
545
|
}
|