@ncds/ui-admin 1.0.0 → 1.0.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/cjs/src/components/date-picker/DatePicker.js +0 -1
- package/dist/cjs/src/components/tab/HorizontalTab.js +0 -1
- package/dist/esm/src/components/date-picker/DatePicker.js +0 -1
- package/dist/esm/src/components/tab/HorizontalTab.js +0 -1
- package/dist/types/src/components/button/ButtonGroup.d.ts +1 -1
- package/dist/types/src/components/date-picker/DatePicker.d.ts +0 -1
- package/dist/types/src/components/select/Select.d.ts +3 -3
- package/dist/types/src/components/tab/HorizontalTab.d.ts +0 -1
- package/dist/ui-admin/assets/styles/style.css +1176 -1
- package/package.json +11 -6
|
@@ -6,7 +6,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.DatePicker = void 0;
|
|
7
7
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
8
8
|
var _classnames = _interopRequireDefault(require("classnames"));
|
|
9
|
-
require("flatpickr/dist/flatpickr.css");
|
|
10
9
|
var _ko = require("flatpickr/dist/l10n/ko");
|
|
11
10
|
var _react = require("react");
|
|
12
11
|
var _reactFlatpickr = _interopRequireDefault(require("react-flatpickr"));
|
|
@@ -7,7 +7,6 @@ exports.HorizontalTab = void 0;
|
|
|
7
7
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
8
8
|
var _classnames = _interopRequireDefault(require("classnames"));
|
|
9
9
|
var _lodash = require("lodash");
|
|
10
|
-
require("swiper/css");
|
|
11
10
|
var _react = require("swiper/react");
|
|
12
11
|
var _TabButton = require("./TabButton");
|
|
13
12
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
@@ -18,7 +18,6 @@ var __rest = this && this.__rest || function (s, e) {
|
|
|
18
18
|
};
|
|
19
19
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
20
20
|
import classNames from 'classnames';
|
|
21
|
-
import 'flatpickr/dist/flatpickr.css';
|
|
22
21
|
import { Korean } from 'flatpickr/dist/l10n/ko';
|
|
23
22
|
import { forwardRef } from 'react';
|
|
24
23
|
import Flatpickr from 'react-flatpickr';
|
|
@@ -11,7 +11,6 @@ var __assign = this && this.__assign || function () {
|
|
|
11
11
|
import { Fragment as _Fragment, jsx as _jsx } from "react/jsx-runtime";
|
|
12
12
|
import classNames from 'classnames';
|
|
13
13
|
import { uniqueId } from 'lodash';
|
|
14
|
-
import 'swiper/css';
|
|
15
14
|
import { Swiper, SwiperSlide } from 'swiper/react';
|
|
16
15
|
import { TabButton } from './TabButton';
|
|
17
16
|
export var HorizontalTab = function (_a) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React, { ComponentProps } from 'react';
|
|
2
2
|
import { Size } from '../../../constant/size';
|
|
3
|
-
import { SideSlotType } from '
|
|
3
|
+
import { SideSlotType } from '../../types/side-slot';
|
|
4
4
|
export type ButtonGroupSize = Extract<Size, 'xs' | 'sm' | 'md' | 'lg'>;
|
|
5
5
|
interface SideCommon {
|
|
6
6
|
position?: 'leading' | 'trailing';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { IconName } from '@ncds/ui-admin-icon';
|
|
2
2
|
import { COLOR } from '@ncds/ui-admin/constant/color';
|
|
3
3
|
import { Size } from '@ncds/ui/constant/size';
|
|
4
4
|
import { ComponentPropsWithRef, PropsWithChildren } from 'react';
|
|
@@ -8,13 +8,13 @@ export type OptionType = {
|
|
|
8
8
|
id: string | number;
|
|
9
9
|
label: string;
|
|
10
10
|
};
|
|
11
|
-
type
|
|
11
|
+
type IconSlot = {
|
|
12
12
|
icon: IconName;
|
|
13
13
|
color?: keyof typeof COLOR;
|
|
14
14
|
size?: number;
|
|
15
15
|
};
|
|
16
16
|
export interface SelectProps extends PropsWithChildren<BaseSelectProps> {
|
|
17
|
-
icon?:
|
|
17
|
+
icon?: IconSlot;
|
|
18
18
|
placeholder?: string;
|
|
19
19
|
disabledPlaceholder?: boolean;
|
|
20
20
|
hintText?: string;
|
|
@@ -179,6 +179,7 @@ button {
|
|
|
179
179
|
width: 1px;
|
|
180
180
|
height: 1px;
|
|
181
181
|
clip: rect(0, 0, 0, 0);
|
|
182
|
+
z-index: -9999;
|
|
182
183
|
}
|
|
183
184
|
|
|
184
185
|
.bold {
|
|
@@ -3650,4 +3651,1178 @@ button {
|
|
|
3650
3651
|
}
|
|
3651
3652
|
.ncua-progress-circle-half-circle .ncua-progress-circle__label-container {
|
|
3652
3653
|
top: 80%;
|
|
3653
|
-
}
|
|
3654
|
+
}
|
|
3655
|
+
|
|
3656
|
+
.flatpickr-calendar {
|
|
3657
|
+
background: transparent;
|
|
3658
|
+
opacity: 0;
|
|
3659
|
+
display: none;
|
|
3660
|
+
text-align: center;
|
|
3661
|
+
visibility: hidden;
|
|
3662
|
+
padding: 0;
|
|
3663
|
+
-webkit-animation: none;
|
|
3664
|
+
animation: none;
|
|
3665
|
+
direction: ltr;
|
|
3666
|
+
border: 0;
|
|
3667
|
+
font-size: 14px;
|
|
3668
|
+
line-height: 24px;
|
|
3669
|
+
border-radius: 5px;
|
|
3670
|
+
position: absolute;
|
|
3671
|
+
width: 307.875px;
|
|
3672
|
+
-webkit-box-sizing: border-box;
|
|
3673
|
+
box-sizing: border-box;
|
|
3674
|
+
-ms-touch-action: manipulation;
|
|
3675
|
+
touch-action: manipulation;
|
|
3676
|
+
background: #fff;
|
|
3677
|
+
-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);
|
|
3678
|
+
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);
|
|
3679
|
+
}
|
|
3680
|
+
|
|
3681
|
+
.flatpickr-calendar.open,
|
|
3682
|
+
.flatpickr-calendar.inline {
|
|
3683
|
+
opacity: 1;
|
|
3684
|
+
max-height: 640px;
|
|
3685
|
+
visibility: visible;
|
|
3686
|
+
}
|
|
3687
|
+
|
|
3688
|
+
.flatpickr-calendar.open {
|
|
3689
|
+
display: inline-block;
|
|
3690
|
+
z-index: 99999;
|
|
3691
|
+
}
|
|
3692
|
+
|
|
3693
|
+
.flatpickr-calendar.animate.open {
|
|
3694
|
+
-webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
|
|
3695
|
+
animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
|
|
3696
|
+
}
|
|
3697
|
+
|
|
3698
|
+
.flatpickr-calendar.inline {
|
|
3699
|
+
display: block;
|
|
3700
|
+
position: relative;
|
|
3701
|
+
top: 2px;
|
|
3702
|
+
}
|
|
3703
|
+
|
|
3704
|
+
.flatpickr-calendar.static {
|
|
3705
|
+
position: absolute;
|
|
3706
|
+
top: calc(100% + 2px);
|
|
3707
|
+
}
|
|
3708
|
+
|
|
3709
|
+
.flatpickr-calendar.static.open {
|
|
3710
|
+
z-index: 999;
|
|
3711
|
+
display: block;
|
|
3712
|
+
}
|
|
3713
|
+
|
|
3714
|
+
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
|
|
3715
|
+
-webkit-box-shadow: none !important;
|
|
3716
|
+
box-shadow: none !important;
|
|
3717
|
+
}
|
|
3718
|
+
|
|
3719
|
+
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
|
|
3720
|
+
-webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
|
|
3721
|
+
box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
|
|
3722
|
+
}
|
|
3723
|
+
|
|
3724
|
+
.flatpickr-calendar .hasWeeks .dayContainer,
|
|
3725
|
+
.flatpickr-calendar .hasTime .dayContainer {
|
|
3726
|
+
border-bottom: 0;
|
|
3727
|
+
border-bottom-right-radius: 0;
|
|
3728
|
+
border-bottom-left-radius: 0;
|
|
3729
|
+
}
|
|
3730
|
+
|
|
3731
|
+
.flatpickr-calendar .hasWeeks .dayContainer {
|
|
3732
|
+
border-left: 0;
|
|
3733
|
+
}
|
|
3734
|
+
|
|
3735
|
+
.flatpickr-calendar.hasTime .flatpickr-time {
|
|
3736
|
+
height: 40px;
|
|
3737
|
+
border-top: 1px solid #e6e6e6;
|
|
3738
|
+
}
|
|
3739
|
+
|
|
3740
|
+
.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
|
|
3741
|
+
height: auto;
|
|
3742
|
+
}
|
|
3743
|
+
|
|
3744
|
+
.flatpickr-calendar:before,
|
|
3745
|
+
.flatpickr-calendar:after {
|
|
3746
|
+
position: absolute;
|
|
3747
|
+
display: block;
|
|
3748
|
+
pointer-events: none;
|
|
3749
|
+
border: solid transparent;
|
|
3750
|
+
content: "";
|
|
3751
|
+
height: 0;
|
|
3752
|
+
width: 0;
|
|
3753
|
+
left: 22px;
|
|
3754
|
+
}
|
|
3755
|
+
|
|
3756
|
+
.flatpickr-calendar.rightMost:before,
|
|
3757
|
+
.flatpickr-calendar.arrowRight:before,
|
|
3758
|
+
.flatpickr-calendar.rightMost:after,
|
|
3759
|
+
.flatpickr-calendar.arrowRight:after {
|
|
3760
|
+
left: auto;
|
|
3761
|
+
right: 22px;
|
|
3762
|
+
}
|
|
3763
|
+
|
|
3764
|
+
.flatpickr-calendar.arrowCenter:before,
|
|
3765
|
+
.flatpickr-calendar.arrowCenter:after {
|
|
3766
|
+
left: 50%;
|
|
3767
|
+
right: 50%;
|
|
3768
|
+
}
|
|
3769
|
+
|
|
3770
|
+
.flatpickr-calendar:before {
|
|
3771
|
+
border-width: 5px;
|
|
3772
|
+
margin: 0 -5px;
|
|
3773
|
+
}
|
|
3774
|
+
|
|
3775
|
+
.flatpickr-calendar:after {
|
|
3776
|
+
border-width: 4px;
|
|
3777
|
+
margin: 0 -4px;
|
|
3778
|
+
}
|
|
3779
|
+
|
|
3780
|
+
.flatpickr-calendar.arrowTop:before,
|
|
3781
|
+
.flatpickr-calendar.arrowTop:after {
|
|
3782
|
+
bottom: 100%;
|
|
3783
|
+
}
|
|
3784
|
+
|
|
3785
|
+
.flatpickr-calendar.arrowTop:before {
|
|
3786
|
+
border-bottom-color: #e6e6e6;
|
|
3787
|
+
}
|
|
3788
|
+
|
|
3789
|
+
.flatpickr-calendar.arrowTop:after {
|
|
3790
|
+
border-bottom-color: #fff;
|
|
3791
|
+
}
|
|
3792
|
+
|
|
3793
|
+
.flatpickr-calendar.arrowBottom:before,
|
|
3794
|
+
.flatpickr-calendar.arrowBottom:after {
|
|
3795
|
+
top: 100%;
|
|
3796
|
+
}
|
|
3797
|
+
|
|
3798
|
+
.flatpickr-calendar.arrowBottom:before {
|
|
3799
|
+
border-top-color: #e6e6e6;
|
|
3800
|
+
}
|
|
3801
|
+
|
|
3802
|
+
.flatpickr-calendar.arrowBottom:after {
|
|
3803
|
+
border-top-color: #fff;
|
|
3804
|
+
}
|
|
3805
|
+
|
|
3806
|
+
.flatpickr-calendar:focus {
|
|
3807
|
+
outline: 0;
|
|
3808
|
+
}
|
|
3809
|
+
|
|
3810
|
+
.flatpickr-wrapper {
|
|
3811
|
+
position: relative;
|
|
3812
|
+
display: inline-block;
|
|
3813
|
+
}
|
|
3814
|
+
|
|
3815
|
+
.flatpickr-months {
|
|
3816
|
+
display: -webkit-box;
|
|
3817
|
+
display: -webkit-flex;
|
|
3818
|
+
display: -ms-flexbox;
|
|
3819
|
+
display: flex;
|
|
3820
|
+
}
|
|
3821
|
+
|
|
3822
|
+
.flatpickr-months .flatpickr-month {
|
|
3823
|
+
background: transparent;
|
|
3824
|
+
color: rgba(0, 0, 0, 0.9);
|
|
3825
|
+
fill: rgba(0, 0, 0, 0.9);
|
|
3826
|
+
height: 34px;
|
|
3827
|
+
line-height: 1;
|
|
3828
|
+
text-align: center;
|
|
3829
|
+
position: relative;
|
|
3830
|
+
-webkit-user-select: none;
|
|
3831
|
+
-moz-user-select: none;
|
|
3832
|
+
-ms-user-select: none;
|
|
3833
|
+
user-select: none;
|
|
3834
|
+
overflow: hidden;
|
|
3835
|
+
-webkit-box-flex: 1;
|
|
3836
|
+
-webkit-flex: 1;
|
|
3837
|
+
-ms-flex: 1;
|
|
3838
|
+
flex: 1;
|
|
3839
|
+
}
|
|
3840
|
+
|
|
3841
|
+
.flatpickr-months .flatpickr-prev-month,
|
|
3842
|
+
.flatpickr-months .flatpickr-next-month {
|
|
3843
|
+
-webkit-user-select: none;
|
|
3844
|
+
-moz-user-select: none;
|
|
3845
|
+
-ms-user-select: none;
|
|
3846
|
+
user-select: none;
|
|
3847
|
+
text-decoration: none;
|
|
3848
|
+
cursor: pointer;
|
|
3849
|
+
position: absolute;
|
|
3850
|
+
top: 0;
|
|
3851
|
+
height: 34px;
|
|
3852
|
+
padding: 10px;
|
|
3853
|
+
z-index: 3;
|
|
3854
|
+
color: rgba(0, 0, 0, 0.9);
|
|
3855
|
+
fill: rgba(0, 0, 0, 0.9);
|
|
3856
|
+
}
|
|
3857
|
+
|
|
3858
|
+
.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
|
|
3859
|
+
.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
|
|
3860
|
+
display: none;
|
|
3861
|
+
}
|
|
3862
|
+
|
|
3863
|
+
.flatpickr-months .flatpickr-prev-month i,
|
|
3864
|
+
.flatpickr-months .flatpickr-next-month i {
|
|
3865
|
+
position: relative;
|
|
3866
|
+
}
|
|
3867
|
+
|
|
3868
|
+
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
|
|
3869
|
+
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
|
|
3870
|
+
/*
|
|
3871
|
+
/*rtl:begin:ignore*/
|
|
3872
|
+
/*
|
|
3873
|
+
*/
|
|
3874
|
+
left: 0;
|
|
3875
|
+
/*
|
|
3876
|
+
/*rtl:end:ignore*/
|
|
3877
|
+
/*
|
|
3878
|
+
*/
|
|
3879
|
+
}
|
|
3880
|
+
|
|
3881
|
+
/*
|
|
3882
|
+
/*rtl:begin:ignore*/
|
|
3883
|
+
/*
|
|
3884
|
+
/*rtl:end:ignore*/
|
|
3885
|
+
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
|
|
3886
|
+
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
|
|
3887
|
+
/*
|
|
3888
|
+
/*rtl:begin:ignore*/
|
|
3889
|
+
/*
|
|
3890
|
+
*/
|
|
3891
|
+
right: 0;
|
|
3892
|
+
/*
|
|
3893
|
+
/*rtl:end:ignore*/
|
|
3894
|
+
/*
|
|
3895
|
+
*/
|
|
3896
|
+
}
|
|
3897
|
+
|
|
3898
|
+
/*
|
|
3899
|
+
/*rtl:begin:ignore*/
|
|
3900
|
+
/*
|
|
3901
|
+
/*rtl:end:ignore*/
|
|
3902
|
+
.flatpickr-months .flatpickr-prev-month:hover,
|
|
3903
|
+
.flatpickr-months .flatpickr-next-month:hover {
|
|
3904
|
+
color: #959ea9;
|
|
3905
|
+
}
|
|
3906
|
+
|
|
3907
|
+
.flatpickr-months .flatpickr-prev-month:hover svg,
|
|
3908
|
+
.flatpickr-months .flatpickr-next-month:hover svg {
|
|
3909
|
+
fill: #f64747;
|
|
3910
|
+
}
|
|
3911
|
+
|
|
3912
|
+
.flatpickr-months .flatpickr-prev-month svg,
|
|
3913
|
+
.flatpickr-months .flatpickr-next-month svg {
|
|
3914
|
+
width: 14px;
|
|
3915
|
+
height: 14px;
|
|
3916
|
+
}
|
|
3917
|
+
|
|
3918
|
+
.flatpickr-months .flatpickr-prev-month svg path,
|
|
3919
|
+
.flatpickr-months .flatpickr-next-month svg path {
|
|
3920
|
+
-webkit-transition: fill 0.1s;
|
|
3921
|
+
transition: fill 0.1s;
|
|
3922
|
+
fill: inherit;
|
|
3923
|
+
}
|
|
3924
|
+
|
|
3925
|
+
.numInputWrapper {
|
|
3926
|
+
position: relative;
|
|
3927
|
+
height: auto;
|
|
3928
|
+
}
|
|
3929
|
+
|
|
3930
|
+
.numInputWrapper input,
|
|
3931
|
+
.numInputWrapper span {
|
|
3932
|
+
display: inline-block;
|
|
3933
|
+
}
|
|
3934
|
+
|
|
3935
|
+
.numInputWrapper input {
|
|
3936
|
+
width: 100%;
|
|
3937
|
+
}
|
|
3938
|
+
|
|
3939
|
+
.numInputWrapper input::-ms-clear {
|
|
3940
|
+
display: none;
|
|
3941
|
+
}
|
|
3942
|
+
|
|
3943
|
+
.numInputWrapper input::-webkit-outer-spin-button,
|
|
3944
|
+
.numInputWrapper input::-webkit-inner-spin-button {
|
|
3945
|
+
margin: 0;
|
|
3946
|
+
-webkit-appearance: none;
|
|
3947
|
+
}
|
|
3948
|
+
|
|
3949
|
+
.numInputWrapper span {
|
|
3950
|
+
position: absolute;
|
|
3951
|
+
right: 0;
|
|
3952
|
+
width: 14px;
|
|
3953
|
+
padding: 0 4px 0 2px;
|
|
3954
|
+
height: 50%;
|
|
3955
|
+
line-height: 50%;
|
|
3956
|
+
opacity: 0;
|
|
3957
|
+
cursor: pointer;
|
|
3958
|
+
border: 1px solid rgba(57, 57, 57, 0.15);
|
|
3959
|
+
-webkit-box-sizing: border-box;
|
|
3960
|
+
box-sizing: border-box;
|
|
3961
|
+
}
|
|
3962
|
+
|
|
3963
|
+
.numInputWrapper span:hover {
|
|
3964
|
+
background: rgba(0, 0, 0, 0.1);
|
|
3965
|
+
}
|
|
3966
|
+
|
|
3967
|
+
.numInputWrapper span:active {
|
|
3968
|
+
background: rgba(0, 0, 0, 0.2);
|
|
3969
|
+
}
|
|
3970
|
+
|
|
3971
|
+
.numInputWrapper span:after {
|
|
3972
|
+
display: block;
|
|
3973
|
+
content: "";
|
|
3974
|
+
position: absolute;
|
|
3975
|
+
}
|
|
3976
|
+
|
|
3977
|
+
.numInputWrapper span.arrowUp {
|
|
3978
|
+
top: 0;
|
|
3979
|
+
border-bottom: 0;
|
|
3980
|
+
}
|
|
3981
|
+
|
|
3982
|
+
.numInputWrapper span.arrowUp:after {
|
|
3983
|
+
border-left: 4px solid transparent;
|
|
3984
|
+
border-right: 4px solid transparent;
|
|
3985
|
+
border-bottom: 4px solid rgba(57, 57, 57, 0.6);
|
|
3986
|
+
top: 26%;
|
|
3987
|
+
}
|
|
3988
|
+
|
|
3989
|
+
.numInputWrapper span.arrowDown {
|
|
3990
|
+
top: 50%;
|
|
3991
|
+
}
|
|
3992
|
+
|
|
3993
|
+
.numInputWrapper span.arrowDown:after {
|
|
3994
|
+
border-left: 4px solid transparent;
|
|
3995
|
+
border-right: 4px solid transparent;
|
|
3996
|
+
border-top: 4px solid rgba(57, 57, 57, 0.6);
|
|
3997
|
+
top: 40%;
|
|
3998
|
+
}
|
|
3999
|
+
|
|
4000
|
+
.numInputWrapper span svg {
|
|
4001
|
+
width: inherit;
|
|
4002
|
+
height: auto;
|
|
4003
|
+
}
|
|
4004
|
+
|
|
4005
|
+
.numInputWrapper span svg path {
|
|
4006
|
+
fill: rgba(0, 0, 0, 0.5);
|
|
4007
|
+
}
|
|
4008
|
+
|
|
4009
|
+
.numInputWrapper:hover {
|
|
4010
|
+
background: rgba(0, 0, 0, 0.05);
|
|
4011
|
+
}
|
|
4012
|
+
|
|
4013
|
+
.numInputWrapper:hover span {
|
|
4014
|
+
opacity: 1;
|
|
4015
|
+
}
|
|
4016
|
+
|
|
4017
|
+
.flatpickr-current-month {
|
|
4018
|
+
font-size: 135%;
|
|
4019
|
+
line-height: inherit;
|
|
4020
|
+
font-weight: 300;
|
|
4021
|
+
color: inherit;
|
|
4022
|
+
position: absolute;
|
|
4023
|
+
width: 75%;
|
|
4024
|
+
left: 12.5%;
|
|
4025
|
+
padding: 7.48px 0 0 0;
|
|
4026
|
+
line-height: 1;
|
|
4027
|
+
height: 34px;
|
|
4028
|
+
display: inline-block;
|
|
4029
|
+
text-align: center;
|
|
4030
|
+
-webkit-transform: translate3d(0px, 0px, 0px);
|
|
4031
|
+
transform: translate3d(0px, 0px, 0px);
|
|
4032
|
+
}
|
|
4033
|
+
|
|
4034
|
+
.flatpickr-current-month span.cur-month {
|
|
4035
|
+
font-family: inherit;
|
|
4036
|
+
font-weight: 700;
|
|
4037
|
+
color: inherit;
|
|
4038
|
+
display: inline-block;
|
|
4039
|
+
margin-left: 0.5ch;
|
|
4040
|
+
padding: 0;
|
|
4041
|
+
}
|
|
4042
|
+
|
|
4043
|
+
.flatpickr-current-month span.cur-month:hover {
|
|
4044
|
+
background: rgba(0, 0, 0, 0.05);
|
|
4045
|
+
}
|
|
4046
|
+
|
|
4047
|
+
.flatpickr-current-month .numInputWrapper {
|
|
4048
|
+
width: 6ch;
|
|
4049
|
+
width: 7ch\0 ;
|
|
4050
|
+
display: inline-block;
|
|
4051
|
+
}
|
|
4052
|
+
|
|
4053
|
+
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
|
|
4054
|
+
border-bottom-color: rgba(0, 0, 0, 0.9);
|
|
4055
|
+
}
|
|
4056
|
+
|
|
4057
|
+
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
|
|
4058
|
+
border-top-color: rgba(0, 0, 0, 0.9);
|
|
4059
|
+
}
|
|
4060
|
+
|
|
4061
|
+
.flatpickr-current-month input.cur-year {
|
|
4062
|
+
background: transparent;
|
|
4063
|
+
-webkit-box-sizing: border-box;
|
|
4064
|
+
box-sizing: border-box;
|
|
4065
|
+
color: inherit;
|
|
4066
|
+
cursor: text;
|
|
4067
|
+
padding: 0 0 0 0.5ch;
|
|
4068
|
+
margin: 0;
|
|
4069
|
+
display: inline-block;
|
|
4070
|
+
font-size: inherit;
|
|
4071
|
+
font-family: inherit;
|
|
4072
|
+
font-weight: 300;
|
|
4073
|
+
line-height: inherit;
|
|
4074
|
+
height: auto;
|
|
4075
|
+
border: 0;
|
|
4076
|
+
border-radius: 0;
|
|
4077
|
+
vertical-align: initial;
|
|
4078
|
+
-webkit-appearance: textfield;
|
|
4079
|
+
-moz-appearance: textfield;
|
|
4080
|
+
appearance: textfield;
|
|
4081
|
+
}
|
|
4082
|
+
|
|
4083
|
+
.flatpickr-current-month input.cur-year:focus {
|
|
4084
|
+
outline: 0;
|
|
4085
|
+
}
|
|
4086
|
+
|
|
4087
|
+
.flatpickr-current-month input.cur-year[disabled],
|
|
4088
|
+
.flatpickr-current-month input.cur-year[disabled]:hover {
|
|
4089
|
+
font-size: 100%;
|
|
4090
|
+
color: rgba(0, 0, 0, 0.5);
|
|
4091
|
+
background: transparent;
|
|
4092
|
+
pointer-events: none;
|
|
4093
|
+
}
|
|
4094
|
+
|
|
4095
|
+
.flatpickr-current-month .flatpickr-monthDropdown-months {
|
|
4096
|
+
appearance: menulist;
|
|
4097
|
+
background: transparent;
|
|
4098
|
+
border: none;
|
|
4099
|
+
border-radius: 0;
|
|
4100
|
+
box-sizing: border-box;
|
|
4101
|
+
color: inherit;
|
|
4102
|
+
cursor: pointer;
|
|
4103
|
+
font-size: inherit;
|
|
4104
|
+
font-family: inherit;
|
|
4105
|
+
font-weight: 300;
|
|
4106
|
+
height: auto;
|
|
4107
|
+
line-height: inherit;
|
|
4108
|
+
margin: -1px 0 0 0;
|
|
4109
|
+
outline: none;
|
|
4110
|
+
padding: 0 0 0 0.5ch;
|
|
4111
|
+
position: relative;
|
|
4112
|
+
vertical-align: initial;
|
|
4113
|
+
-webkit-box-sizing: border-box;
|
|
4114
|
+
-webkit-appearance: menulist;
|
|
4115
|
+
-moz-appearance: menulist;
|
|
4116
|
+
width: auto;
|
|
4117
|
+
}
|
|
4118
|
+
|
|
4119
|
+
.flatpickr-current-month .flatpickr-monthDropdown-months:focus,
|
|
4120
|
+
.flatpickr-current-month .flatpickr-monthDropdown-months:active {
|
|
4121
|
+
outline: none;
|
|
4122
|
+
}
|
|
4123
|
+
|
|
4124
|
+
.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
|
|
4125
|
+
background: rgba(0, 0, 0, 0.05);
|
|
4126
|
+
}
|
|
4127
|
+
|
|
4128
|
+
.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
|
|
4129
|
+
background-color: transparent;
|
|
4130
|
+
outline: none;
|
|
4131
|
+
padding: 0;
|
|
4132
|
+
}
|
|
4133
|
+
|
|
4134
|
+
.flatpickr-weekdays {
|
|
4135
|
+
background: transparent;
|
|
4136
|
+
text-align: center;
|
|
4137
|
+
overflow: hidden;
|
|
4138
|
+
width: 100%;
|
|
4139
|
+
display: -webkit-box;
|
|
4140
|
+
display: -webkit-flex;
|
|
4141
|
+
display: -ms-flexbox;
|
|
4142
|
+
display: flex;
|
|
4143
|
+
-webkit-box-align: center;
|
|
4144
|
+
-webkit-align-items: center;
|
|
4145
|
+
-ms-flex-align: center;
|
|
4146
|
+
align-items: center;
|
|
4147
|
+
height: 28px;
|
|
4148
|
+
}
|
|
4149
|
+
|
|
4150
|
+
.flatpickr-weekdays .flatpickr-weekdaycontainer {
|
|
4151
|
+
display: -webkit-box;
|
|
4152
|
+
display: -webkit-flex;
|
|
4153
|
+
display: -ms-flexbox;
|
|
4154
|
+
display: flex;
|
|
4155
|
+
-webkit-box-flex: 1;
|
|
4156
|
+
-webkit-flex: 1;
|
|
4157
|
+
-ms-flex: 1;
|
|
4158
|
+
flex: 1;
|
|
4159
|
+
}
|
|
4160
|
+
|
|
4161
|
+
span.flatpickr-weekday {
|
|
4162
|
+
cursor: default;
|
|
4163
|
+
font-size: 90%;
|
|
4164
|
+
background: transparent;
|
|
4165
|
+
color: rgba(0, 0, 0, 0.54);
|
|
4166
|
+
line-height: 1;
|
|
4167
|
+
margin: 0;
|
|
4168
|
+
text-align: center;
|
|
4169
|
+
display: block;
|
|
4170
|
+
-webkit-box-flex: 1;
|
|
4171
|
+
-webkit-flex: 1;
|
|
4172
|
+
-ms-flex: 1;
|
|
4173
|
+
flex: 1;
|
|
4174
|
+
font-weight: bolder;
|
|
4175
|
+
}
|
|
4176
|
+
|
|
4177
|
+
.dayContainer,
|
|
4178
|
+
.flatpickr-weeks {
|
|
4179
|
+
padding: 1px 0 0 0;
|
|
4180
|
+
}
|
|
4181
|
+
|
|
4182
|
+
.flatpickr-days {
|
|
4183
|
+
position: relative;
|
|
4184
|
+
overflow: hidden;
|
|
4185
|
+
display: -webkit-box;
|
|
4186
|
+
display: -webkit-flex;
|
|
4187
|
+
display: -ms-flexbox;
|
|
4188
|
+
display: flex;
|
|
4189
|
+
-webkit-box-align: start;
|
|
4190
|
+
-webkit-align-items: flex-start;
|
|
4191
|
+
-ms-flex-align: start;
|
|
4192
|
+
align-items: flex-start;
|
|
4193
|
+
width: 307.875px;
|
|
4194
|
+
}
|
|
4195
|
+
|
|
4196
|
+
.flatpickr-days:focus {
|
|
4197
|
+
outline: 0;
|
|
4198
|
+
}
|
|
4199
|
+
|
|
4200
|
+
.dayContainer {
|
|
4201
|
+
padding: 0;
|
|
4202
|
+
outline: 0;
|
|
4203
|
+
text-align: left;
|
|
4204
|
+
width: 307.875px;
|
|
4205
|
+
min-width: 307.875px;
|
|
4206
|
+
max-width: 307.875px;
|
|
4207
|
+
-webkit-box-sizing: border-box;
|
|
4208
|
+
box-sizing: border-box;
|
|
4209
|
+
display: inline-block;
|
|
4210
|
+
display: -ms-flexbox;
|
|
4211
|
+
display: -webkit-box;
|
|
4212
|
+
display: -webkit-flex;
|
|
4213
|
+
display: flex;
|
|
4214
|
+
-webkit-flex-wrap: wrap;
|
|
4215
|
+
flex-wrap: wrap;
|
|
4216
|
+
-ms-flex-wrap: wrap;
|
|
4217
|
+
-ms-flex-pack: justify;
|
|
4218
|
+
-webkit-justify-content: space-around;
|
|
4219
|
+
justify-content: space-around;
|
|
4220
|
+
-webkit-transform: translate3d(0px, 0px, 0px);
|
|
4221
|
+
transform: translate3d(0px, 0px, 0px);
|
|
4222
|
+
opacity: 1;
|
|
4223
|
+
}
|
|
4224
|
+
|
|
4225
|
+
.dayContainer + .dayContainer {
|
|
4226
|
+
-webkit-box-shadow: -1px 0 0 #e6e6e6;
|
|
4227
|
+
box-shadow: -1px 0 0 #e6e6e6;
|
|
4228
|
+
}
|
|
4229
|
+
|
|
4230
|
+
.flatpickr-day {
|
|
4231
|
+
background: none;
|
|
4232
|
+
border: 1px solid transparent;
|
|
4233
|
+
border-radius: 150px;
|
|
4234
|
+
-webkit-box-sizing: border-box;
|
|
4235
|
+
box-sizing: border-box;
|
|
4236
|
+
color: #393939;
|
|
4237
|
+
cursor: pointer;
|
|
4238
|
+
font-weight: 400;
|
|
4239
|
+
width: 14.2857143%;
|
|
4240
|
+
-webkit-flex-basis: 14.2857143%;
|
|
4241
|
+
-ms-flex-preferred-size: 14.2857143%;
|
|
4242
|
+
flex-basis: 14.2857143%;
|
|
4243
|
+
max-width: 39px;
|
|
4244
|
+
height: 39px;
|
|
4245
|
+
line-height: 39px;
|
|
4246
|
+
margin: 0;
|
|
4247
|
+
display: inline-block;
|
|
4248
|
+
position: relative;
|
|
4249
|
+
-webkit-box-pack: center;
|
|
4250
|
+
-webkit-justify-content: center;
|
|
4251
|
+
-ms-flex-pack: center;
|
|
4252
|
+
justify-content: center;
|
|
4253
|
+
text-align: center;
|
|
4254
|
+
}
|
|
4255
|
+
|
|
4256
|
+
.flatpickr-day.inRange,
|
|
4257
|
+
.flatpickr-day.prevMonthDay.inRange,
|
|
4258
|
+
.flatpickr-day.nextMonthDay.inRange,
|
|
4259
|
+
.flatpickr-day.today.inRange,
|
|
4260
|
+
.flatpickr-day.prevMonthDay.today.inRange,
|
|
4261
|
+
.flatpickr-day.nextMonthDay.today.inRange,
|
|
4262
|
+
.flatpickr-day:hover,
|
|
4263
|
+
.flatpickr-day.prevMonthDay:hover,
|
|
4264
|
+
.flatpickr-day.nextMonthDay:hover,
|
|
4265
|
+
.flatpickr-day:focus,
|
|
4266
|
+
.flatpickr-day.prevMonthDay:focus,
|
|
4267
|
+
.flatpickr-day.nextMonthDay:focus {
|
|
4268
|
+
cursor: pointer;
|
|
4269
|
+
outline: 0;
|
|
4270
|
+
background: #e6e6e6;
|
|
4271
|
+
border-color: #e6e6e6;
|
|
4272
|
+
}
|
|
4273
|
+
|
|
4274
|
+
.flatpickr-day.today {
|
|
4275
|
+
border-color: #959ea9;
|
|
4276
|
+
}
|
|
4277
|
+
|
|
4278
|
+
.flatpickr-day.today:hover,
|
|
4279
|
+
.flatpickr-day.today:focus {
|
|
4280
|
+
border-color: #959ea9;
|
|
4281
|
+
background: #959ea9;
|
|
4282
|
+
color: #fff;
|
|
4283
|
+
}
|
|
4284
|
+
|
|
4285
|
+
.flatpickr-day.selected,
|
|
4286
|
+
.flatpickr-day.startRange,
|
|
4287
|
+
.flatpickr-day.endRange,
|
|
4288
|
+
.flatpickr-day.selected.inRange,
|
|
4289
|
+
.flatpickr-day.startRange.inRange,
|
|
4290
|
+
.flatpickr-day.endRange.inRange,
|
|
4291
|
+
.flatpickr-day.selected:focus,
|
|
4292
|
+
.flatpickr-day.startRange:focus,
|
|
4293
|
+
.flatpickr-day.endRange:focus,
|
|
4294
|
+
.flatpickr-day.selected:hover,
|
|
4295
|
+
.flatpickr-day.startRange:hover,
|
|
4296
|
+
.flatpickr-day.endRange:hover,
|
|
4297
|
+
.flatpickr-day.selected.prevMonthDay,
|
|
4298
|
+
.flatpickr-day.startRange.prevMonthDay,
|
|
4299
|
+
.flatpickr-day.endRange.prevMonthDay,
|
|
4300
|
+
.flatpickr-day.selected.nextMonthDay,
|
|
4301
|
+
.flatpickr-day.startRange.nextMonthDay,
|
|
4302
|
+
.flatpickr-day.endRange.nextMonthDay {
|
|
4303
|
+
background: #569ff7;
|
|
4304
|
+
-webkit-box-shadow: none;
|
|
4305
|
+
box-shadow: none;
|
|
4306
|
+
color: #fff;
|
|
4307
|
+
border-color: #569ff7;
|
|
4308
|
+
}
|
|
4309
|
+
|
|
4310
|
+
.flatpickr-day.selected.startRange,
|
|
4311
|
+
.flatpickr-day.startRange.startRange,
|
|
4312
|
+
.flatpickr-day.endRange.startRange {
|
|
4313
|
+
border-radius: 50px 0 0 50px;
|
|
4314
|
+
}
|
|
4315
|
+
|
|
4316
|
+
.flatpickr-day.selected.endRange,
|
|
4317
|
+
.flatpickr-day.startRange.endRange,
|
|
4318
|
+
.flatpickr-day.endRange.endRange {
|
|
4319
|
+
border-radius: 0 50px 50px 0;
|
|
4320
|
+
}
|
|
4321
|
+
|
|
4322
|
+
.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
|
|
4323
|
+
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
|
|
4324
|
+
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
|
|
4325
|
+
-webkit-box-shadow: -10px 0 0 #569ff7;
|
|
4326
|
+
box-shadow: -10px 0 0 #569ff7;
|
|
4327
|
+
}
|
|
4328
|
+
|
|
4329
|
+
.flatpickr-day.selected.startRange.endRange,
|
|
4330
|
+
.flatpickr-day.startRange.startRange.endRange,
|
|
4331
|
+
.flatpickr-day.endRange.startRange.endRange {
|
|
4332
|
+
border-radius: 50px;
|
|
4333
|
+
}
|
|
4334
|
+
|
|
4335
|
+
.flatpickr-day.inRange {
|
|
4336
|
+
border-radius: 0;
|
|
4337
|
+
-webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
|
|
4338
|
+
box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
|
|
4339
|
+
}
|
|
4340
|
+
|
|
4341
|
+
.flatpickr-day.flatpickr-disabled,
|
|
4342
|
+
.flatpickr-day.flatpickr-disabled:hover,
|
|
4343
|
+
.flatpickr-day.prevMonthDay,
|
|
4344
|
+
.flatpickr-day.nextMonthDay,
|
|
4345
|
+
.flatpickr-day.notAllowed,
|
|
4346
|
+
.flatpickr-day.notAllowed.prevMonthDay,
|
|
4347
|
+
.flatpickr-day.notAllowed.nextMonthDay {
|
|
4348
|
+
color: rgba(57, 57, 57, 0.3);
|
|
4349
|
+
background: transparent;
|
|
4350
|
+
border-color: transparent;
|
|
4351
|
+
cursor: default;
|
|
4352
|
+
}
|
|
4353
|
+
|
|
4354
|
+
.flatpickr-day.flatpickr-disabled,
|
|
4355
|
+
.flatpickr-day.flatpickr-disabled:hover {
|
|
4356
|
+
cursor: not-allowed;
|
|
4357
|
+
color: rgba(57, 57, 57, 0.1);
|
|
4358
|
+
}
|
|
4359
|
+
|
|
4360
|
+
.flatpickr-day.week.selected {
|
|
4361
|
+
border-radius: 0;
|
|
4362
|
+
-webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
|
|
4363
|
+
box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
|
|
4364
|
+
}
|
|
4365
|
+
|
|
4366
|
+
.flatpickr-day.hidden {
|
|
4367
|
+
visibility: hidden;
|
|
4368
|
+
}
|
|
4369
|
+
|
|
4370
|
+
.rangeMode .flatpickr-day {
|
|
4371
|
+
margin-top: 1px;
|
|
4372
|
+
}
|
|
4373
|
+
|
|
4374
|
+
.flatpickr-weekwrapper {
|
|
4375
|
+
float: left;
|
|
4376
|
+
}
|
|
4377
|
+
|
|
4378
|
+
.flatpickr-weekwrapper .flatpickr-weeks {
|
|
4379
|
+
padding: 0 12px;
|
|
4380
|
+
-webkit-box-shadow: 1px 0 0 #e6e6e6;
|
|
4381
|
+
box-shadow: 1px 0 0 #e6e6e6;
|
|
4382
|
+
}
|
|
4383
|
+
|
|
4384
|
+
.flatpickr-weekwrapper .flatpickr-weekday {
|
|
4385
|
+
float: none;
|
|
4386
|
+
width: 100%;
|
|
4387
|
+
line-height: 28px;
|
|
4388
|
+
}
|
|
4389
|
+
|
|
4390
|
+
.flatpickr-weekwrapper span.flatpickr-day,
|
|
4391
|
+
.flatpickr-weekwrapper span.flatpickr-day:hover {
|
|
4392
|
+
display: block;
|
|
4393
|
+
width: 100%;
|
|
4394
|
+
max-width: none;
|
|
4395
|
+
color: rgba(57, 57, 57, 0.3);
|
|
4396
|
+
background: transparent;
|
|
4397
|
+
cursor: default;
|
|
4398
|
+
border: none;
|
|
4399
|
+
}
|
|
4400
|
+
|
|
4401
|
+
.flatpickr-innerContainer {
|
|
4402
|
+
display: block;
|
|
4403
|
+
display: -webkit-box;
|
|
4404
|
+
display: -webkit-flex;
|
|
4405
|
+
display: -ms-flexbox;
|
|
4406
|
+
display: flex;
|
|
4407
|
+
-webkit-box-sizing: border-box;
|
|
4408
|
+
box-sizing: border-box;
|
|
4409
|
+
overflow: hidden;
|
|
4410
|
+
}
|
|
4411
|
+
|
|
4412
|
+
.flatpickr-rContainer {
|
|
4413
|
+
display: inline-block;
|
|
4414
|
+
padding: 0;
|
|
4415
|
+
-webkit-box-sizing: border-box;
|
|
4416
|
+
box-sizing: border-box;
|
|
4417
|
+
}
|
|
4418
|
+
|
|
4419
|
+
.flatpickr-time {
|
|
4420
|
+
text-align: center;
|
|
4421
|
+
outline: 0;
|
|
4422
|
+
display: block;
|
|
4423
|
+
height: 0;
|
|
4424
|
+
line-height: 40px;
|
|
4425
|
+
max-height: 40px;
|
|
4426
|
+
-webkit-box-sizing: border-box;
|
|
4427
|
+
box-sizing: border-box;
|
|
4428
|
+
overflow: hidden;
|
|
4429
|
+
display: -webkit-box;
|
|
4430
|
+
display: -webkit-flex;
|
|
4431
|
+
display: -ms-flexbox;
|
|
4432
|
+
display: flex;
|
|
4433
|
+
}
|
|
4434
|
+
|
|
4435
|
+
.flatpickr-time:after {
|
|
4436
|
+
content: "";
|
|
4437
|
+
display: table;
|
|
4438
|
+
clear: both;
|
|
4439
|
+
}
|
|
4440
|
+
|
|
4441
|
+
.flatpickr-time .numInputWrapper {
|
|
4442
|
+
-webkit-box-flex: 1;
|
|
4443
|
+
-webkit-flex: 1;
|
|
4444
|
+
-ms-flex: 1;
|
|
4445
|
+
flex: 1;
|
|
4446
|
+
width: 40%;
|
|
4447
|
+
height: 40px;
|
|
4448
|
+
float: left;
|
|
4449
|
+
}
|
|
4450
|
+
|
|
4451
|
+
.flatpickr-time .numInputWrapper span.arrowUp:after {
|
|
4452
|
+
border-bottom-color: #393939;
|
|
4453
|
+
}
|
|
4454
|
+
|
|
4455
|
+
.flatpickr-time .numInputWrapper span.arrowDown:after {
|
|
4456
|
+
border-top-color: #393939;
|
|
4457
|
+
}
|
|
4458
|
+
|
|
4459
|
+
.flatpickr-time.hasSeconds .numInputWrapper {
|
|
4460
|
+
width: 26%;
|
|
4461
|
+
}
|
|
4462
|
+
|
|
4463
|
+
.flatpickr-time.time24hr .numInputWrapper {
|
|
4464
|
+
width: 49%;
|
|
4465
|
+
}
|
|
4466
|
+
|
|
4467
|
+
.flatpickr-time input {
|
|
4468
|
+
background: transparent;
|
|
4469
|
+
-webkit-box-shadow: none;
|
|
4470
|
+
box-shadow: none;
|
|
4471
|
+
border: 0;
|
|
4472
|
+
border-radius: 0;
|
|
4473
|
+
text-align: center;
|
|
4474
|
+
margin: 0;
|
|
4475
|
+
padding: 0;
|
|
4476
|
+
height: inherit;
|
|
4477
|
+
line-height: inherit;
|
|
4478
|
+
color: #393939;
|
|
4479
|
+
font-size: 14px;
|
|
4480
|
+
position: relative;
|
|
4481
|
+
-webkit-box-sizing: border-box;
|
|
4482
|
+
box-sizing: border-box;
|
|
4483
|
+
-webkit-appearance: textfield;
|
|
4484
|
+
-moz-appearance: textfield;
|
|
4485
|
+
appearance: textfield;
|
|
4486
|
+
}
|
|
4487
|
+
|
|
4488
|
+
.flatpickr-time input.flatpickr-hour {
|
|
4489
|
+
font-weight: bold;
|
|
4490
|
+
}
|
|
4491
|
+
|
|
4492
|
+
.flatpickr-time input.flatpickr-minute,
|
|
4493
|
+
.flatpickr-time input.flatpickr-second {
|
|
4494
|
+
font-weight: 400;
|
|
4495
|
+
}
|
|
4496
|
+
|
|
4497
|
+
.flatpickr-time input:focus {
|
|
4498
|
+
outline: 0;
|
|
4499
|
+
border: 0;
|
|
4500
|
+
}
|
|
4501
|
+
|
|
4502
|
+
.flatpickr-time .flatpickr-time-separator,
|
|
4503
|
+
.flatpickr-time .flatpickr-am-pm {
|
|
4504
|
+
height: inherit;
|
|
4505
|
+
float: left;
|
|
4506
|
+
line-height: inherit;
|
|
4507
|
+
color: #393939;
|
|
4508
|
+
font-weight: bold;
|
|
4509
|
+
width: 2%;
|
|
4510
|
+
-webkit-user-select: none;
|
|
4511
|
+
-moz-user-select: none;
|
|
4512
|
+
-ms-user-select: none;
|
|
4513
|
+
user-select: none;
|
|
4514
|
+
-webkit-align-self: center;
|
|
4515
|
+
-ms-flex-item-align: center;
|
|
4516
|
+
align-self: center;
|
|
4517
|
+
}
|
|
4518
|
+
|
|
4519
|
+
.flatpickr-time .flatpickr-am-pm {
|
|
4520
|
+
outline: 0;
|
|
4521
|
+
width: 18%;
|
|
4522
|
+
cursor: pointer;
|
|
4523
|
+
text-align: center;
|
|
4524
|
+
font-weight: 400;
|
|
4525
|
+
}
|
|
4526
|
+
|
|
4527
|
+
.flatpickr-time input:hover,
|
|
4528
|
+
.flatpickr-time .flatpickr-am-pm:hover,
|
|
4529
|
+
.flatpickr-time input:focus,
|
|
4530
|
+
.flatpickr-time .flatpickr-am-pm:focus {
|
|
4531
|
+
background: #eee;
|
|
4532
|
+
}
|
|
4533
|
+
|
|
4534
|
+
.flatpickr-input[readonly] {
|
|
4535
|
+
cursor: pointer;
|
|
4536
|
+
}
|
|
4537
|
+
|
|
4538
|
+
@-webkit-keyframes fpFadeInDown {
|
|
4539
|
+
from {
|
|
4540
|
+
opacity: 0;
|
|
4541
|
+
-webkit-transform: translate3d(0, -20px, 0);
|
|
4542
|
+
transform: translate3d(0, -20px, 0);
|
|
4543
|
+
}
|
|
4544
|
+
to {
|
|
4545
|
+
opacity: 1;
|
|
4546
|
+
-webkit-transform: translate3d(0, 0, 0);
|
|
4547
|
+
transform: translate3d(0, 0, 0);
|
|
4548
|
+
}
|
|
4549
|
+
}
|
|
4550
|
+
@keyframes fpFadeInDown {
|
|
4551
|
+
from {
|
|
4552
|
+
opacity: 0;
|
|
4553
|
+
-webkit-transform: translate3d(0, -20px, 0);
|
|
4554
|
+
transform: translate3d(0, -20px, 0);
|
|
4555
|
+
}
|
|
4556
|
+
to {
|
|
4557
|
+
opacity: 1;
|
|
4558
|
+
-webkit-transform: translate3d(0, 0, 0);
|
|
4559
|
+
transform: translate3d(0, 0, 0);
|
|
4560
|
+
}
|
|
4561
|
+
}
|
|
4562
|
+
/**
|
|
4563
|
+
* Swiper 11.2.6
|
|
4564
|
+
* Most modern mobile touch slider and framework with hardware accelerated transitions
|
|
4565
|
+
* https://swiperjs.com
|
|
4566
|
+
*
|
|
4567
|
+
* Copyright 2014-2025 Vladimir Kharlampidi
|
|
4568
|
+
*
|
|
4569
|
+
* Released under the MIT License
|
|
4570
|
+
*
|
|
4571
|
+
* Released on: March 19, 2025
|
|
4572
|
+
*/
|
|
4573
|
+
/* FONT_START */
|
|
4574
|
+
@font-face {
|
|
4575
|
+
font-family: "swiper-icons";
|
|
4576
|
+
src: url("data:application/font-woff;charset=utf-8;base64, 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");
|
|
4577
|
+
font-weight: 400;
|
|
4578
|
+
font-style: normal;
|
|
4579
|
+
}
|
|
4580
|
+
/* FONT_END */
|
|
4581
|
+
:root {
|
|
4582
|
+
--swiper-theme-color: #007aff;
|
|
4583
|
+
/*
|
|
4584
|
+
--swiper-preloader-color: var(--swiper-theme-color);
|
|
4585
|
+
--swiper-wrapper-transition-timing-function: initial;
|
|
4586
|
+
*/
|
|
4587
|
+
}
|
|
4588
|
+
|
|
4589
|
+
:host {
|
|
4590
|
+
position: relative;
|
|
4591
|
+
display: block;
|
|
4592
|
+
margin-left: auto;
|
|
4593
|
+
margin-right: auto;
|
|
4594
|
+
z-index: 1;
|
|
4595
|
+
}
|
|
4596
|
+
|
|
4597
|
+
.swiper {
|
|
4598
|
+
margin-left: auto;
|
|
4599
|
+
margin-right: auto;
|
|
4600
|
+
position: relative;
|
|
4601
|
+
overflow: hidden;
|
|
4602
|
+
list-style: none;
|
|
4603
|
+
padding: 0;
|
|
4604
|
+
/* Fix of Webkit flickering */
|
|
4605
|
+
z-index: 1;
|
|
4606
|
+
display: block;
|
|
4607
|
+
}
|
|
4608
|
+
|
|
4609
|
+
.swiper-vertical > .swiper-wrapper {
|
|
4610
|
+
flex-direction: column;
|
|
4611
|
+
}
|
|
4612
|
+
|
|
4613
|
+
.swiper-wrapper {
|
|
4614
|
+
position: relative;
|
|
4615
|
+
width: 100%;
|
|
4616
|
+
height: 100%;
|
|
4617
|
+
z-index: 1;
|
|
4618
|
+
display: flex;
|
|
4619
|
+
transition-property: transform;
|
|
4620
|
+
transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
|
|
4621
|
+
box-sizing: content-box;
|
|
4622
|
+
}
|
|
4623
|
+
|
|
4624
|
+
.swiper-android .swiper-slide,
|
|
4625
|
+
.swiper-ios .swiper-slide,
|
|
4626
|
+
.swiper-wrapper {
|
|
4627
|
+
transform: translate3d(0px, 0, 0);
|
|
4628
|
+
}
|
|
4629
|
+
|
|
4630
|
+
.swiper-horizontal {
|
|
4631
|
+
touch-action: pan-y;
|
|
4632
|
+
}
|
|
4633
|
+
|
|
4634
|
+
.swiper-vertical {
|
|
4635
|
+
touch-action: pan-x;
|
|
4636
|
+
}
|
|
4637
|
+
|
|
4638
|
+
.swiper-slide {
|
|
4639
|
+
flex-shrink: 0;
|
|
4640
|
+
width: 100%;
|
|
4641
|
+
height: 100%;
|
|
4642
|
+
position: relative;
|
|
4643
|
+
transition-property: transform;
|
|
4644
|
+
display: block;
|
|
4645
|
+
}
|
|
4646
|
+
|
|
4647
|
+
.swiper-slide-invisible-blank {
|
|
4648
|
+
visibility: hidden;
|
|
4649
|
+
}
|
|
4650
|
+
|
|
4651
|
+
/* Auto Height */
|
|
4652
|
+
.swiper-autoheight,
|
|
4653
|
+
.swiper-autoheight .swiper-slide {
|
|
4654
|
+
height: auto;
|
|
4655
|
+
}
|
|
4656
|
+
|
|
4657
|
+
.swiper-autoheight .swiper-wrapper {
|
|
4658
|
+
align-items: flex-start;
|
|
4659
|
+
transition-property: transform, height;
|
|
4660
|
+
}
|
|
4661
|
+
|
|
4662
|
+
.swiper-backface-hidden .swiper-slide {
|
|
4663
|
+
transform: translateZ(0);
|
|
4664
|
+
-webkit-backface-visibility: hidden;
|
|
4665
|
+
backface-visibility: hidden;
|
|
4666
|
+
}
|
|
4667
|
+
|
|
4668
|
+
/* 3D Effects */
|
|
4669
|
+
.swiper-3d.swiper-css-mode .swiper-wrapper {
|
|
4670
|
+
perspective: 1200px;
|
|
4671
|
+
}
|
|
4672
|
+
|
|
4673
|
+
.swiper-3d .swiper-wrapper {
|
|
4674
|
+
transform-style: preserve-3d;
|
|
4675
|
+
}
|
|
4676
|
+
|
|
4677
|
+
.swiper-3d {
|
|
4678
|
+
perspective: 1200px;
|
|
4679
|
+
}
|
|
4680
|
+
|
|
4681
|
+
.swiper-3d .swiper-slide,
|
|
4682
|
+
.swiper-3d .swiper-cube-shadow {
|
|
4683
|
+
transform-style: preserve-3d;
|
|
4684
|
+
}
|
|
4685
|
+
|
|
4686
|
+
/* CSS Mode */
|
|
4687
|
+
.swiper-css-mode > .swiper-wrapper {
|
|
4688
|
+
overflow: auto;
|
|
4689
|
+
scrollbar-width: none;
|
|
4690
|
+
/* For Firefox */
|
|
4691
|
+
-ms-overflow-style: none;
|
|
4692
|
+
/* For Internet Explorer and Edge */
|
|
4693
|
+
}
|
|
4694
|
+
|
|
4695
|
+
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
|
|
4696
|
+
display: none;
|
|
4697
|
+
}
|
|
4698
|
+
|
|
4699
|
+
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
|
|
4700
|
+
scroll-snap-align: start start;
|
|
4701
|
+
}
|
|
4702
|
+
|
|
4703
|
+
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
|
|
4704
|
+
scroll-snap-type: x mandatory;
|
|
4705
|
+
}
|
|
4706
|
+
|
|
4707
|
+
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
|
|
4708
|
+
scroll-snap-type: y mandatory;
|
|
4709
|
+
}
|
|
4710
|
+
|
|
4711
|
+
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
|
|
4712
|
+
scroll-snap-type: none;
|
|
4713
|
+
}
|
|
4714
|
+
|
|
4715
|
+
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
|
|
4716
|
+
scroll-snap-align: none;
|
|
4717
|
+
}
|
|
4718
|
+
|
|
4719
|
+
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
|
|
4720
|
+
content: "";
|
|
4721
|
+
flex-shrink: 0;
|
|
4722
|
+
order: 9999;
|
|
4723
|
+
}
|
|
4724
|
+
|
|
4725
|
+
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
|
|
4726
|
+
scroll-snap-align: center center;
|
|
4727
|
+
scroll-snap-stop: always;
|
|
4728
|
+
}
|
|
4729
|
+
|
|
4730
|
+
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
|
|
4731
|
+
margin-inline-start: var(--swiper-centered-offset-before);
|
|
4732
|
+
}
|
|
4733
|
+
|
|
4734
|
+
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
|
|
4735
|
+
height: 100%;
|
|
4736
|
+
min-height: 1px;
|
|
4737
|
+
width: var(--swiper-centered-offset-after);
|
|
4738
|
+
}
|
|
4739
|
+
|
|
4740
|
+
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
|
|
4741
|
+
margin-block-start: var(--swiper-centered-offset-before);
|
|
4742
|
+
}
|
|
4743
|
+
|
|
4744
|
+
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
|
|
4745
|
+
width: 100%;
|
|
4746
|
+
min-width: 1px;
|
|
4747
|
+
height: var(--swiper-centered-offset-after);
|
|
4748
|
+
}
|
|
4749
|
+
|
|
4750
|
+
/* Slide styles start */
|
|
4751
|
+
/* 3D Shadows */
|
|
4752
|
+
.swiper-3d .swiper-slide-shadow,
|
|
4753
|
+
.swiper-3d .swiper-slide-shadow-left,
|
|
4754
|
+
.swiper-3d .swiper-slide-shadow-right,
|
|
4755
|
+
.swiper-3d .swiper-slide-shadow-top,
|
|
4756
|
+
.swiper-3d .swiper-slide-shadow-bottom,
|
|
4757
|
+
.swiper-3d .swiper-slide-shadow,
|
|
4758
|
+
.swiper-3d .swiper-slide-shadow-left,
|
|
4759
|
+
.swiper-3d .swiper-slide-shadow-right,
|
|
4760
|
+
.swiper-3d .swiper-slide-shadow-top,
|
|
4761
|
+
.swiper-3d .swiper-slide-shadow-bottom {
|
|
4762
|
+
position: absolute;
|
|
4763
|
+
left: 0;
|
|
4764
|
+
top: 0;
|
|
4765
|
+
width: 100%;
|
|
4766
|
+
height: 100%;
|
|
4767
|
+
pointer-events: none;
|
|
4768
|
+
z-index: 10;
|
|
4769
|
+
}
|
|
4770
|
+
|
|
4771
|
+
.swiper-3d .swiper-slide-shadow {
|
|
4772
|
+
background: rgba(0, 0, 0, 0.15);
|
|
4773
|
+
}
|
|
4774
|
+
|
|
4775
|
+
.swiper-3d .swiper-slide-shadow-left {
|
|
4776
|
+
background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
|
4777
|
+
}
|
|
4778
|
+
|
|
4779
|
+
.swiper-3d .swiper-slide-shadow-right {
|
|
4780
|
+
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
|
4781
|
+
}
|
|
4782
|
+
|
|
4783
|
+
.swiper-3d .swiper-slide-shadow-top {
|
|
4784
|
+
background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
|
4785
|
+
}
|
|
4786
|
+
|
|
4787
|
+
.swiper-3d .swiper-slide-shadow-bottom {
|
|
4788
|
+
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
|
4789
|
+
}
|
|
4790
|
+
|
|
4791
|
+
.swiper-lazy-preloader {
|
|
4792
|
+
width: 42px;
|
|
4793
|
+
height: 42px;
|
|
4794
|
+
position: absolute;
|
|
4795
|
+
left: 50%;
|
|
4796
|
+
top: 50%;
|
|
4797
|
+
margin-left: -21px;
|
|
4798
|
+
margin-top: -21px;
|
|
4799
|
+
z-index: 10;
|
|
4800
|
+
transform-origin: 50%;
|
|
4801
|
+
box-sizing: border-box;
|
|
4802
|
+
border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
|
|
4803
|
+
border-radius: 50%;
|
|
4804
|
+
border-top-color: transparent;
|
|
4805
|
+
}
|
|
4806
|
+
|
|
4807
|
+
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
|
|
4808
|
+
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
|
|
4809
|
+
animation: swiper-preloader-spin 1s infinite linear;
|
|
4810
|
+
}
|
|
4811
|
+
|
|
4812
|
+
.swiper-lazy-preloader-white {
|
|
4813
|
+
--swiper-preloader-color: #fff;
|
|
4814
|
+
}
|
|
4815
|
+
|
|
4816
|
+
.swiper-lazy-preloader-black {
|
|
4817
|
+
--swiper-preloader-color: #000;
|
|
4818
|
+
}
|
|
4819
|
+
|
|
4820
|
+
@keyframes swiper-preloader-spin {
|
|
4821
|
+
0% {
|
|
4822
|
+
transform: rotate(0deg);
|
|
4823
|
+
}
|
|
4824
|
+
100% {
|
|
4825
|
+
transform: rotate(360deg);
|
|
4826
|
+
}
|
|
4827
|
+
}
|
|
4828
|
+
/* Slide styles end */
|
package/package.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ncds/ui-admin",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "nhn-commerce의 어드민 디자인 시스템입니다.",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"barrel": "node barrel.js",
|
|
7
7
|
"build": "webpack --node-env production",
|
|
8
|
-
"build:
|
|
8
|
+
"build:cdn": "rm -rf dist && webpack --node-env production --config webpack.cdn.config.js && node scripts/verify-build.js --type=cdn",
|
|
9
|
+
"build:npm": "rm -rf dist && node scripts/build-npm.js && node scripts/verify-build.js --type=npm",
|
|
9
10
|
"dev": "webpack serve --node-env development --open --hot",
|
|
10
11
|
"dev:html": "webpack serve --node-env development --open --config webpack.html.config.js",
|
|
11
|
-
"
|
|
12
|
-
"lint": "eslint \"**/*.ts*\"",
|
|
12
|
+
"lint": "eslint src/**/*.tsx src/**/*.ts",
|
|
13
13
|
"major": "yarn version --major",
|
|
14
14
|
"minor": "yarn version --minor",
|
|
15
15
|
"patch": "yarn version --patch",
|
|
16
16
|
"prestart": "cross-env NODE_ENV=production yarn run build",
|
|
17
|
-
"publish:npm": "npm publish --access=public",
|
|
17
|
+
"publish:npm": "yarn build:npm && npm publish --access=public",
|
|
18
|
+
"publish:cdn": "yarn build:cdn && node scripts/publish-cdn.js",
|
|
18
19
|
"start": "webpack --node-env development",
|
|
19
|
-
"test": "react-scripts test",
|
|
20
20
|
"tsc": "tsc --pretty --listFiles"
|
|
21
21
|
},
|
|
22
22
|
"author": {
|
|
@@ -65,6 +65,9 @@
|
|
|
65
65
|
"@ncds/types-layout": "^1.0.0",
|
|
66
66
|
"@ncds/ui-admin-icon": "0.0.16",
|
|
67
67
|
"classnames": "^2.3.2",
|
|
68
|
+
"lodash": "^4.17.21",
|
|
69
|
+
"lodash-es": "^4.17.21",
|
|
70
|
+
"moment": "^2.30.1",
|
|
68
71
|
"react-flatpickr": "^4.0.10",
|
|
69
72
|
"swiper": "^11.1.1"
|
|
70
73
|
},
|
|
@@ -74,6 +77,7 @@
|
|
|
74
77
|
"@babel/preset-env": "^7.22.9",
|
|
75
78
|
"@babel/preset-react": "^7.22.5",
|
|
76
79
|
"@babel/preset-typescript": "^7.22.5",
|
|
80
|
+
"@ncds/cdn-manager": "*",
|
|
77
81
|
"@types/node": "^20.4.5",
|
|
78
82
|
"@types/react": "^18.2.18",
|
|
79
83
|
"@types/react-dom": "^18.2.7",
|
|
@@ -101,6 +105,7 @@
|
|
|
101
105
|
"sass-loader": "^13.3.2",
|
|
102
106
|
"style-loader": "^3.3.3",
|
|
103
107
|
"ts-loader": "^9.4.4",
|
|
108
|
+
"ts-node": "^10.9.2",
|
|
104
109
|
"tsconfig": "*",
|
|
105
110
|
"typescript": "5.0.4",
|
|
106
111
|
"webpack": "^5.88.2",
|