@jetbrains/ring-ui 6.0.7-beta.0 → 6.0.7
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/README.md +1 -1
- package/components/alert/alert.css +12 -13
- package/components/alert/container.css +4 -6
- package/components/alert-service/alert-service.stories.css +0 -3
- package/components/auth/down-notification.css +2 -4
- package/components/auth-dialog/auth-dialog.css +10 -12
- package/components/badge/badge.css +1 -3
- package/components/button/button.css +13 -14
- package/components/button-group/button-group.css +6 -5
- package/components/button-set/button-set.css +1 -2
- package/components/button-toolbar/button-toolbar.css +1 -2
- package/components/checkbox/checkbox.css +7 -7
- package/components/checkbox/checkbox.js +2 -2
- package/components/code/code.css +3 -5
- package/components/collapse/collapse-content.d.ts +11 -0
- package/components/collapse/collapse-content.js +72 -0
- package/components/collapse/collapse-context.d.ts +10 -0
- package/components/collapse/collapse-context.js +10 -0
- package/components/collapse/collapse-control.d.ts +11 -0
- package/components/collapse/collapse-control.js +22 -0
- package/components/collapse/collapse.css +40 -0
- package/components/collapse/collapse.d.ts +12 -0
- package/components/collapse/collapse.js +26 -0
- package/components/collapse/collapse.stories.css +25 -0
- package/components/collapse/consts.d.ts +4 -0
- package/components/collapse/consts.js +4 -0
- package/components/collapse/utils.d.ts +1 -0
- package/components/collapse/utils.js +1 -0
- package/components/confirm/confirm.css +1 -3
- package/components/content-layout/content-layout.css +7 -7
- package/components/data-list/data-list.css +4 -5
- package/components/date-picker/consts.js +1 -1
- package/components/date-picker/date-picker.css +40 -41
- package/components/date-picker/date-picker.js +7 -7
- package/components/date-picker/date-popup.js +4 -4
- package/components/date-picker/day.js +9 -9
- package/components/date-picker/month-names.js +6 -6
- package/components/date-picker/month-slider.js +3 -3
- package/components/date-picker/month.js +5 -5
- package/components/date-picker/months.js +6 -6
- package/components/date-picker/weekdays.js +4 -4
- package/components/date-picker/years.js +8 -8
- package/components/dialog/dialog.css +12 -13
- package/components/editable-heading/editable-heading.css +8 -8
- package/components/error-bubble/error-bubble-legacy.css +6 -8
- package/components/error-bubble/error-bubble.css +6 -8
- package/components/footer/footer.css +6 -8
- package/components/form/form.css +31 -33
- package/components/global/global.css +1 -7
- package/components/global/variables.css +2 -2
- package/components/global/variables_dark.css +6 -6
- package/components/grid/grid.css +6 -6
- package/components/group/group.css +1 -3
- package/components/header/header.css +12 -14
- package/components/header/services.css +12 -14
- package/components/icon/icon.css +7 -4
- package/components/input/input-legacy.css +2 -4
- package/components/input/input.css +8 -10
- package/components/input-size/input-size.css +4 -6
- package/components/island/island.css +6 -7
- package/components/island-legacy/island-legacy.css +6 -8
- package/components/line/line.css +1 -3
- package/components/link/link.css +1 -1
- package/components/link/link.d.ts +2 -2
- package/components/link/link.js +1 -1
- package/components/list/list.css +17 -20
- package/components/loader/loader.css +1 -3
- package/components/loader-inline/loader-inline.css +5 -6
- package/components/login-dialog/login-dialog.css +1 -3
- package/components/markdown/markdown.css +2 -3
- package/components/message/message.css +5 -8
- package/components/old-browsers-message/old-browsers-message.css +2 -4
- package/components/pager/pager.css +2 -4
- package/components/panel/panel.css +3 -5
- package/components/progress-bar/progress-bar.css +3 -4
- package/components/query-assist/query-assist.css +3 -4
- package/components/radio/radio.css +8 -11
- package/components/select/select-popup.css +9 -11
- package/components/select/select.css +13 -14
- package/components/sidebar/sidebar.css +13 -15
- package/components/table/table.css +15 -17
- package/components/table-legacy/table-legacy.css +22 -24
- package/components/table-legacy/table-legacy__toolbar.css +2 -4
- package/components/tabs/tabs.css +3 -4
- package/components/tag/tag.css +12 -13
- package/components/tags-input/tags-input.css +1 -2
- package/components/toggle/toggle.css +46 -55
- package/components/tooltip/tooltip.css +3 -5
- package/components/user-agreement/user-agreement.css +2 -2
- package/components/user-card/user-card.css +3 -5
- package/package.json +62 -61
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import React, { useCallback, useId, useState } from 'react';
|
|
2
|
+
import { CollapseContext } from './collapse-context';
|
|
3
|
+
import { BASE_ANIMATION_DURATION } from './consts';
|
|
4
|
+
/**
|
|
5
|
+
* @name Collapse
|
|
6
|
+
*/
|
|
7
|
+
export const Collapse = ({ children, duration = BASE_ANIMATION_DURATION, disableAnimation = false, className = '', onChange = () => { } }) => {
|
|
8
|
+
const [collapsed, toggle] = useState(true);
|
|
9
|
+
const id = useId();
|
|
10
|
+
const setCollapsed = useCallback(() => {
|
|
11
|
+
toggle(!collapsed);
|
|
12
|
+
onChange(!collapsed);
|
|
13
|
+
}, [toggle, onChange, collapsed]);
|
|
14
|
+
return (<div className={className}>
|
|
15
|
+
<CollapseContext.Provider value={{
|
|
16
|
+
collapsed,
|
|
17
|
+
setCollapsed,
|
|
18
|
+
duration,
|
|
19
|
+
disableAnimation,
|
|
20
|
+
id
|
|
21
|
+
}}>
|
|
22
|
+
{children}
|
|
23
|
+
</CollapseContext.Provider>
|
|
24
|
+
</div>);
|
|
25
|
+
};
|
|
26
|
+
export default Collapse;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
.container {
|
|
2
|
+
width: 400px;
|
|
3
|
+
padding: 10px;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.border {
|
|
7
|
+
border: 1px solid var(--ring-line-color);
|
|
8
|
+
border-radius: 5px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.loaderWrapper {
|
|
12
|
+
display: flex;
|
|
13
|
+
align-items: center;
|
|
14
|
+
justify-content: center;
|
|
15
|
+
|
|
16
|
+
min-height: 200px;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.content {
|
|
20
|
+
display: flex;
|
|
21
|
+
align-items: center;
|
|
22
|
+
justify-content: center;
|
|
23
|
+
|
|
24
|
+
height: 500px;
|
|
25
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export declare const COLLAPSE_CONTROL_TEST_ID = "ring-collapse-control";
|
|
2
|
+
export declare const COLLAPSE_CONTENT_CONTAINER_TEST_ID = "ring-collapse-content-container";
|
|
3
|
+
export declare const COLLAPSE_CONTENT_TEST_ID = "ring-collapse-content";
|
|
4
|
+
export declare const BASE_ANIMATION_DURATION = 200;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const toPx: (value: number) => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const toPx = (value) => `${value}px`;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@import "../global/variables.css";
|
|
2
2
|
|
|
3
|
-
@value
|
|
4
|
-
@value sidebarWidth: calc(unit * 30);
|
|
3
|
+
@value extra-small-screen-media, small-screen-media from "../global/global.css";
|
|
4
|
+
@value sidebarWidth: calc(var(--ring-unit) * 30);
|
|
5
5
|
|
|
6
6
|
.contentLayout {
|
|
7
7
|
position: relative;
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
flex-grow: 2;
|
|
16
16
|
|
|
17
17
|
width: 100%; /* without this hack IE11 render contentLayoutContent wider than its container */
|
|
18
|
-
margin: 0 calc(unit * 4);
|
|
18
|
+
margin: 0 calc(var(--ring-unit) * 4);
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
.sidebarContainer {
|
|
@@ -34,13 +34,13 @@
|
|
|
34
34
|
min-width: sidebarWidth;
|
|
35
35
|
max-width: sidebarWidth;
|
|
36
36
|
height: 100%;
|
|
37
|
-
padding-right: calc(unit * 2);
|
|
38
|
-
padding-left: calc(unit * 4);
|
|
37
|
+
padding-right: calc(var(--ring-unit) * 2);
|
|
38
|
+
padding-left: calc(var(--ring-unit) * 4);
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
.sidebarRight {
|
|
42
|
-
padding-right: calc(unit * 4);
|
|
43
|
-
padding-left: calc(unit * 2);
|
|
42
|
+
padding-right: calc(var(--ring-unit) * 4);
|
|
43
|
+
padding-left: calc(var(--ring-unit) * 2);
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
.sidebarFixedTop {
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
@import "../global/variables.css";
|
|
2
2
|
|
|
3
|
-
@value unit from "../global/global.css";
|
|
4
3
|
@value height, compensate from "../table/table.css";
|
|
5
4
|
|
|
6
5
|
.dataListWrapper {
|
|
@@ -25,8 +24,8 @@
|
|
|
25
24
|
align-items: center;
|
|
26
25
|
|
|
27
26
|
box-sizing: content-box;
|
|
28
|
-
height:
|
|
29
|
-
padding: 0 calc(unit * 5) compensate 0;
|
|
27
|
+
height: calc(4 * var(--ring-unit));
|
|
28
|
+
padding: 0 calc(var(--ring-unit) * 5) compensate 0;
|
|
30
29
|
|
|
31
30
|
outline: none;
|
|
32
31
|
|
|
@@ -57,11 +56,11 @@
|
|
|
57
56
|
.boxes {
|
|
58
57
|
display: flex;
|
|
59
58
|
|
|
60
|
-
min-width: calc(unit * 3);
|
|
59
|
+
min-width: calc(var(--ring-unit) * 3);
|
|
61
60
|
}
|
|
62
61
|
|
|
63
62
|
.checkboxBox {
|
|
64
|
-
width: calc(unit * 3);
|
|
63
|
+
width: calc(var(--ring-unit) * 3);
|
|
65
64
|
}
|
|
66
65
|
|
|
67
66
|
.collapseButton {
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
@import "../global/variables.css";
|
|
2
2
|
@import "../global/global.css";
|
|
3
3
|
|
|
4
|
-
@value unit
|
|
5
|
-
@value
|
|
6
|
-
@value
|
|
7
|
-
@value
|
|
8
|
-
@value
|
|
9
|
-
@value yearWidth: calc(unit * 6);
|
|
4
|
+
@value cellSize: calc(var(--ring-unit) * 3);
|
|
5
|
+
@value calHeight: calc(var(--ring-unit) * 36);
|
|
6
|
+
@value calWidth: calc(var(--ring-unit) * 37);
|
|
7
|
+
@value yearHeight: calc(var(--ring-unit) * 4);
|
|
8
|
+
@value yearWidth: calc(var(--ring-unit) * 6);
|
|
10
9
|
|
|
11
10
|
:root {
|
|
12
11
|
/* stylelint-disable-next-line color-no-hex */
|
|
@@ -29,22 +28,22 @@
|
|
|
29
28
|
}
|
|
30
29
|
|
|
31
30
|
.datePicker.datePicker {
|
|
32
|
-
padding-right: unit;
|
|
31
|
+
padding-right: var(--ring-unit);
|
|
33
32
|
|
|
34
33
|
&.inline {
|
|
35
34
|
padding: 0;
|
|
36
35
|
}
|
|
37
36
|
|
|
38
37
|
&.sizeS {
|
|
39
|
-
width: calc(unit * 12);
|
|
38
|
+
width: calc(var(--ring-unit) * 12);
|
|
40
39
|
}
|
|
41
40
|
|
|
42
41
|
&.sizeM {
|
|
43
|
-
width: calc(unit * 30);
|
|
42
|
+
width: calc(var(--ring-unit) * 30);
|
|
44
43
|
}
|
|
45
44
|
|
|
46
45
|
&.sizeL {
|
|
47
|
-
width: calc(unit * 50);
|
|
46
|
+
width: calc(var(--ring-unit) * 50);
|
|
48
47
|
}
|
|
49
48
|
|
|
50
49
|
&.sizeFULL {
|
|
@@ -59,13 +58,13 @@
|
|
|
59
58
|
.displayDate {
|
|
60
59
|
display: inline-block;
|
|
61
60
|
|
|
62
|
-
min-width: calc(unit * 11);
|
|
61
|
+
min-width: calc(var(--ring-unit) * 11);
|
|
63
62
|
|
|
64
63
|
text-align: left;
|
|
65
64
|
}
|
|
66
65
|
|
|
67
66
|
.displayDate.displayRange {
|
|
68
|
-
min-width: calc(unit * 22);
|
|
67
|
+
min-width: calc(var(--ring-unit) * 22);
|
|
69
68
|
}
|
|
70
69
|
|
|
71
70
|
.clear {
|
|
@@ -103,7 +102,7 @@
|
|
|
103
102
|
|
|
104
103
|
display: flex;
|
|
105
104
|
|
|
106
|
-
padding-left: calc(unit * 2);
|
|
105
|
+
padding-left: calc(var(--ring-unit) * 2);
|
|
107
106
|
}
|
|
108
107
|
|
|
109
108
|
.filter {
|
|
@@ -111,14 +110,14 @@
|
|
|
111
110
|
}
|
|
112
111
|
|
|
113
112
|
.calendarIcon {
|
|
114
|
-
margin-right: calc(unit / 2);
|
|
113
|
+
margin-right: calc(var(--ring-unit) / 2);
|
|
115
114
|
|
|
116
115
|
color: var(--ring-icon-color);
|
|
117
116
|
}
|
|
118
117
|
|
|
119
118
|
.anchor {
|
|
120
119
|
width: 100%;
|
|
121
|
-
padding: 0 unit;
|
|
120
|
+
padding: 0 var(--ring-unit);
|
|
122
121
|
|
|
123
122
|
text-align: start;
|
|
124
123
|
white-space: nowrap;
|
|
@@ -145,7 +144,7 @@
|
|
|
145
144
|
.fromInput {
|
|
146
145
|
position: relative;
|
|
147
146
|
|
|
148
|
-
flex-basis: calc(unit * 13);
|
|
147
|
+
flex-basis: calc(var(--ring-unit) * 13);
|
|
149
148
|
flex-grow: 0;
|
|
150
149
|
flex-shrink: 0;
|
|
151
150
|
}
|
|
@@ -154,24 +153,24 @@
|
|
|
154
153
|
&::after {
|
|
155
154
|
position: absolute;
|
|
156
155
|
top: 0;
|
|
157
|
-
right: unit;
|
|
156
|
+
right: var(--ring-unit);
|
|
158
157
|
|
|
159
158
|
content: "—";
|
|
160
159
|
|
|
161
|
-
line-height: calc(4 * unit - 2px);
|
|
160
|
+
line-height: calc(4 * var(--ring-unit) - 2px);
|
|
162
161
|
}
|
|
163
162
|
}
|
|
164
163
|
|
|
165
164
|
.toInput {
|
|
166
|
-
flex-basis: calc(unit * 13);
|
|
165
|
+
flex-basis: calc(var(--ring-unit) * 13);
|
|
167
166
|
flex-grow: 1;
|
|
168
167
|
flex-shrink: 0;
|
|
169
168
|
|
|
170
|
-
width: calc(unit * 13);
|
|
169
|
+
width: calc(var(--ring-unit) * 13);
|
|
171
170
|
}
|
|
172
171
|
|
|
173
172
|
.dateInput {
|
|
174
|
-
flex-basis: calc(unit * 11);
|
|
173
|
+
flex-basis: calc(var(--ring-unit) * 11);
|
|
175
174
|
flex-grow: 1;
|
|
176
175
|
flex-shrink: 0;
|
|
177
176
|
}
|
|
@@ -181,17 +180,17 @@
|
|
|
181
180
|
|
|
182
181
|
&::before {
|
|
183
182
|
position: absolute;
|
|
184
|
-
left: calc(-1 * unit);
|
|
183
|
+
left: calc(-1 * var(--ring-unit));
|
|
185
184
|
|
|
186
185
|
content: ",";
|
|
187
186
|
|
|
188
|
-
line-height: calc(4 * unit - 3px);
|
|
187
|
+
line-height: calc(4 * var(--ring-unit) - 3px);
|
|
189
188
|
}
|
|
190
189
|
}
|
|
191
190
|
|
|
192
191
|
.weekdays {
|
|
193
|
-
height: calc(unit * 4);
|
|
194
|
-
padding: 5px calc(unit * 2) 0;
|
|
192
|
+
height: calc(var(--ring-unit) * 4);
|
|
193
|
+
padding: 5px calc(var(--ring-unit) * 2) 0;
|
|
195
194
|
|
|
196
195
|
color: var(--ring-secondary-color);
|
|
197
196
|
}
|
|
@@ -237,8 +236,8 @@
|
|
|
237
236
|
display: flex;
|
|
238
237
|
flex-wrap: wrap;
|
|
239
238
|
|
|
240
|
-
width: calc(unit * 21);
|
|
241
|
-
margin: calc(unit * 2);
|
|
239
|
+
width: calc(var(--ring-unit) * 21);
|
|
240
|
+
margin: calc(var(--ring-unit) * 2);
|
|
242
241
|
}
|
|
243
242
|
|
|
244
243
|
.month.month > * {
|
|
@@ -252,9 +251,9 @@
|
|
|
252
251
|
.monthTitle {
|
|
253
252
|
/* IE workaround, see https://github.com/philipwalton/flexbugs#7-flex-basis-doesnt-account-for-box-sizingborder-box */
|
|
254
253
|
|
|
255
|
-
width: calc(unit * 12);
|
|
254
|
+
width: calc(var(--ring-unit) * 12);
|
|
256
255
|
|
|
257
|
-
padding-left: calc(unit * 0.5);
|
|
256
|
+
padding-left: calc(var(--ring-unit) * 0.5);
|
|
258
257
|
|
|
259
258
|
text-align: left;
|
|
260
259
|
|
|
@@ -263,7 +262,7 @@
|
|
|
263
262
|
font-weight: bold;
|
|
264
263
|
|
|
265
264
|
@supports (flex-basis: 1px) {
|
|
266
|
-
flex-basis: calc(unit * 12);
|
|
265
|
+
flex-basis: calc(var(--ring-unit) * 12);
|
|
267
266
|
|
|
268
267
|
width: auto;
|
|
269
268
|
}
|
|
@@ -341,7 +340,7 @@
|
|
|
341
340
|
&::after {
|
|
342
341
|
position: absolute;
|
|
343
342
|
|
|
344
|
-
width: calc(unit * 2);
|
|
343
|
+
width: calc(var(--ring-unit) * 2);
|
|
345
344
|
height: 100%;
|
|
346
345
|
|
|
347
346
|
content: "";
|
|
@@ -384,8 +383,8 @@
|
|
|
384
383
|
position: absolute;
|
|
385
384
|
z-index: var(--ring-invisible-element-z-index);
|
|
386
385
|
|
|
387
|
-
width: calc(unit * 23);
|
|
388
|
-
height: calc(unit * 8);
|
|
386
|
+
width: calc(var(--ring-unit) * 23);
|
|
387
|
+
height: calc(var(--ring-unit) * 8);
|
|
389
388
|
|
|
390
389
|
content: "";
|
|
391
390
|
transition: background-color var(--ring-ease);
|
|
@@ -403,7 +402,7 @@
|
|
|
403
402
|
|
|
404
403
|
&.Monday {
|
|
405
404
|
&::after {
|
|
406
|
-
height: calc(unit * 5);
|
|
405
|
+
height: calc(var(--ring-unit) * 5);
|
|
407
406
|
}
|
|
408
407
|
}
|
|
409
408
|
|
|
@@ -413,10 +412,10 @@
|
|
|
413
412
|
&::before {
|
|
414
413
|
position: absolute;
|
|
415
414
|
z-index: var(--ring-invisible-element-z-index);
|
|
416
|
-
top: calc(unit * -8);
|
|
415
|
+
top: calc(var(--ring-unit) * -8);
|
|
417
416
|
left: 600%;
|
|
418
417
|
|
|
419
|
-
width: calc(unit * 2);
|
|
418
|
+
width: calc(var(--ring-unit) * 2);
|
|
420
419
|
height: 100%;
|
|
421
420
|
|
|
422
421
|
content: "";
|
|
@@ -430,7 +429,7 @@
|
|
|
430
429
|
.Sunday {
|
|
431
430
|
&::before,
|
|
432
431
|
&::after {
|
|
433
|
-
height: calc(unit * 5);
|
|
432
|
+
height: calc(var(--ring-unit) * 5);
|
|
434
433
|
}
|
|
435
434
|
}
|
|
436
435
|
|
|
@@ -469,7 +468,7 @@
|
|
|
469
468
|
.today::before {
|
|
470
469
|
position: absolute;
|
|
471
470
|
top: 0;
|
|
472
|
-
left: calc(unit * 0.5);
|
|
471
|
+
left: calc(var(--ring-unit) * 0.5);
|
|
473
472
|
|
|
474
473
|
content: "•";
|
|
475
474
|
|
|
@@ -496,7 +495,7 @@
|
|
|
496
495
|
right: 0;
|
|
497
496
|
bottom: 0;
|
|
498
497
|
|
|
499
|
-
width: calc(unit * 6);
|
|
498
|
+
width: calc(var(--ring-unit) * 6);
|
|
500
499
|
|
|
501
500
|
background-color: var(--ring-content-background-color);
|
|
502
501
|
box-shadow: -1px 0 var(--ring-line-color);
|
|
@@ -513,7 +512,7 @@
|
|
|
513
512
|
width: 100%;
|
|
514
513
|
|
|
515
514
|
height: cellSize;
|
|
516
|
-
padding-left: calc(unit * 1.5);
|
|
515
|
+
padding-left: calc(var(--ring-unit) * 1.5);
|
|
517
516
|
|
|
518
517
|
text-transform: capitalize;
|
|
519
518
|
|
|
@@ -532,7 +531,7 @@
|
|
|
532
531
|
|
|
533
532
|
width: calc(100% + 1px);
|
|
534
533
|
|
|
535
|
-
height: calc(unit * 6);
|
|
534
|
+
height: calc(var(--ring-unit) * 6);
|
|
536
535
|
|
|
537
536
|
cursor: grab;
|
|
538
537
|
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import React, { PureComponent } from 'react';
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import classNames from 'classnames';
|
|
4
|
-
import formatDate from 'date-fns/format';
|
|
5
|
-
import isSameDay from 'date-fns/isSameDay';
|
|
6
|
-
import isSameMonth from 'date-fns/isSameMonth';
|
|
7
|
-
import isSameYear from 'date-fns/isSameYear';
|
|
8
|
-
import isValid from 'date-fns/isValid';
|
|
9
|
-
import parse from 'date-fns/parse';
|
|
10
|
-
import set from 'date-fns/set';
|
|
4
|
+
import { format as formatDate } from 'date-fns/format';
|
|
5
|
+
import { isSameDay } from 'date-fns/isSameDay';
|
|
6
|
+
import { isSameMonth } from 'date-fns/isSameMonth';
|
|
7
|
+
import { isSameYear } from 'date-fns/isSameYear';
|
|
8
|
+
import { isValid } from 'date-fns/isValid';
|
|
9
|
+
import { parse } from 'date-fns/parse';
|
|
10
|
+
import { set } from 'date-fns/set';
|
|
11
11
|
import calendarIcon from '@jetbrains/icons/calendar';
|
|
12
12
|
import chevronDownIcon from '@jetbrains/icons/chevron-down';
|
|
13
13
|
import memoize from '../global/memoize';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import React, { Component } from 'react';
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
|
-
import isAfter from 'date-fns/isAfter';
|
|
4
|
-
import isBefore from 'date-fns/isBefore';
|
|
5
|
-
import isSameDay from 'date-fns/isSameDay';
|
|
6
|
-
import startOfDay from 'date-fns/startOfDay';
|
|
3
|
+
import { isAfter } from 'date-fns/isAfter';
|
|
4
|
+
import { isBefore } from 'date-fns/isBefore';
|
|
5
|
+
import { isSameDay } from 'date-fns/isSameDay';
|
|
6
|
+
import { startOfDay } from 'date-fns/startOfDay';
|
|
7
7
|
import { set } from 'date-fns';
|
|
8
8
|
import memoize from '../global/memoize';
|
|
9
9
|
import DateInput from './date-input';
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import React, { Component } from 'react';
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import classNames from 'classnames';
|
|
4
|
-
import addDays from 'date-fns/addDays';
|
|
5
|
-
import format from 'date-fns/format';
|
|
6
|
-
import getDay from 'date-fns/getDay';
|
|
7
|
-
import getDate from 'date-fns/getDate';
|
|
8
|
-
import isAfter from 'date-fns/isAfter';
|
|
9
|
-
import isBefore from 'date-fns/isBefore';
|
|
10
|
-
import isSameDay from 'date-fns/isSameDay';
|
|
11
|
-
import isToday from 'date-fns/isToday';
|
|
12
|
-
import startOfDay from 'date-fns/startOfDay';
|
|
4
|
+
import { addDays } from 'date-fns/addDays';
|
|
5
|
+
import { format } from 'date-fns/format';
|
|
6
|
+
import { getDay } from 'date-fns/getDay';
|
|
7
|
+
import { getDate } from 'date-fns/getDate';
|
|
8
|
+
import { isAfter } from 'date-fns/isAfter';
|
|
9
|
+
import { isBefore } from 'date-fns/isBefore';
|
|
10
|
+
import { isSameDay } from 'date-fns/isSameDay';
|
|
11
|
+
import { isToday } from 'date-fns/isToday';
|
|
12
|
+
import { startOfDay } from 'date-fns/startOfDay';
|
|
13
13
|
import { dateType, weekdays } from './consts';
|
|
14
14
|
import styles from './date-picker.css';
|
|
15
15
|
let hoverTO;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import React, { PureComponent } from 'react';
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import classNames from 'classnames';
|
|
4
|
-
import endOfMonth from 'date-fns/endOfMonth';
|
|
5
|
-
import format from 'date-fns/format';
|
|
6
|
-
import isThisMonth from 'date-fns/isThisMonth';
|
|
7
|
-
import set from 'date-fns/set';
|
|
8
|
-
import startOfDay from 'date-fns/startOfDay';
|
|
9
|
-
import startOfYear from 'date-fns/startOfYear';
|
|
4
|
+
import { endOfMonth } from 'date-fns/endOfMonth';
|
|
5
|
+
import { format } from 'date-fns/format';
|
|
6
|
+
import { isThisMonth } from 'date-fns/isThisMonth';
|
|
7
|
+
import { set } from 'date-fns/set';
|
|
8
|
+
import { startOfDay } from 'date-fns/startOfDay';
|
|
9
|
+
import { startOfYear } from 'date-fns/startOfYear';
|
|
10
10
|
import linearFunction from '../global/linear-function';
|
|
11
11
|
import MonthSlider from './month-slider';
|
|
12
12
|
import { YEAR, MIDDLE_DAY, yearScrollSpeed, dateType } from './consts';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import React, { PureComponent } from 'react';
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import classNames from 'classnames';
|
|
4
|
-
import addYears from 'date-fns/addYears';
|
|
5
|
-
import startOfDay from 'date-fns/startOfDay';
|
|
6
|
-
import subYears from 'date-fns/subYears';
|
|
4
|
+
import { addYears } from 'date-fns/addYears';
|
|
5
|
+
import { startOfDay } from 'date-fns/startOfDay';
|
|
6
|
+
import { subYears } from 'date-fns/subYears';
|
|
7
7
|
import linearFunction from '../global/linear-function';
|
|
8
8
|
import units, { dateType, yearScrollSpeed } from './consts';
|
|
9
9
|
import styles from './date-picker.css';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import addDays from 'date-fns/addDays';
|
|
3
|
-
import endOfMonth from 'date-fns/endOfMonth';
|
|
4
|
-
import format from 'date-fns/format';
|
|
5
|
-
import getDay from 'date-fns/getDay';
|
|
6
|
-
import setDay from 'date-fns/setDay';
|
|
2
|
+
import { addDays } from 'date-fns/addDays';
|
|
3
|
+
import { endOfMonth } from 'date-fns/endOfMonth';
|
|
4
|
+
import { format } from 'date-fns/format';
|
|
5
|
+
import { getDay } from 'date-fns/getDay';
|
|
6
|
+
import { setDay } from 'date-fns/setDay';
|
|
7
7
|
import PropTypes from 'prop-types';
|
|
8
8
|
import Day from './day';
|
|
9
9
|
import { dateType, WEEK, weekdays } from './consts';
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import React, { useEffect, useMemo, useRef } from 'react';
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
|
-
import addMonths from 'date-fns/addMonths';
|
|
4
|
-
import getDay from 'date-fns/getDay';
|
|
5
|
-
import getDaysInMonth from 'date-fns/getDaysInMonth';
|
|
6
|
-
import startOfMonth from 'date-fns/startOfMonth';
|
|
7
|
-
import subMonths from 'date-fns/subMonths';
|
|
8
|
-
import endOfMonth from 'date-fns/endOfMonth';
|
|
3
|
+
import { addMonths } from 'date-fns/addMonths';
|
|
4
|
+
import { getDay } from 'date-fns/getDay';
|
|
5
|
+
import { getDaysInMonth } from 'date-fns/getDaysInMonth';
|
|
6
|
+
import { startOfMonth } from 'date-fns/startOfMonth';
|
|
7
|
+
import { subMonths } from 'date-fns/subMonths';
|
|
8
|
+
import { endOfMonth } from 'date-fns/endOfMonth';
|
|
9
9
|
import scheduleRAF from '../global/schedule-raf';
|
|
10
10
|
import linearFunction from '../global/linear-function';
|
|
11
11
|
import useEventCallback from '../global/use-event-callback';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import classNames from 'classnames';
|
|
3
|
-
import getDay from 'date-fns/getDay';
|
|
4
|
-
import format from 'date-fns/format';
|
|
5
|
-
import setDay from 'date-fns/setDay';
|
|
6
|
-
import startOfDay from 'date-fns/startOfDay';
|
|
3
|
+
import { getDay } from 'date-fns/getDay';
|
|
4
|
+
import { format } from 'date-fns/format';
|
|
5
|
+
import { setDay } from 'date-fns/setDay';
|
|
6
|
+
import { startOfDay } from 'date-fns/startOfDay';
|
|
7
7
|
import PropTypes from 'prop-types';
|
|
8
8
|
import { weekdays } from './consts';
|
|
9
9
|
import styles from './date-picker.css';
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import React, { createRef, PureComponent } from 'react';
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import classNames from 'classnames';
|
|
4
|
-
import addYears from 'date-fns/addYears';
|
|
5
|
-
import getYear from 'date-fns/getYear';
|
|
6
|
-
import format from 'date-fns/format';
|
|
7
|
-
import isSameYear from 'date-fns/isSameYear';
|
|
8
|
-
import isThisYear from 'date-fns/isThisYear';
|
|
9
|
-
import setYear from 'date-fns/setYear';
|
|
10
|
-
import startOfYear from 'date-fns/startOfYear';
|
|
11
|
-
import subYears from 'date-fns/subYears';
|
|
4
|
+
import { addYears } from 'date-fns/addYears';
|
|
5
|
+
import { getYear } from 'date-fns/getYear';
|
|
6
|
+
import { format } from 'date-fns/format';
|
|
7
|
+
import { isSameYear } from 'date-fns/isSameYear';
|
|
8
|
+
import { isThisYear } from 'date-fns/isThisYear';
|
|
9
|
+
import { setYear } from 'date-fns/setYear';
|
|
10
|
+
import { startOfYear } from 'date-fns/startOfYear';
|
|
11
|
+
import { subYears } from 'date-fns/subYears';
|
|
12
12
|
import linearFunction from '../global/linear-function';
|
|
13
13
|
import styles from './date-picker.css';
|
|
14
14
|
import units, { dateType, DOUBLE, HALF, yearDuration } from './consts';
|