@oneblink/apps-react 7.3.0-beta.2 → 8.0.0-beta.2
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/OneBlinkFormBase.d.ts +1 -2
- package/dist/OneBlinkFormBase.js +137 -135
- package/dist/OneBlinkFormBase.js.map +1 -1
- package/dist/components/renderer/PageFormElements.js +1 -2
- package/dist/components/renderer/PageFormElements.js.map +1 -1
- package/dist/form-elements/FormElementDate.js +32 -35
- package/dist/form-elements/FormElementDate.js.map +1 -1
- package/dist/form-elements/FormElementDateTime.js +31 -39
- package/dist/form-elements/FormElementDateTime.js.map +1 -1
- package/dist/form-elements/FormElementTime.js +29 -32
- package/dist/form-elements/FormElementTime.js.map +1 -1
- package/dist/hooks/form-date-picker/useFormDatePickerProps.d.ts +27 -0
- package/dist/hooks/form-date-picker/useFormDatePickerProps.js +56 -0
- package/dist/hooks/form-date-picker/useFormDatePickerProps.js.map +1 -0
- package/dist/styles.css +0 -915
- package/dist/styles.scss +0 -2
- package/package.json +1 -2
- package/dist/hooks/useFlatpickr.d.ts +0 -14
- package/dist/hooks/useFlatpickr.js +0 -111
- package/dist/hooks/useFlatpickr.js.map +0 -1
- package/dist/hooks/useFlatpickrGuid.d.ts +0 -7
- package/dist/hooks/useFlatpickrGuid.js +0 -12
- package/dist/hooks/useFlatpickrGuid.js.map +0 -1
- package/dist/styles/date.scss +0 -7
package/dist/styles.css
CHANGED
@@ -8840,14 +8840,6 @@ input[type=range]:focus-visible::-moz-range-thumb {
|
|
8840
8840
|
outline: hsl(229, 53%, 53%) auto 3px;
|
8841
8841
|
}
|
8842
8842
|
|
8843
|
-
.ob-input.flatpickr-input[disabled] {
|
8844
|
-
cursor: not-allowed;
|
8845
|
-
}
|
8846
|
-
|
8847
|
-
.ob-form__element .flatpickr-wrapper {
|
8848
|
-
display: block;
|
8849
|
-
}
|
8850
|
-
|
8851
8843
|
.ob-autocomplete .dropdown,
|
8852
8844
|
.ob-autocomplete .dropdown-menu {
|
8853
8845
|
width: 100%;
|
@@ -10060,910 +10052,3 @@ textarea:disabled {
|
|
10060
10052
|
margin-top: 8px;
|
10061
10053
|
margin-bottom: 4px;
|
10062
10054
|
}
|
10063
|
-
|
10064
|
-
.flatpickr-calendar {
|
10065
|
-
background: transparent;
|
10066
|
-
opacity: 0;
|
10067
|
-
display: none;
|
10068
|
-
text-align: center;
|
10069
|
-
visibility: hidden;
|
10070
|
-
padding: 0;
|
10071
|
-
-webkit-animation: none;
|
10072
|
-
animation: none;
|
10073
|
-
direction: ltr;
|
10074
|
-
border: 0;
|
10075
|
-
font-size: 14px;
|
10076
|
-
line-height: 24px;
|
10077
|
-
border-radius: 5px;
|
10078
|
-
position: absolute;
|
10079
|
-
width: 307.875px;
|
10080
|
-
-webkit-box-sizing: border-box;
|
10081
|
-
box-sizing: border-box;
|
10082
|
-
-ms-touch-action: manipulation;
|
10083
|
-
touch-action: manipulation;
|
10084
|
-
background: #fff;
|
10085
|
-
-webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
|
10086
|
-
box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
|
10087
|
-
}
|
10088
|
-
|
10089
|
-
.flatpickr-calendar.open,
|
10090
|
-
.flatpickr-calendar.inline {
|
10091
|
-
opacity: 1;
|
10092
|
-
max-height: 640px;
|
10093
|
-
visibility: visible;
|
10094
|
-
}
|
10095
|
-
|
10096
|
-
.flatpickr-calendar.open {
|
10097
|
-
display: inline-block;
|
10098
|
-
z-index: 99999;
|
10099
|
-
}
|
10100
|
-
|
10101
|
-
.flatpickr-calendar.animate.open {
|
10102
|
-
-webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
|
10103
|
-
animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
|
10104
|
-
}
|
10105
|
-
|
10106
|
-
.flatpickr-calendar.inline {
|
10107
|
-
display: block;
|
10108
|
-
position: relative;
|
10109
|
-
top: 2px;
|
10110
|
-
}
|
10111
|
-
|
10112
|
-
.flatpickr-calendar.static {
|
10113
|
-
position: absolute;
|
10114
|
-
top: calc(100% + 2px);
|
10115
|
-
}
|
10116
|
-
|
10117
|
-
.flatpickr-calendar.static.open {
|
10118
|
-
z-index: 999;
|
10119
|
-
display: block;
|
10120
|
-
}
|
10121
|
-
|
10122
|
-
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
|
10123
|
-
-webkit-box-shadow: none !important;
|
10124
|
-
box-shadow: none !important;
|
10125
|
-
}
|
10126
|
-
|
10127
|
-
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
|
10128
|
-
-webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
|
10129
|
-
box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
|
10130
|
-
}
|
10131
|
-
|
10132
|
-
.flatpickr-calendar .hasWeeks .dayContainer,
|
10133
|
-
.flatpickr-calendar .hasTime .dayContainer {
|
10134
|
-
border-bottom: 0;
|
10135
|
-
border-bottom-right-radius: 0;
|
10136
|
-
border-bottom-left-radius: 0;
|
10137
|
-
}
|
10138
|
-
|
10139
|
-
.flatpickr-calendar .hasWeeks .dayContainer {
|
10140
|
-
border-left: 0;
|
10141
|
-
}
|
10142
|
-
|
10143
|
-
.flatpickr-calendar.hasTime .flatpickr-time {
|
10144
|
-
height: 40px;
|
10145
|
-
border-top: 1px solid #e6e6e6;
|
10146
|
-
}
|
10147
|
-
|
10148
|
-
.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
|
10149
|
-
height: auto;
|
10150
|
-
}
|
10151
|
-
|
10152
|
-
.flatpickr-calendar:before,
|
10153
|
-
.flatpickr-calendar:after {
|
10154
|
-
position: absolute;
|
10155
|
-
display: block;
|
10156
|
-
pointer-events: none;
|
10157
|
-
border: solid transparent;
|
10158
|
-
content: "";
|
10159
|
-
height: 0;
|
10160
|
-
width: 0;
|
10161
|
-
left: 22px;
|
10162
|
-
}
|
10163
|
-
|
10164
|
-
.flatpickr-calendar.rightMost:before,
|
10165
|
-
.flatpickr-calendar.arrowRight:before,
|
10166
|
-
.flatpickr-calendar.rightMost:after,
|
10167
|
-
.flatpickr-calendar.arrowRight:after {
|
10168
|
-
left: auto;
|
10169
|
-
right: 22px;
|
10170
|
-
}
|
10171
|
-
|
10172
|
-
.flatpickr-calendar.arrowCenter:before,
|
10173
|
-
.flatpickr-calendar.arrowCenter:after {
|
10174
|
-
left: 50%;
|
10175
|
-
right: 50%;
|
10176
|
-
}
|
10177
|
-
|
10178
|
-
.flatpickr-calendar:before {
|
10179
|
-
border-width: 5px;
|
10180
|
-
margin: 0 -5px;
|
10181
|
-
}
|
10182
|
-
|
10183
|
-
.flatpickr-calendar:after {
|
10184
|
-
border-width: 4px;
|
10185
|
-
margin: 0 -4px;
|
10186
|
-
}
|
10187
|
-
|
10188
|
-
.flatpickr-calendar.arrowTop:before,
|
10189
|
-
.flatpickr-calendar.arrowTop:after {
|
10190
|
-
bottom: 100%;
|
10191
|
-
}
|
10192
|
-
|
10193
|
-
.flatpickr-calendar.arrowTop:before {
|
10194
|
-
border-bottom-color: #e6e6e6;
|
10195
|
-
}
|
10196
|
-
|
10197
|
-
.flatpickr-calendar.arrowTop:after {
|
10198
|
-
border-bottom-color: #fff;
|
10199
|
-
}
|
10200
|
-
|
10201
|
-
.flatpickr-calendar.arrowBottom:before,
|
10202
|
-
.flatpickr-calendar.arrowBottom:after {
|
10203
|
-
top: 100%;
|
10204
|
-
}
|
10205
|
-
|
10206
|
-
.flatpickr-calendar.arrowBottom:before {
|
10207
|
-
border-top-color: #e6e6e6;
|
10208
|
-
}
|
10209
|
-
|
10210
|
-
.flatpickr-calendar.arrowBottom:after {
|
10211
|
-
border-top-color: #fff;
|
10212
|
-
}
|
10213
|
-
|
10214
|
-
.flatpickr-calendar:focus {
|
10215
|
-
outline: 0;
|
10216
|
-
}
|
10217
|
-
|
10218
|
-
.flatpickr-wrapper {
|
10219
|
-
position: relative;
|
10220
|
-
display: inline-block;
|
10221
|
-
}
|
10222
|
-
|
10223
|
-
.flatpickr-months {
|
10224
|
-
display: -webkit-box;
|
10225
|
-
display: -webkit-flex;
|
10226
|
-
display: -ms-flexbox;
|
10227
|
-
display: flex;
|
10228
|
-
}
|
10229
|
-
|
10230
|
-
.flatpickr-months .flatpickr-month {
|
10231
|
-
background: transparent;
|
10232
|
-
color: rgba(0, 0, 0, 0.9);
|
10233
|
-
fill: rgba(0, 0, 0, 0.9);
|
10234
|
-
height: 34px;
|
10235
|
-
line-height: 1;
|
10236
|
-
text-align: center;
|
10237
|
-
position: relative;
|
10238
|
-
-webkit-user-select: none;
|
10239
|
-
-moz-user-select: none;
|
10240
|
-
-ms-user-select: none;
|
10241
|
-
user-select: none;
|
10242
|
-
overflow: hidden;
|
10243
|
-
-webkit-box-flex: 1;
|
10244
|
-
-webkit-flex: 1;
|
10245
|
-
-ms-flex: 1;
|
10246
|
-
flex: 1;
|
10247
|
-
}
|
10248
|
-
|
10249
|
-
.flatpickr-months .flatpickr-prev-month,
|
10250
|
-
.flatpickr-months .flatpickr-next-month {
|
10251
|
-
-webkit-user-select: none;
|
10252
|
-
-moz-user-select: none;
|
10253
|
-
-ms-user-select: none;
|
10254
|
-
user-select: none;
|
10255
|
-
text-decoration: none;
|
10256
|
-
cursor: pointer;
|
10257
|
-
position: absolute;
|
10258
|
-
top: 0;
|
10259
|
-
height: 34px;
|
10260
|
-
padding: 10px;
|
10261
|
-
z-index: 3;
|
10262
|
-
color: rgba(0, 0, 0, 0.9);
|
10263
|
-
fill: rgba(0, 0, 0, 0.9);
|
10264
|
-
}
|
10265
|
-
|
10266
|
-
.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
|
10267
|
-
.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
|
10268
|
-
display: none;
|
10269
|
-
}
|
10270
|
-
|
10271
|
-
.flatpickr-months .flatpickr-prev-month i,
|
10272
|
-
.flatpickr-months .flatpickr-next-month i {
|
10273
|
-
position: relative;
|
10274
|
-
}
|
10275
|
-
|
10276
|
-
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
|
10277
|
-
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
|
10278
|
-
/*
|
10279
|
-
/*rtl:begin:ignore*/
|
10280
|
-
/*
|
10281
|
-
*/
|
10282
|
-
left: 0;
|
10283
|
-
/*
|
10284
|
-
/*rtl:end:ignore*/
|
10285
|
-
/*
|
10286
|
-
*/
|
10287
|
-
}
|
10288
|
-
|
10289
|
-
/*
|
10290
|
-
/*rtl:begin:ignore*/
|
10291
|
-
/*
|
10292
|
-
/*rtl:end:ignore*/
|
10293
|
-
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
|
10294
|
-
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
|
10295
|
-
/*
|
10296
|
-
/*rtl:begin:ignore*/
|
10297
|
-
/*
|
10298
|
-
*/
|
10299
|
-
right: 0;
|
10300
|
-
/*
|
10301
|
-
/*rtl:end:ignore*/
|
10302
|
-
/*
|
10303
|
-
*/
|
10304
|
-
}
|
10305
|
-
|
10306
|
-
/*
|
10307
|
-
/*rtl:begin:ignore*/
|
10308
|
-
/*
|
10309
|
-
/*rtl:end:ignore*/
|
10310
|
-
.flatpickr-months .flatpickr-prev-month:hover,
|
10311
|
-
.flatpickr-months .flatpickr-next-month:hover {
|
10312
|
-
color: #959ea9;
|
10313
|
-
}
|
10314
|
-
|
10315
|
-
.flatpickr-months .flatpickr-prev-month:hover svg,
|
10316
|
-
.flatpickr-months .flatpickr-next-month:hover svg {
|
10317
|
-
fill: #f64747;
|
10318
|
-
}
|
10319
|
-
|
10320
|
-
.flatpickr-months .flatpickr-prev-month svg,
|
10321
|
-
.flatpickr-months .flatpickr-next-month svg {
|
10322
|
-
width: 14px;
|
10323
|
-
height: 14px;
|
10324
|
-
}
|
10325
|
-
|
10326
|
-
.flatpickr-months .flatpickr-prev-month svg path,
|
10327
|
-
.flatpickr-months .flatpickr-next-month svg path {
|
10328
|
-
-webkit-transition: fill 0.1s;
|
10329
|
-
transition: fill 0.1s;
|
10330
|
-
fill: inherit;
|
10331
|
-
}
|
10332
|
-
|
10333
|
-
.numInputWrapper {
|
10334
|
-
position: relative;
|
10335
|
-
height: auto;
|
10336
|
-
}
|
10337
|
-
|
10338
|
-
.numInputWrapper input,
|
10339
|
-
.numInputWrapper span {
|
10340
|
-
display: inline-block;
|
10341
|
-
}
|
10342
|
-
|
10343
|
-
.numInputWrapper input {
|
10344
|
-
width: 100%;
|
10345
|
-
}
|
10346
|
-
|
10347
|
-
.numInputWrapper input::-ms-clear {
|
10348
|
-
display: none;
|
10349
|
-
}
|
10350
|
-
|
10351
|
-
.numInputWrapper input::-webkit-outer-spin-button,
|
10352
|
-
.numInputWrapper input::-webkit-inner-spin-button {
|
10353
|
-
margin: 0;
|
10354
|
-
-webkit-appearance: none;
|
10355
|
-
}
|
10356
|
-
|
10357
|
-
.numInputWrapper span {
|
10358
|
-
position: absolute;
|
10359
|
-
right: 0;
|
10360
|
-
width: 14px;
|
10361
|
-
padding: 0 4px 0 2px;
|
10362
|
-
height: 50%;
|
10363
|
-
line-height: 50%;
|
10364
|
-
opacity: 0;
|
10365
|
-
cursor: pointer;
|
10366
|
-
border: 1px solid rgba(57, 57, 57, 0.15);
|
10367
|
-
-webkit-box-sizing: border-box;
|
10368
|
-
box-sizing: border-box;
|
10369
|
-
}
|
10370
|
-
|
10371
|
-
.numInputWrapper span:hover {
|
10372
|
-
background: rgba(0, 0, 0, 0.1);
|
10373
|
-
}
|
10374
|
-
|
10375
|
-
.numInputWrapper span:active {
|
10376
|
-
background: rgba(0, 0, 0, 0.2);
|
10377
|
-
}
|
10378
|
-
|
10379
|
-
.numInputWrapper span:after {
|
10380
|
-
display: block;
|
10381
|
-
content: "";
|
10382
|
-
position: absolute;
|
10383
|
-
}
|
10384
|
-
|
10385
|
-
.numInputWrapper span.arrowUp {
|
10386
|
-
top: 0;
|
10387
|
-
border-bottom: 0;
|
10388
|
-
}
|
10389
|
-
|
10390
|
-
.numInputWrapper span.arrowUp:after {
|
10391
|
-
border-left: 4px solid transparent;
|
10392
|
-
border-right: 4px solid transparent;
|
10393
|
-
border-bottom: 4px solid rgba(57, 57, 57, 0.6);
|
10394
|
-
top: 26%;
|
10395
|
-
}
|
10396
|
-
|
10397
|
-
.numInputWrapper span.arrowDown {
|
10398
|
-
top: 50%;
|
10399
|
-
}
|
10400
|
-
|
10401
|
-
.numInputWrapper span.arrowDown:after {
|
10402
|
-
border-left: 4px solid transparent;
|
10403
|
-
border-right: 4px solid transparent;
|
10404
|
-
border-top: 4px solid rgba(57, 57, 57, 0.6);
|
10405
|
-
top: 40%;
|
10406
|
-
}
|
10407
|
-
|
10408
|
-
.numInputWrapper span svg {
|
10409
|
-
width: inherit;
|
10410
|
-
height: auto;
|
10411
|
-
}
|
10412
|
-
|
10413
|
-
.numInputWrapper span svg path {
|
10414
|
-
fill: rgba(0, 0, 0, 0.5);
|
10415
|
-
}
|
10416
|
-
|
10417
|
-
.numInputWrapper:hover {
|
10418
|
-
background: rgba(0, 0, 0, 0.05);
|
10419
|
-
}
|
10420
|
-
|
10421
|
-
.numInputWrapper:hover span {
|
10422
|
-
opacity: 1;
|
10423
|
-
}
|
10424
|
-
|
10425
|
-
.flatpickr-current-month {
|
10426
|
-
font-size: 135%;
|
10427
|
-
line-height: inherit;
|
10428
|
-
font-weight: 300;
|
10429
|
-
color: inherit;
|
10430
|
-
position: absolute;
|
10431
|
-
width: 75%;
|
10432
|
-
left: 12.5%;
|
10433
|
-
padding: 7.48px 0 0 0;
|
10434
|
-
line-height: 1;
|
10435
|
-
height: 34px;
|
10436
|
-
display: inline-block;
|
10437
|
-
text-align: center;
|
10438
|
-
-webkit-transform: translate3d(0px, 0px, 0px);
|
10439
|
-
transform: translate3d(0px, 0px, 0px);
|
10440
|
-
}
|
10441
|
-
|
10442
|
-
.flatpickr-current-month span.cur-month {
|
10443
|
-
font-family: inherit;
|
10444
|
-
font-weight: 700;
|
10445
|
-
color: inherit;
|
10446
|
-
display: inline-block;
|
10447
|
-
margin-left: 0.5ch;
|
10448
|
-
padding: 0;
|
10449
|
-
}
|
10450
|
-
|
10451
|
-
.flatpickr-current-month span.cur-month:hover {
|
10452
|
-
background: rgba(0, 0, 0, 0.05);
|
10453
|
-
}
|
10454
|
-
|
10455
|
-
.flatpickr-current-month .numInputWrapper {
|
10456
|
-
width: 6ch;
|
10457
|
-
width: 7ch\0 ;
|
10458
|
-
display: inline-block;
|
10459
|
-
}
|
10460
|
-
|
10461
|
-
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
|
10462
|
-
border-bottom-color: rgba(0, 0, 0, 0.9);
|
10463
|
-
}
|
10464
|
-
|
10465
|
-
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
|
10466
|
-
border-top-color: rgba(0, 0, 0, 0.9);
|
10467
|
-
}
|
10468
|
-
|
10469
|
-
.flatpickr-current-month input.cur-year {
|
10470
|
-
background: transparent;
|
10471
|
-
-webkit-box-sizing: border-box;
|
10472
|
-
box-sizing: border-box;
|
10473
|
-
color: inherit;
|
10474
|
-
cursor: text;
|
10475
|
-
padding: 0 0 0 0.5ch;
|
10476
|
-
margin: 0;
|
10477
|
-
display: inline-block;
|
10478
|
-
font-size: inherit;
|
10479
|
-
font-family: inherit;
|
10480
|
-
font-weight: 300;
|
10481
|
-
line-height: inherit;
|
10482
|
-
height: auto;
|
10483
|
-
border: 0;
|
10484
|
-
border-radius: 0;
|
10485
|
-
vertical-align: initial;
|
10486
|
-
-webkit-appearance: textfield;
|
10487
|
-
-moz-appearance: textfield;
|
10488
|
-
appearance: textfield;
|
10489
|
-
}
|
10490
|
-
|
10491
|
-
.flatpickr-current-month input.cur-year:focus {
|
10492
|
-
outline: 0;
|
10493
|
-
}
|
10494
|
-
|
10495
|
-
.flatpickr-current-month input.cur-year[disabled],
|
10496
|
-
.flatpickr-current-month input.cur-year[disabled]:hover {
|
10497
|
-
font-size: 100%;
|
10498
|
-
color: rgba(0, 0, 0, 0.5);
|
10499
|
-
background: transparent;
|
10500
|
-
pointer-events: none;
|
10501
|
-
}
|
10502
|
-
|
10503
|
-
.flatpickr-current-month .flatpickr-monthDropdown-months {
|
10504
|
-
appearance: menulist;
|
10505
|
-
background: transparent;
|
10506
|
-
border: none;
|
10507
|
-
border-radius: 0;
|
10508
|
-
box-sizing: border-box;
|
10509
|
-
color: inherit;
|
10510
|
-
cursor: pointer;
|
10511
|
-
font-size: inherit;
|
10512
|
-
font-family: inherit;
|
10513
|
-
font-weight: 300;
|
10514
|
-
height: auto;
|
10515
|
-
line-height: inherit;
|
10516
|
-
margin: -1px 0 0 0;
|
10517
|
-
outline: none;
|
10518
|
-
padding: 0 0 0 0.5ch;
|
10519
|
-
position: relative;
|
10520
|
-
vertical-align: initial;
|
10521
|
-
-webkit-box-sizing: border-box;
|
10522
|
-
-webkit-appearance: menulist;
|
10523
|
-
-moz-appearance: menulist;
|
10524
|
-
width: auto;
|
10525
|
-
}
|
10526
|
-
|
10527
|
-
.flatpickr-current-month .flatpickr-monthDropdown-months:focus,
|
10528
|
-
.flatpickr-current-month .flatpickr-monthDropdown-months:active {
|
10529
|
-
outline: none;
|
10530
|
-
}
|
10531
|
-
|
10532
|
-
.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
|
10533
|
-
background: rgba(0, 0, 0, 0.05);
|
10534
|
-
}
|
10535
|
-
|
10536
|
-
.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
|
10537
|
-
background-color: transparent;
|
10538
|
-
outline: none;
|
10539
|
-
padding: 0;
|
10540
|
-
}
|
10541
|
-
|
10542
|
-
.flatpickr-weekdays {
|
10543
|
-
background: transparent;
|
10544
|
-
text-align: center;
|
10545
|
-
overflow: hidden;
|
10546
|
-
width: 100%;
|
10547
|
-
display: -webkit-box;
|
10548
|
-
display: -webkit-flex;
|
10549
|
-
display: -ms-flexbox;
|
10550
|
-
display: flex;
|
10551
|
-
-webkit-box-align: center;
|
10552
|
-
-webkit-align-items: center;
|
10553
|
-
-ms-flex-align: center;
|
10554
|
-
align-items: center;
|
10555
|
-
height: 28px;
|
10556
|
-
}
|
10557
|
-
|
10558
|
-
.flatpickr-weekdays .flatpickr-weekdaycontainer {
|
10559
|
-
display: -webkit-box;
|
10560
|
-
display: -webkit-flex;
|
10561
|
-
display: -ms-flexbox;
|
10562
|
-
display: flex;
|
10563
|
-
-webkit-box-flex: 1;
|
10564
|
-
-webkit-flex: 1;
|
10565
|
-
-ms-flex: 1;
|
10566
|
-
flex: 1;
|
10567
|
-
}
|
10568
|
-
|
10569
|
-
span.flatpickr-weekday {
|
10570
|
-
cursor: default;
|
10571
|
-
font-size: 90%;
|
10572
|
-
background: transparent;
|
10573
|
-
color: rgba(0, 0, 0, 0.54);
|
10574
|
-
line-height: 1;
|
10575
|
-
margin: 0;
|
10576
|
-
text-align: center;
|
10577
|
-
display: block;
|
10578
|
-
-webkit-box-flex: 1;
|
10579
|
-
-webkit-flex: 1;
|
10580
|
-
-ms-flex: 1;
|
10581
|
-
flex: 1;
|
10582
|
-
font-weight: bolder;
|
10583
|
-
}
|
10584
|
-
|
10585
|
-
.dayContainer,
|
10586
|
-
.flatpickr-weeks {
|
10587
|
-
padding: 1px 0 0 0;
|
10588
|
-
}
|
10589
|
-
|
10590
|
-
.flatpickr-days {
|
10591
|
-
position: relative;
|
10592
|
-
overflow: hidden;
|
10593
|
-
display: -webkit-box;
|
10594
|
-
display: -webkit-flex;
|
10595
|
-
display: -ms-flexbox;
|
10596
|
-
display: flex;
|
10597
|
-
-webkit-box-align: start;
|
10598
|
-
-webkit-align-items: flex-start;
|
10599
|
-
-ms-flex-align: start;
|
10600
|
-
align-items: flex-start;
|
10601
|
-
width: 307.875px;
|
10602
|
-
}
|
10603
|
-
|
10604
|
-
.flatpickr-days:focus {
|
10605
|
-
outline: 0;
|
10606
|
-
}
|
10607
|
-
|
10608
|
-
.dayContainer {
|
10609
|
-
padding: 0;
|
10610
|
-
outline: 0;
|
10611
|
-
text-align: left;
|
10612
|
-
width: 307.875px;
|
10613
|
-
min-width: 307.875px;
|
10614
|
-
max-width: 307.875px;
|
10615
|
-
-webkit-box-sizing: border-box;
|
10616
|
-
box-sizing: border-box;
|
10617
|
-
display: inline-block;
|
10618
|
-
display: -ms-flexbox;
|
10619
|
-
display: -webkit-box;
|
10620
|
-
display: -webkit-flex;
|
10621
|
-
display: flex;
|
10622
|
-
-webkit-flex-wrap: wrap;
|
10623
|
-
flex-wrap: wrap;
|
10624
|
-
-ms-flex-wrap: wrap;
|
10625
|
-
-ms-flex-pack: justify;
|
10626
|
-
-webkit-justify-content: space-around;
|
10627
|
-
justify-content: space-around;
|
10628
|
-
-webkit-transform: translate3d(0px, 0px, 0px);
|
10629
|
-
transform: translate3d(0px, 0px, 0px);
|
10630
|
-
opacity: 1;
|
10631
|
-
}
|
10632
|
-
|
10633
|
-
.dayContainer + .dayContainer {
|
10634
|
-
-webkit-box-shadow: -1px 0 0 #e6e6e6;
|
10635
|
-
box-shadow: -1px 0 0 #e6e6e6;
|
10636
|
-
}
|
10637
|
-
|
10638
|
-
.flatpickr-day {
|
10639
|
-
background: none;
|
10640
|
-
border: 1px solid transparent;
|
10641
|
-
border-radius: 150px;
|
10642
|
-
-webkit-box-sizing: border-box;
|
10643
|
-
box-sizing: border-box;
|
10644
|
-
color: #393939;
|
10645
|
-
cursor: pointer;
|
10646
|
-
font-weight: 400;
|
10647
|
-
width: 14.2857143%;
|
10648
|
-
-webkit-flex-basis: 14.2857143%;
|
10649
|
-
-ms-flex-preferred-size: 14.2857143%;
|
10650
|
-
flex-basis: 14.2857143%;
|
10651
|
-
max-width: 39px;
|
10652
|
-
height: 39px;
|
10653
|
-
line-height: 39px;
|
10654
|
-
margin: 0;
|
10655
|
-
display: inline-block;
|
10656
|
-
position: relative;
|
10657
|
-
-webkit-box-pack: center;
|
10658
|
-
-webkit-justify-content: center;
|
10659
|
-
-ms-flex-pack: center;
|
10660
|
-
justify-content: center;
|
10661
|
-
text-align: center;
|
10662
|
-
}
|
10663
|
-
|
10664
|
-
.flatpickr-day.inRange,
|
10665
|
-
.flatpickr-day.prevMonthDay.inRange,
|
10666
|
-
.flatpickr-day.nextMonthDay.inRange,
|
10667
|
-
.flatpickr-day.today.inRange,
|
10668
|
-
.flatpickr-day.prevMonthDay.today.inRange,
|
10669
|
-
.flatpickr-day.nextMonthDay.today.inRange,
|
10670
|
-
.flatpickr-day:hover,
|
10671
|
-
.flatpickr-day.prevMonthDay:hover,
|
10672
|
-
.flatpickr-day.nextMonthDay:hover,
|
10673
|
-
.flatpickr-day:focus,
|
10674
|
-
.flatpickr-day.prevMonthDay:focus,
|
10675
|
-
.flatpickr-day.nextMonthDay:focus {
|
10676
|
-
cursor: pointer;
|
10677
|
-
outline: 0;
|
10678
|
-
background: #e6e6e6;
|
10679
|
-
border-color: #e6e6e6;
|
10680
|
-
}
|
10681
|
-
|
10682
|
-
.flatpickr-day.today {
|
10683
|
-
border-color: #959ea9;
|
10684
|
-
}
|
10685
|
-
|
10686
|
-
.flatpickr-day.today:hover,
|
10687
|
-
.flatpickr-day.today:focus {
|
10688
|
-
border-color: #959ea9;
|
10689
|
-
background: #959ea9;
|
10690
|
-
color: #fff;
|
10691
|
-
}
|
10692
|
-
|
10693
|
-
.flatpickr-day.selected,
|
10694
|
-
.flatpickr-day.startRange,
|
10695
|
-
.flatpickr-day.endRange,
|
10696
|
-
.flatpickr-day.selected.inRange,
|
10697
|
-
.flatpickr-day.startRange.inRange,
|
10698
|
-
.flatpickr-day.endRange.inRange,
|
10699
|
-
.flatpickr-day.selected:focus,
|
10700
|
-
.flatpickr-day.startRange:focus,
|
10701
|
-
.flatpickr-day.endRange:focus,
|
10702
|
-
.flatpickr-day.selected:hover,
|
10703
|
-
.flatpickr-day.startRange:hover,
|
10704
|
-
.flatpickr-day.endRange:hover,
|
10705
|
-
.flatpickr-day.selected.prevMonthDay,
|
10706
|
-
.flatpickr-day.startRange.prevMonthDay,
|
10707
|
-
.flatpickr-day.endRange.prevMonthDay,
|
10708
|
-
.flatpickr-day.selected.nextMonthDay,
|
10709
|
-
.flatpickr-day.startRange.nextMonthDay,
|
10710
|
-
.flatpickr-day.endRange.nextMonthDay {
|
10711
|
-
background: #569ff7;
|
10712
|
-
-webkit-box-shadow: none;
|
10713
|
-
box-shadow: none;
|
10714
|
-
color: #fff;
|
10715
|
-
border-color: #569ff7;
|
10716
|
-
}
|
10717
|
-
|
10718
|
-
.flatpickr-day.selected.startRange,
|
10719
|
-
.flatpickr-day.startRange.startRange,
|
10720
|
-
.flatpickr-day.endRange.startRange {
|
10721
|
-
border-radius: 50px 0 0 50px;
|
10722
|
-
}
|
10723
|
-
|
10724
|
-
.flatpickr-day.selected.endRange,
|
10725
|
-
.flatpickr-day.startRange.endRange,
|
10726
|
-
.flatpickr-day.endRange.endRange {
|
10727
|
-
border-radius: 0 50px 50px 0;
|
10728
|
-
}
|
10729
|
-
|
10730
|
-
.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
|
10731
|
-
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
|
10732
|
-
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
|
10733
|
-
-webkit-box-shadow: -10px 0 0 #569ff7;
|
10734
|
-
box-shadow: -10px 0 0 #569ff7;
|
10735
|
-
}
|
10736
|
-
|
10737
|
-
.flatpickr-day.selected.startRange.endRange,
|
10738
|
-
.flatpickr-day.startRange.startRange.endRange,
|
10739
|
-
.flatpickr-day.endRange.startRange.endRange {
|
10740
|
-
border-radius: 50px;
|
10741
|
-
}
|
10742
|
-
|
10743
|
-
.flatpickr-day.inRange {
|
10744
|
-
border-radius: 0;
|
10745
|
-
-webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
|
10746
|
-
box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
|
10747
|
-
}
|
10748
|
-
|
10749
|
-
.flatpickr-day.flatpickr-disabled,
|
10750
|
-
.flatpickr-day.flatpickr-disabled:hover,
|
10751
|
-
.flatpickr-day.prevMonthDay,
|
10752
|
-
.flatpickr-day.nextMonthDay,
|
10753
|
-
.flatpickr-day.notAllowed,
|
10754
|
-
.flatpickr-day.notAllowed.prevMonthDay,
|
10755
|
-
.flatpickr-day.notAllowed.nextMonthDay {
|
10756
|
-
color: rgba(57, 57, 57, 0.3);
|
10757
|
-
background: transparent;
|
10758
|
-
border-color: transparent;
|
10759
|
-
cursor: default;
|
10760
|
-
}
|
10761
|
-
|
10762
|
-
.flatpickr-day.flatpickr-disabled,
|
10763
|
-
.flatpickr-day.flatpickr-disabled:hover {
|
10764
|
-
cursor: not-allowed;
|
10765
|
-
color: rgba(57, 57, 57, 0.1);
|
10766
|
-
}
|
10767
|
-
|
10768
|
-
.flatpickr-day.week.selected {
|
10769
|
-
border-radius: 0;
|
10770
|
-
-webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
|
10771
|
-
box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
|
10772
|
-
}
|
10773
|
-
|
10774
|
-
.flatpickr-day.hidden {
|
10775
|
-
visibility: hidden;
|
10776
|
-
}
|
10777
|
-
|
10778
|
-
.rangeMode .flatpickr-day {
|
10779
|
-
margin-top: 1px;
|
10780
|
-
}
|
10781
|
-
|
10782
|
-
.flatpickr-weekwrapper {
|
10783
|
-
float: left;
|
10784
|
-
}
|
10785
|
-
|
10786
|
-
.flatpickr-weekwrapper .flatpickr-weeks {
|
10787
|
-
padding: 0 12px;
|
10788
|
-
-webkit-box-shadow: 1px 0 0 #e6e6e6;
|
10789
|
-
box-shadow: 1px 0 0 #e6e6e6;
|
10790
|
-
}
|
10791
|
-
|
10792
|
-
.flatpickr-weekwrapper .flatpickr-weekday {
|
10793
|
-
float: none;
|
10794
|
-
width: 100%;
|
10795
|
-
line-height: 28px;
|
10796
|
-
}
|
10797
|
-
|
10798
|
-
.flatpickr-weekwrapper span.flatpickr-day,
|
10799
|
-
.flatpickr-weekwrapper span.flatpickr-day:hover {
|
10800
|
-
display: block;
|
10801
|
-
width: 100%;
|
10802
|
-
max-width: none;
|
10803
|
-
color: rgba(57, 57, 57, 0.3);
|
10804
|
-
background: transparent;
|
10805
|
-
cursor: default;
|
10806
|
-
border: none;
|
10807
|
-
}
|
10808
|
-
|
10809
|
-
.flatpickr-innerContainer {
|
10810
|
-
display: block;
|
10811
|
-
display: -webkit-box;
|
10812
|
-
display: -webkit-flex;
|
10813
|
-
display: -ms-flexbox;
|
10814
|
-
display: flex;
|
10815
|
-
-webkit-box-sizing: border-box;
|
10816
|
-
box-sizing: border-box;
|
10817
|
-
overflow: hidden;
|
10818
|
-
}
|
10819
|
-
|
10820
|
-
.flatpickr-rContainer {
|
10821
|
-
display: inline-block;
|
10822
|
-
padding: 0;
|
10823
|
-
-webkit-box-sizing: border-box;
|
10824
|
-
box-sizing: border-box;
|
10825
|
-
}
|
10826
|
-
|
10827
|
-
.flatpickr-time {
|
10828
|
-
text-align: center;
|
10829
|
-
outline: 0;
|
10830
|
-
display: block;
|
10831
|
-
height: 0;
|
10832
|
-
line-height: 40px;
|
10833
|
-
max-height: 40px;
|
10834
|
-
-webkit-box-sizing: border-box;
|
10835
|
-
box-sizing: border-box;
|
10836
|
-
overflow: hidden;
|
10837
|
-
display: -webkit-box;
|
10838
|
-
display: -webkit-flex;
|
10839
|
-
display: -ms-flexbox;
|
10840
|
-
display: flex;
|
10841
|
-
}
|
10842
|
-
|
10843
|
-
.flatpickr-time:after {
|
10844
|
-
content: "";
|
10845
|
-
display: table;
|
10846
|
-
clear: both;
|
10847
|
-
}
|
10848
|
-
|
10849
|
-
.flatpickr-time .numInputWrapper {
|
10850
|
-
-webkit-box-flex: 1;
|
10851
|
-
-webkit-flex: 1;
|
10852
|
-
-ms-flex: 1;
|
10853
|
-
flex: 1;
|
10854
|
-
width: 40%;
|
10855
|
-
height: 40px;
|
10856
|
-
float: left;
|
10857
|
-
}
|
10858
|
-
|
10859
|
-
.flatpickr-time .numInputWrapper span.arrowUp:after {
|
10860
|
-
border-bottom-color: #393939;
|
10861
|
-
}
|
10862
|
-
|
10863
|
-
.flatpickr-time .numInputWrapper span.arrowDown:after {
|
10864
|
-
border-top-color: #393939;
|
10865
|
-
}
|
10866
|
-
|
10867
|
-
.flatpickr-time.hasSeconds .numInputWrapper {
|
10868
|
-
width: 26%;
|
10869
|
-
}
|
10870
|
-
|
10871
|
-
.flatpickr-time.time24hr .numInputWrapper {
|
10872
|
-
width: 49%;
|
10873
|
-
}
|
10874
|
-
|
10875
|
-
.flatpickr-time input {
|
10876
|
-
background: transparent;
|
10877
|
-
-webkit-box-shadow: none;
|
10878
|
-
box-shadow: none;
|
10879
|
-
border: 0;
|
10880
|
-
border-radius: 0;
|
10881
|
-
text-align: center;
|
10882
|
-
margin: 0;
|
10883
|
-
padding: 0;
|
10884
|
-
height: inherit;
|
10885
|
-
line-height: inherit;
|
10886
|
-
color: #393939;
|
10887
|
-
font-size: 14px;
|
10888
|
-
position: relative;
|
10889
|
-
-webkit-box-sizing: border-box;
|
10890
|
-
box-sizing: border-box;
|
10891
|
-
-webkit-appearance: textfield;
|
10892
|
-
-moz-appearance: textfield;
|
10893
|
-
appearance: textfield;
|
10894
|
-
}
|
10895
|
-
|
10896
|
-
.flatpickr-time input.flatpickr-hour {
|
10897
|
-
font-weight: bold;
|
10898
|
-
}
|
10899
|
-
|
10900
|
-
.flatpickr-time input.flatpickr-minute,
|
10901
|
-
.flatpickr-time input.flatpickr-second {
|
10902
|
-
font-weight: 400;
|
10903
|
-
}
|
10904
|
-
|
10905
|
-
.flatpickr-time input:focus {
|
10906
|
-
outline: 0;
|
10907
|
-
border: 0;
|
10908
|
-
}
|
10909
|
-
|
10910
|
-
.flatpickr-time .flatpickr-time-separator,
|
10911
|
-
.flatpickr-time .flatpickr-am-pm {
|
10912
|
-
height: inherit;
|
10913
|
-
float: left;
|
10914
|
-
line-height: inherit;
|
10915
|
-
color: #393939;
|
10916
|
-
font-weight: bold;
|
10917
|
-
width: 2%;
|
10918
|
-
-webkit-user-select: none;
|
10919
|
-
-moz-user-select: none;
|
10920
|
-
-ms-user-select: none;
|
10921
|
-
user-select: none;
|
10922
|
-
-webkit-align-self: center;
|
10923
|
-
-ms-flex-item-align: center;
|
10924
|
-
align-self: center;
|
10925
|
-
}
|
10926
|
-
|
10927
|
-
.flatpickr-time .flatpickr-am-pm {
|
10928
|
-
outline: 0;
|
10929
|
-
width: 18%;
|
10930
|
-
cursor: pointer;
|
10931
|
-
text-align: center;
|
10932
|
-
font-weight: 400;
|
10933
|
-
}
|
10934
|
-
|
10935
|
-
.flatpickr-time input:hover,
|
10936
|
-
.flatpickr-time .flatpickr-am-pm:hover,
|
10937
|
-
.flatpickr-time input:focus,
|
10938
|
-
.flatpickr-time .flatpickr-am-pm:focus {
|
10939
|
-
background: #eee;
|
10940
|
-
}
|
10941
|
-
|
10942
|
-
.flatpickr-input[readonly] {
|
10943
|
-
cursor: pointer;
|
10944
|
-
}
|
10945
|
-
|
10946
|
-
@-webkit-keyframes fpFadeInDown {
|
10947
|
-
from {
|
10948
|
-
opacity: 0;
|
10949
|
-
-webkit-transform: translate3d(0, -20px, 0);
|
10950
|
-
transform: translate3d(0, -20px, 0);
|
10951
|
-
}
|
10952
|
-
to {
|
10953
|
-
opacity: 1;
|
10954
|
-
-webkit-transform: translate3d(0, 0, 0);
|
10955
|
-
transform: translate3d(0, 0, 0);
|
10956
|
-
}
|
10957
|
-
}
|
10958
|
-
@keyframes fpFadeInDown {
|
10959
|
-
from {
|
10960
|
-
opacity: 0;
|
10961
|
-
-webkit-transform: translate3d(0, -20px, 0);
|
10962
|
-
transform: translate3d(0, -20px, 0);
|
10963
|
-
}
|
10964
|
-
to {
|
10965
|
-
opacity: 1;
|
10966
|
-
-webkit-transform: translate3d(0, 0, 0);
|
10967
|
-
transform: translate3d(0, 0, 0);
|
10968
|
-
}
|
10969
|
-
}
|