@qn-pandora/pandora-component 5.1.1 → 5.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/components/AutoComplete/style.css +17 -17
- package/es/components/Button/style.css +69 -69
- package/es/components/Button/style.less +1 -1
- package/es/components/Card/style.css +11 -11
- package/es/components/CheckTransformList/style.css +19 -19
- package/es/components/Checkbox/index.js +9 -1
- package/es/components/CheckboxList/style.css +5 -5
- package/es/components/Collapse/style.css +1 -1
- package/es/components/DateTimePicker/Base/index.d.ts +3 -0
- package/es/components/DateTimePicker/Base/index.js +51 -6
- package/es/components/DateTimePicker/Base/style.css +67 -61
- package/es/components/DateTimePicker/Base/style.less +7 -0
- package/es/components/DateTimePicker/DisplayInput/index.js +3 -1
- package/es/components/DateTimePicker/DisplayInput/style.css +14 -14
- package/es/components/DateTimePicker/constants.d.ts +7 -1
- package/es/components/DateTimePicker/constants.js +1 -0
- package/es/components/DateTimePicker/time.d.ts +1 -0
- package/es/components/DateTimePicker/time.js +1 -0
- package/es/components/DateTimePicker/transform.js +4 -2
- package/es/components/Drawer/index.d.ts +1 -1
- package/es/components/FileResumable/index.js +2 -3
- package/es/components/FileResumable/style.css +8 -8
- package/es/components/FlameGraph/customTooltip.d.ts +22 -0
- package/es/components/FlameGraph/customTooltip.js +91 -0
- package/es/components/FlameGraph/index.d.ts +16 -0
- package/es/components/FlameGraph/index.js +96 -0
- package/es/components/FlameGraph/style.css +8 -0
- package/es/components/FlameGraph/style.less +14 -0
- package/es/components/Input/style.css +14 -14
- package/es/components/Menu/Option.d.ts +1 -1
- package/es/components/Menu/Option.js +12 -4
- package/es/components/Menu/style.css +23 -23
- package/es/components/Modal/style.css +1 -1
- package/es/components/NameExplainTooltip/style.css +1 -1
- package/es/components/OptionList/InlineOptionList/style.css +1 -1
- package/es/components/OptionList/OptionItem/style.css +2 -2
- package/es/components/OptionList/PopoverOptionList/style.css +3 -3
- package/es/components/OptionList/style.css +6 -6
- package/es/components/RadioGroup/style.css +35 -32
- package/es/components/RadioGroup/style.less +4 -0
- package/es/components/RangeInput/style.css +29 -29
- package/es/components/Selector/style.css +17 -17
- package/es/components/Spin/style.css +2 -2
- package/es/components/Steps/style.css +16 -16
- package/es/components/Table/ColumnSetting/index.d.ts +1 -0
- package/es/components/Table/ColumnSetting/index.js +19 -14
- package/es/components/Table/ColumnTag/style.css +4 -4
- package/es/components/Table/EmptyText.d.ts +7 -0
- package/es/components/Table/EmptyText.js +22 -0
- package/es/components/Table/ResizableTitle/index.js +12 -2
- package/es/components/Table/index.d.ts +11 -83
- package/es/components/Table/index.js +114 -287
- package/es/components/Table/style.css +54 -44
- package/es/components/Table/style.less +23 -4
- package/es/components/Table/type.d.ts +63 -0
- package/es/components/Table/type.js +5 -0
- package/es/components/Table/util.d.ts +59 -0
- package/es/components/Table/util.js +224 -0
- package/es/components/Tabs/style.css +10 -10
- package/es/components/TagList/Tag/style.css +5 -5
- package/es/components/TagList/TagSwitch/style.css +1 -1
- package/es/components/TagList/style.css +6 -6
- package/es/components/Timeline/TimelineItem/style.css +1 -1
- package/es/components/TreeSelector/style.css +21 -21
- package/es/constants/language/datetime/en.js +4 -2
- package/es/constants/language/datetime/type.d.ts +4 -2
- package/es/constants/language/datetime/zh.js +4 -2
- package/es/index.css +4666 -4639
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/es/index.less +18 -17
- package/es/style/theme.less +3 -3
- package/lib/components/AutoComplete/style.css +17 -17
- package/lib/components/Button/style.css +69 -69
- package/lib/components/Button/style.less +1 -1
- package/lib/components/Card/style.css +11 -11
- package/lib/components/CheckTransformList/style.css +19 -19
- package/lib/components/Checkbox/index.js +9 -1
- package/lib/components/CheckboxList/style.css +5 -5
- package/lib/components/Collapse/style.css +1 -1
- package/lib/components/DateTimePicker/Base/index.d.ts +3 -0
- package/lib/components/DateTimePicker/Base/index.js +51 -6
- package/lib/components/DateTimePicker/Base/style.css +67 -61
- package/lib/components/DateTimePicker/Base/style.less +7 -0
- package/lib/components/DateTimePicker/DisplayInput/index.js +3 -1
- package/lib/components/DateTimePicker/DisplayInput/style.css +14 -14
- package/lib/components/DateTimePicker/constants.d.ts +7 -1
- package/lib/components/DateTimePicker/constants.js +1 -0
- package/lib/components/DateTimePicker/time.d.ts +1 -0
- package/lib/components/DateTimePicker/time.js +1 -0
- package/lib/components/DateTimePicker/transform.js +4 -2
- package/lib/components/Drawer/index.d.ts +1 -1
- package/lib/components/FileResumable/index.js +2 -3
- package/lib/components/FileResumable/style.css +8 -8
- package/lib/components/FlameGraph/customTooltip.d.ts +22 -0
- package/lib/components/FlameGraph/customTooltip.js +114 -0
- package/lib/components/FlameGraph/index.d.ts +16 -0
- package/lib/components/FlameGraph/index.js +117 -0
- package/lib/components/FlameGraph/style.css +8 -0
- package/lib/components/FlameGraph/style.less +14 -0
- package/lib/components/Input/style.css +14 -14
- package/lib/components/Menu/Option.d.ts +1 -1
- package/lib/components/Menu/Option.js +17 -25
- package/lib/components/Menu/style.css +23 -23
- package/lib/components/Modal/style.css +1 -1
- package/lib/components/NameExplainTooltip/style.css +1 -1
- package/lib/components/OptionList/InlineOptionList/style.css +1 -1
- package/lib/components/OptionList/OptionItem/style.css +2 -2
- package/lib/components/OptionList/PopoverOptionList/style.css +3 -3
- package/lib/components/OptionList/style.css +6 -6
- package/lib/components/RadioGroup/style.css +35 -32
- package/lib/components/RadioGroup/style.less +4 -0
- package/lib/components/RangeInput/style.css +29 -29
- package/lib/components/Selector/style.css +17 -17
- package/lib/components/Spin/style.css +2 -2
- package/lib/components/Steps/style.css +16 -16
- package/lib/components/Table/ColumnSetting/index.d.ts +1 -0
- package/lib/components/Table/ColumnSetting/index.js +19 -14
- package/lib/components/Table/ColumnTag/style.css +4 -4
- package/lib/components/Table/EmptyText.d.ts +7 -0
- package/lib/components/Table/EmptyText.js +27 -0
- package/lib/components/Table/ResizableTitle/index.js +12 -2
- package/lib/components/Table/index.d.ts +11 -83
- package/lib/components/Table/index.js +118 -289
- package/lib/components/Table/style.css +54 -44
- package/lib/components/Table/style.less +23 -4
- package/lib/components/Table/type.d.ts +63 -0
- package/lib/components/Table/type.js +8 -0
- package/lib/components/Table/util.d.ts +59 -0
- package/lib/components/Table/util.js +233 -0
- package/lib/components/Tabs/style.css +10 -10
- package/lib/components/TagList/Tag/style.css +5 -5
- package/lib/components/TagList/TagSwitch/style.css +1 -1
- package/lib/components/TagList/style.css +6 -6
- package/lib/components/Timeline/TimelineItem/style.css +1 -1
- package/lib/components/TreeSelector/style.css +21 -21
- package/lib/constants/language/datetime/en.js +4 -2
- package/lib/constants/language/datetime/type.d.ts +4 -2
- package/lib/constants/language/datetime/zh.js +4 -2
- package/lib/index.css +6603 -6576
- package/lib/index.d.ts +1 -0
- package/lib/index.js +3 -1
- package/lib/index.less +22 -21
- package/lib/style/theme.less +3 -3
- package/package.json +8 -5
|
@@ -393,10 +393,10 @@
|
|
|
393
393
|
cursor: pointer;
|
|
394
394
|
}
|
|
395
395
|
.ant-tabs-dropdown-menu-item-remove:hover {
|
|
396
|
-
color: #
|
|
396
|
+
color: #436bff;
|
|
397
397
|
}
|
|
398
398
|
.ant-tabs-dropdown-menu-item:hover {
|
|
399
|
-
background: rgba(
|
|
399
|
+
background: rgba(67, 107, 255, 0.05);
|
|
400
400
|
}
|
|
401
401
|
.ant-tabs-dropdown-menu-item-disabled,
|
|
402
402
|
.ant-tabs-dropdown-menu-item-disabled:hover {
|
|
@@ -415,7 +415,7 @@
|
|
|
415
415
|
}
|
|
416
416
|
.ant-tabs-card > .ant-tabs-nav .ant-tabs-tab-active,
|
|
417
417
|
.ant-tabs-card > div > .ant-tabs-nav .ant-tabs-tab-active {
|
|
418
|
-
color: #
|
|
418
|
+
color: #436bff;
|
|
419
419
|
background: #ffffff;
|
|
420
420
|
}
|
|
421
421
|
.ant-tabs-card > .ant-tabs-nav .ant-tabs-ink-bar,
|
|
@@ -582,13 +582,13 @@
|
|
|
582
582
|
}
|
|
583
583
|
.ant-tabs > .ant-tabs-nav .ant-tabs-nav-add:hover,
|
|
584
584
|
.ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-add:hover {
|
|
585
|
-
color: #
|
|
585
|
+
color: #436bff;
|
|
586
586
|
}
|
|
587
587
|
.ant-tabs > .ant-tabs-nav .ant-tabs-nav-add:active,
|
|
588
588
|
.ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-add:active,
|
|
589
589
|
.ant-tabs > .ant-tabs-nav .ant-tabs-nav-add:focus,
|
|
590
590
|
.ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-add:focus {
|
|
591
|
-
color: #
|
|
591
|
+
color: #436bff;
|
|
592
592
|
}
|
|
593
593
|
.ant-tabs-extra-content {
|
|
594
594
|
-webkit-box-flex: 0;
|
|
@@ -603,7 +603,7 @@
|
|
|
603
603
|
}
|
|
604
604
|
.ant-tabs-ink-bar {
|
|
605
605
|
position: absolute;
|
|
606
|
-
background: #
|
|
606
|
+
background: #436bff;
|
|
607
607
|
pointer-events: none;
|
|
608
608
|
}
|
|
609
609
|
.ant-tabs-tab {
|
|
@@ -625,7 +625,7 @@
|
|
|
625
625
|
.ant-tabs-tab-remove:focus,
|
|
626
626
|
.ant-tabs-tab-btn:active,
|
|
627
627
|
.ant-tabs-tab-remove:active {
|
|
628
|
-
color: #
|
|
628
|
+
color: #436bff;
|
|
629
629
|
}
|
|
630
630
|
.ant-tabs-tab-btn {
|
|
631
631
|
outline: none;
|
|
@@ -651,10 +651,10 @@
|
|
|
651
651
|
color: #333;
|
|
652
652
|
}
|
|
653
653
|
.ant-tabs-tab:hover {
|
|
654
|
-
color: #
|
|
654
|
+
color: #436bff;
|
|
655
655
|
}
|
|
656
656
|
.ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn {
|
|
657
|
-
color: #
|
|
657
|
+
color: #436bff;
|
|
658
658
|
text-shadow: 0 0 0.25px currentcolor;
|
|
659
659
|
}
|
|
660
660
|
.ant-tabs-tab.ant-tabs-tab-disabled {
|
|
@@ -1034,5 +1034,5 @@
|
|
|
1034
1034
|
transform: translateY(-50%);
|
|
1035
1035
|
}
|
|
1036
1036
|
.pandora-sdk-tabs .pandora-sdk-tabs-refresh-icon:hover {
|
|
1037
|
-
color: #
|
|
1037
|
+
color: #436bff;
|
|
1038
1038
|
}
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
.pandora-sdk-root .pandora-sdk-prefix {
|
|
12
12
|
position: relative;
|
|
13
13
|
min-width: 24px;
|
|
14
|
-
color: rgba(
|
|
14
|
+
color: rgba(67, 107, 255, 0.6);
|
|
15
15
|
float: left;
|
|
16
16
|
}
|
|
17
17
|
.pandora-sdk-root .pandora-sdk-prefix::after {
|
|
@@ -22,12 +22,12 @@
|
|
|
22
22
|
margin: auto;
|
|
23
23
|
content: '';
|
|
24
24
|
height: 16px;
|
|
25
|
-
border-left: 1px solid rgba(
|
|
25
|
+
border-left: 1px solid rgba(67, 107, 255, 0.1);
|
|
26
26
|
}
|
|
27
27
|
.pandora-sdk-root .pandora-sdk-suffix {
|
|
28
28
|
position: relative;
|
|
29
29
|
min-width: 24px;
|
|
30
|
-
color: rgba(
|
|
30
|
+
color: rgba(67, 107, 255, 0.6);
|
|
31
31
|
float: right;
|
|
32
32
|
}
|
|
33
33
|
.pandora-sdk-root .pandora-sdk-suffix::before {
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
margin: auto;
|
|
39
39
|
content: '';
|
|
40
40
|
height: 16px;
|
|
41
|
-
border-left: 1px solid rgba(
|
|
41
|
+
border-left: 1px solid rgba(67, 107, 255, 0.1);
|
|
42
42
|
}
|
|
43
43
|
.pandora-sdk-root .pandora-sdk-content {
|
|
44
44
|
padding: 0 8px;
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
font-size: 14px;
|
|
51
51
|
}
|
|
52
52
|
.pandora-sdk-root.pandora-sdk-primary {
|
|
53
|
-
background: rgba(
|
|
53
|
+
background: rgba(67, 107, 255, 0.1);
|
|
54
54
|
}
|
|
55
55
|
.pandora-sdk-root.pandora-sdk-green {
|
|
56
56
|
background: rgba(32, 201, 151, 0.1);
|
|
@@ -65,17 +65,17 @@
|
|
|
65
65
|
cursor: pointer;
|
|
66
66
|
}
|
|
67
67
|
.ant-tag-checkable:not(.ant-tag-checkable-checked):hover {
|
|
68
|
-
color: #
|
|
68
|
+
color: #436bff;
|
|
69
69
|
}
|
|
70
70
|
.ant-tag-checkable:active,
|
|
71
71
|
.ant-tag-checkable-checked {
|
|
72
72
|
color: #fff;
|
|
73
73
|
}
|
|
74
74
|
.ant-tag-checkable-checked {
|
|
75
|
-
background-color: #
|
|
75
|
+
background-color: #436bff;
|
|
76
76
|
}
|
|
77
77
|
.ant-tag-checkable:active {
|
|
78
|
-
background-color: #
|
|
78
|
+
background-color: #2e4dd9;
|
|
79
79
|
}
|
|
80
80
|
.ant-tag-hidden {
|
|
81
81
|
display: none;
|
|
@@ -216,9 +216,9 @@
|
|
|
216
216
|
border-color: #99f0cd;
|
|
217
217
|
}
|
|
218
218
|
.ant-tag-processing {
|
|
219
|
-
color: #
|
|
220
|
-
background: #
|
|
221
|
-
border-color: #
|
|
219
|
+
color: #436bff;
|
|
220
|
+
background: #f0f6ff;
|
|
221
|
+
border-color: #bdd2ff;
|
|
222
222
|
}
|
|
223
223
|
.ant-tag-error {
|
|
224
224
|
color: #f5222d;
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
.ant-select-tree-checkbox-wrapper:hover .ant-select-tree-checkbox-inner,
|
|
65
65
|
.ant-select-tree-checkbox:hover .ant-select-tree-checkbox-inner,
|
|
66
66
|
.ant-select-tree-checkbox-input:focus + .ant-select-tree-checkbox-inner {
|
|
67
|
-
border-color: #
|
|
67
|
+
border-color: #436bff;
|
|
68
68
|
}
|
|
69
69
|
.ant-select-tree-checkbox-checked::after {
|
|
70
70
|
position: absolute;
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
left: 0;
|
|
73
73
|
width: 100%;
|
|
74
74
|
height: 100%;
|
|
75
|
-
border: 1px solid #
|
|
75
|
+
border: 1px solid #436bff;
|
|
76
76
|
border-radius: 2px;
|
|
77
77
|
visibility: hidden;
|
|
78
78
|
-webkit-animation: antCheckboxEffect 0.36s ease-in-out;
|
|
@@ -143,8 +143,8 @@
|
|
|
143
143
|
content: ' ';
|
|
144
144
|
}
|
|
145
145
|
.ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner {
|
|
146
|
-
background-color: #
|
|
147
|
-
border-color: #
|
|
146
|
+
background-color: #436bff;
|
|
147
|
+
border-color: #436bff;
|
|
148
148
|
}
|
|
149
149
|
.ant-select-tree-checkbox-disabled {
|
|
150
150
|
cursor: not-allowed;
|
|
@@ -249,7 +249,7 @@
|
|
|
249
249
|
left: 50%;
|
|
250
250
|
width: 8px;
|
|
251
251
|
height: 8px;
|
|
252
|
-
background-color: #
|
|
252
|
+
background-color: #436bff;
|
|
253
253
|
border: 0;
|
|
254
254
|
-webkit-transform: translate(-50%, -50%) scale(1);
|
|
255
255
|
transform: translate(-50%, -50%) scale(1);
|
|
@@ -297,7 +297,7 @@
|
|
|
297
297
|
transition: background-color 0.3s;
|
|
298
298
|
}
|
|
299
299
|
.ant-select-tree-focused:not(:hover):not(.ant-select-tree-active-focused) {
|
|
300
|
-
background: #
|
|
300
|
+
background: #f0f6ff;
|
|
301
301
|
}
|
|
302
302
|
.ant-select-tree-list-holder-inner {
|
|
303
303
|
-webkit-box-align: start;
|
|
@@ -323,7 +323,7 @@
|
|
|
323
323
|
right: 0;
|
|
324
324
|
bottom: 4px;
|
|
325
325
|
left: 0;
|
|
326
|
-
border: 1px solid #
|
|
326
|
+
border: 1px solid #436bff;
|
|
327
327
|
opacity: 0;
|
|
328
328
|
-webkit-animation: ant-tree-node-fx-do-not-use 0.3s;
|
|
329
329
|
animation: ant-tree-node-fx-do-not-use 0.3s;
|
|
@@ -352,7 +352,7 @@
|
|
|
352
352
|
background: transparent;
|
|
353
353
|
}
|
|
354
354
|
.ant-select-tree .ant-select-tree-treenode-active .ant-select-tree-node-content-wrapper {
|
|
355
|
-
background: rgba(
|
|
355
|
+
background: rgba(67, 107, 255, 0.05);
|
|
356
356
|
}
|
|
357
357
|
.ant-select-tree .ant-select-tree-treenode:not(.ant-select-tree .ant-select-tree-treenode-disabled).filter-node .ant-select-tree-title {
|
|
358
358
|
color: inherit;
|
|
@@ -427,7 +427,7 @@
|
|
|
427
427
|
transform: rotate(-90deg);
|
|
428
428
|
}
|
|
429
429
|
.ant-select-tree-switcher-loading-icon {
|
|
430
|
-
color: #
|
|
430
|
+
color: #436bff;
|
|
431
431
|
}
|
|
432
432
|
.ant-select-tree-switcher-leaf-line {
|
|
433
433
|
position: relative;
|
|
@@ -473,10 +473,10 @@
|
|
|
473
473
|
transition: all 0.3s, border 0s, line-height 0s, box-shadow 0s, -webkit-box-shadow 0s;
|
|
474
474
|
}
|
|
475
475
|
.ant-select-tree .ant-select-tree-node-content-wrapper:hover {
|
|
476
|
-
background-color: rgba(
|
|
476
|
+
background-color: rgba(67, 107, 255, 0.05);
|
|
477
477
|
}
|
|
478
478
|
.ant-select-tree .ant-select-tree-node-content-wrapper.ant-select-tree-node-selected {
|
|
479
|
-
background-color: rgba(
|
|
479
|
+
background-color: rgba(67, 107, 255, 0.05);
|
|
480
480
|
}
|
|
481
481
|
.ant-select-tree .ant-select-tree-node-content-wrapper .ant-select-tree-iconEle {
|
|
482
482
|
display: inline-block;
|
|
@@ -503,7 +503,7 @@
|
|
|
503
503
|
position: absolute;
|
|
504
504
|
z-index: 1;
|
|
505
505
|
height: 2px;
|
|
506
|
-
background-color: #
|
|
506
|
+
background-color: #436bff;
|
|
507
507
|
border-radius: 1px;
|
|
508
508
|
pointer-events: none;
|
|
509
509
|
}
|
|
@@ -514,13 +514,13 @@
|
|
|
514
514
|
width: 8px;
|
|
515
515
|
height: 8px;
|
|
516
516
|
background-color: transparent;
|
|
517
|
-
border: 2px solid #
|
|
517
|
+
border: 2px solid #436bff;
|
|
518
518
|
border-radius: 50%;
|
|
519
519
|
content: '';
|
|
520
520
|
}
|
|
521
521
|
.ant-select-tree .ant-select-tree-treenode.drop-container > [draggable] {
|
|
522
|
-
-webkit-box-shadow: 0 0 0 2px #
|
|
523
|
-
box-shadow: 0 0 0 2px #
|
|
522
|
+
-webkit-box-shadow: 0 0 0 2px #436bff;
|
|
523
|
+
box-shadow: 0 0 0 2px #436bff;
|
|
524
524
|
}
|
|
525
525
|
.ant-select-tree-show-line .ant-select-tree-indent-unit {
|
|
526
526
|
position: relative;
|
|
@@ -567,7 +567,7 @@
|
|
|
567
567
|
}
|
|
568
568
|
.pandora-sdk-tree-select .ant-select-multiple .ant-select-selection-item {
|
|
569
569
|
color: #ffffff;
|
|
570
|
-
background: rgba(
|
|
570
|
+
background: rgba(67, 107, 255, 0.8);
|
|
571
571
|
}
|
|
572
572
|
.pandora-sdk-tree-select .ant-select-multiple .ant-select-selection-item-remove {
|
|
573
573
|
color: #ffffff;
|
|
@@ -615,13 +615,13 @@
|
|
|
615
615
|
border-left: 2px solid transparent;
|
|
616
616
|
}
|
|
617
617
|
.pandora-sdk-tree-select-dropdown .ant-select-tree li .ant-select-tree-node-content-wrapper:hover {
|
|
618
|
-
background-color: rgba(
|
|
619
|
-
color: #
|
|
618
|
+
background-color: rgba(67, 107, 255, 0.05);
|
|
619
|
+
color: #436bff;
|
|
620
620
|
}
|
|
621
621
|
.pandora-sdk-tree-select-dropdown .ant-select-tree li .ant-select-tree-node-selected {
|
|
622
|
-
border-color: #
|
|
623
|
-
background-color: rgba(
|
|
624
|
-
color: #
|
|
622
|
+
border-color: #436bff;
|
|
623
|
+
background-color: rgba(67, 107, 255, 0.05);
|
|
624
|
+
color: #436bff;
|
|
625
625
|
}
|
|
626
626
|
.pandora-sdk-tree-select-dropdown .ant-empty {
|
|
627
627
|
text-align: center;
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
export var datetime_en = {
|
|
2
2
|
title: 'Time Range',
|
|
3
|
-
clear: 'Clear Custom',
|
|
4
|
-
clart_text: 'Click to apply the global time range',
|
|
5
3
|
confirm: 'Confirm',
|
|
6
4
|
range: {
|
|
7
5
|
title: 'Absolute Time',
|
|
@@ -56,6 +54,10 @@ export var datetime_en = {
|
|
|
56
54
|
quarter: {
|
|
57
55
|
title: 'Quarter'
|
|
58
56
|
},
|
|
57
|
+
trading_day: {
|
|
58
|
+
title: 'Trading Day',
|
|
59
|
+
label: 'Only show trading day'
|
|
60
|
+
},
|
|
59
61
|
chart: {
|
|
60
62
|
custom: 'Custom',
|
|
61
63
|
global: 'Global',
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
export interface IDateTimeLocale {
|
|
2
2
|
title: string;
|
|
3
|
-
clear: string;
|
|
4
|
-
clart_text: string;
|
|
5
3
|
confirm: string;
|
|
6
4
|
range: {
|
|
7
5
|
title: string;
|
|
@@ -56,6 +54,10 @@ export interface IDateTimeLocale {
|
|
|
56
54
|
quarter: {
|
|
57
55
|
title: string;
|
|
58
56
|
};
|
|
57
|
+
trading_day: {
|
|
58
|
+
title: string;
|
|
59
|
+
label: string;
|
|
60
|
+
};
|
|
59
61
|
chart: {
|
|
60
62
|
custom: string;
|
|
61
63
|
global: string;
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
export var datetime_zh = {
|
|
2
2
|
title: '图表时间范围',
|
|
3
|
-
clear: '清除自定义时间',
|
|
4
|
-
clart_text: '点击后本页内已添加的图表将全部使用全局时间',
|
|
5
3
|
confirm: '确认',
|
|
6
4
|
range: {
|
|
7
5
|
title: '绝对时间',
|
|
@@ -56,6 +54,10 @@ export var datetime_zh = {
|
|
|
56
54
|
quarter: {
|
|
57
55
|
title: '季度'
|
|
58
56
|
},
|
|
57
|
+
trading_day: {
|
|
58
|
+
title: '交易日',
|
|
59
|
+
label: '仅查看交易日'
|
|
60
|
+
},
|
|
59
61
|
chart: {
|
|
60
62
|
custom: '自定义时间',
|
|
61
63
|
global: '全局时间',
|