@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.
Files changed (145) hide show
  1. package/es/components/AutoComplete/style.css +17 -17
  2. package/es/components/Button/style.css +69 -69
  3. package/es/components/Button/style.less +1 -1
  4. package/es/components/Card/style.css +11 -11
  5. package/es/components/CheckTransformList/style.css +19 -19
  6. package/es/components/Checkbox/index.js +9 -1
  7. package/es/components/CheckboxList/style.css +5 -5
  8. package/es/components/Collapse/style.css +1 -1
  9. package/es/components/DateTimePicker/Base/index.d.ts +3 -0
  10. package/es/components/DateTimePicker/Base/index.js +51 -6
  11. package/es/components/DateTimePicker/Base/style.css +67 -61
  12. package/es/components/DateTimePicker/Base/style.less +7 -0
  13. package/es/components/DateTimePicker/DisplayInput/index.js +3 -1
  14. package/es/components/DateTimePicker/DisplayInput/style.css +14 -14
  15. package/es/components/DateTimePicker/constants.d.ts +7 -1
  16. package/es/components/DateTimePicker/constants.js +1 -0
  17. package/es/components/DateTimePicker/time.d.ts +1 -0
  18. package/es/components/DateTimePicker/time.js +1 -0
  19. package/es/components/DateTimePicker/transform.js +4 -2
  20. package/es/components/Drawer/index.d.ts +1 -1
  21. package/es/components/FileResumable/index.js +2 -3
  22. package/es/components/FileResumable/style.css +8 -8
  23. package/es/components/FlameGraph/customTooltip.d.ts +22 -0
  24. package/es/components/FlameGraph/customTooltip.js +91 -0
  25. package/es/components/FlameGraph/index.d.ts +16 -0
  26. package/es/components/FlameGraph/index.js +96 -0
  27. package/es/components/FlameGraph/style.css +8 -0
  28. package/es/components/FlameGraph/style.less +14 -0
  29. package/es/components/Input/style.css +14 -14
  30. package/es/components/Menu/Option.d.ts +1 -1
  31. package/es/components/Menu/Option.js +12 -4
  32. package/es/components/Menu/style.css +23 -23
  33. package/es/components/Modal/style.css +1 -1
  34. package/es/components/NameExplainTooltip/style.css +1 -1
  35. package/es/components/OptionList/InlineOptionList/style.css +1 -1
  36. package/es/components/OptionList/OptionItem/style.css +2 -2
  37. package/es/components/OptionList/PopoverOptionList/style.css +3 -3
  38. package/es/components/OptionList/style.css +6 -6
  39. package/es/components/RadioGroup/style.css +35 -32
  40. package/es/components/RadioGroup/style.less +4 -0
  41. package/es/components/RangeInput/style.css +29 -29
  42. package/es/components/Selector/style.css +17 -17
  43. package/es/components/Spin/style.css +2 -2
  44. package/es/components/Steps/style.css +16 -16
  45. package/es/components/Table/ColumnSetting/index.d.ts +1 -0
  46. package/es/components/Table/ColumnSetting/index.js +19 -14
  47. package/es/components/Table/ColumnTag/style.css +4 -4
  48. package/es/components/Table/EmptyText.d.ts +7 -0
  49. package/es/components/Table/EmptyText.js +22 -0
  50. package/es/components/Table/ResizableTitle/index.js +12 -2
  51. package/es/components/Table/index.d.ts +11 -83
  52. package/es/components/Table/index.js +114 -287
  53. package/es/components/Table/style.css +54 -44
  54. package/es/components/Table/style.less +23 -4
  55. package/es/components/Table/type.d.ts +63 -0
  56. package/es/components/Table/type.js +5 -0
  57. package/es/components/Table/util.d.ts +59 -0
  58. package/es/components/Table/util.js +224 -0
  59. package/es/components/Tabs/style.css +10 -10
  60. package/es/components/TagList/Tag/style.css +5 -5
  61. package/es/components/TagList/TagSwitch/style.css +1 -1
  62. package/es/components/TagList/style.css +6 -6
  63. package/es/components/Timeline/TimelineItem/style.css +1 -1
  64. package/es/components/TreeSelector/style.css +21 -21
  65. package/es/constants/language/datetime/en.js +4 -2
  66. package/es/constants/language/datetime/type.d.ts +4 -2
  67. package/es/constants/language/datetime/zh.js +4 -2
  68. package/es/index.css +4666 -4639
  69. package/es/index.d.ts +1 -0
  70. package/es/index.js +1 -0
  71. package/es/index.less +18 -17
  72. package/es/style/theme.less +3 -3
  73. package/lib/components/AutoComplete/style.css +17 -17
  74. package/lib/components/Button/style.css +69 -69
  75. package/lib/components/Button/style.less +1 -1
  76. package/lib/components/Card/style.css +11 -11
  77. package/lib/components/CheckTransformList/style.css +19 -19
  78. package/lib/components/Checkbox/index.js +9 -1
  79. package/lib/components/CheckboxList/style.css +5 -5
  80. package/lib/components/Collapse/style.css +1 -1
  81. package/lib/components/DateTimePicker/Base/index.d.ts +3 -0
  82. package/lib/components/DateTimePicker/Base/index.js +51 -6
  83. package/lib/components/DateTimePicker/Base/style.css +67 -61
  84. package/lib/components/DateTimePicker/Base/style.less +7 -0
  85. package/lib/components/DateTimePicker/DisplayInput/index.js +3 -1
  86. package/lib/components/DateTimePicker/DisplayInput/style.css +14 -14
  87. package/lib/components/DateTimePicker/constants.d.ts +7 -1
  88. package/lib/components/DateTimePicker/constants.js +1 -0
  89. package/lib/components/DateTimePicker/time.d.ts +1 -0
  90. package/lib/components/DateTimePicker/time.js +1 -0
  91. package/lib/components/DateTimePicker/transform.js +4 -2
  92. package/lib/components/Drawer/index.d.ts +1 -1
  93. package/lib/components/FileResumable/index.js +2 -3
  94. package/lib/components/FileResumable/style.css +8 -8
  95. package/lib/components/FlameGraph/customTooltip.d.ts +22 -0
  96. package/lib/components/FlameGraph/customTooltip.js +114 -0
  97. package/lib/components/FlameGraph/index.d.ts +16 -0
  98. package/lib/components/FlameGraph/index.js +117 -0
  99. package/lib/components/FlameGraph/style.css +8 -0
  100. package/lib/components/FlameGraph/style.less +14 -0
  101. package/lib/components/Input/style.css +14 -14
  102. package/lib/components/Menu/Option.d.ts +1 -1
  103. package/lib/components/Menu/Option.js +17 -25
  104. package/lib/components/Menu/style.css +23 -23
  105. package/lib/components/Modal/style.css +1 -1
  106. package/lib/components/NameExplainTooltip/style.css +1 -1
  107. package/lib/components/OptionList/InlineOptionList/style.css +1 -1
  108. package/lib/components/OptionList/OptionItem/style.css +2 -2
  109. package/lib/components/OptionList/PopoverOptionList/style.css +3 -3
  110. package/lib/components/OptionList/style.css +6 -6
  111. package/lib/components/RadioGroup/style.css +35 -32
  112. package/lib/components/RadioGroup/style.less +4 -0
  113. package/lib/components/RangeInput/style.css +29 -29
  114. package/lib/components/Selector/style.css +17 -17
  115. package/lib/components/Spin/style.css +2 -2
  116. package/lib/components/Steps/style.css +16 -16
  117. package/lib/components/Table/ColumnSetting/index.d.ts +1 -0
  118. package/lib/components/Table/ColumnSetting/index.js +19 -14
  119. package/lib/components/Table/ColumnTag/style.css +4 -4
  120. package/lib/components/Table/EmptyText.d.ts +7 -0
  121. package/lib/components/Table/EmptyText.js +27 -0
  122. package/lib/components/Table/ResizableTitle/index.js +12 -2
  123. package/lib/components/Table/index.d.ts +11 -83
  124. package/lib/components/Table/index.js +118 -289
  125. package/lib/components/Table/style.css +54 -44
  126. package/lib/components/Table/style.less +23 -4
  127. package/lib/components/Table/type.d.ts +63 -0
  128. package/lib/components/Table/type.js +8 -0
  129. package/lib/components/Table/util.d.ts +59 -0
  130. package/lib/components/Table/util.js +233 -0
  131. package/lib/components/Tabs/style.css +10 -10
  132. package/lib/components/TagList/Tag/style.css +5 -5
  133. package/lib/components/TagList/TagSwitch/style.css +1 -1
  134. package/lib/components/TagList/style.css +6 -6
  135. package/lib/components/Timeline/TimelineItem/style.css +1 -1
  136. package/lib/components/TreeSelector/style.css +21 -21
  137. package/lib/constants/language/datetime/en.js +4 -2
  138. package/lib/constants/language/datetime/type.d.ts +4 -2
  139. package/lib/constants/language/datetime/zh.js +4 -2
  140. package/lib/index.css +6603 -6576
  141. package/lib/index.d.ts +1 -0
  142. package/lib/index.js +3 -1
  143. package/lib/index.less +22 -21
  144. package/lib/style/theme.less +3 -3
  145. 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: #2c6dd2;
396
+ color: #436bff;
397
397
  }
398
398
  .ant-tabs-dropdown-menu-item:hover {
399
- background: rgba(44, 109, 210, 0.05);
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: #7a869a;
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: #2c6dd2;
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: #2c6dd2;
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: #2c6dd2;
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: #2c6dd2;
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: #2c6dd2;
654
+ color: #436bff;
655
655
  }
656
656
  .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn {
657
- color: #2c6dd2;
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: #2c6dd2;
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(44, 109, 210, 0.6);
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(44, 109, 210, 0.1);
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(44, 109, 210, 0.6);
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(44, 109, 210, 0.1);
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(44, 109, 210, 0.1);
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);
@@ -13,7 +13,7 @@
13
13
  color: #ffffff;
14
14
  }
15
15
  .pandora-sdk-switch.pandora-sdk-active.pandora-sdk-primary {
16
- background: #2c6dd2;
16
+ background: #436bff;
17
17
  }
18
18
  .pandora-sdk-switch.pandora-sdk-active.pandora-sdk-green {
19
19
  background: #20c997;
@@ -65,17 +65,17 @@
65
65
  cursor: pointer;
66
66
  }
67
67
  .ant-tag-checkable:not(.ant-tag-checkable-checked):hover {
68
- color: #7a869a;
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: #7a869a;
75
+ background-color: #436bff;
76
76
  }
77
77
  .ant-tag-checkable:active {
78
- background-color: #555f73;
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: #7a869a;
220
- background: #ccd3d9;
221
- border-color: #b4b9bf;
219
+ color: #436bff;
220
+ background: #f0f6ff;
221
+ border-color: #bdd2ff;
222
222
  }
223
223
  .ant-tag-error {
224
224
  color: #f5222d;
@@ -23,7 +23,7 @@
23
23
  box-sizing: border-box;
24
24
  width: 10px;
25
25
  height: 10px;
26
- background-color: #2c6dd2;
26
+ background-color: #436bff;
27
27
  border-radius: 100px;
28
28
  border: 2px solid transparent;
29
29
  }
@@ -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: #2c6dd2;
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 #2c6dd2;
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: #2c6dd2;
147
- border-color: #2c6dd2;
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: #2c6dd2;
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: #ccd3d9;
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 #7a869a;
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(44, 109, 210, 0.05);
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: #7a869a;
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(44, 109, 210, 0.05);
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(44, 109, 210, 0.05);
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: #7a869a;
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 #7a869a;
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 #7a869a;
523
- box-shadow: 0 0 0 2px #7a869a;
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(44, 109, 210, 0.8);
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(44, 109, 210, 0.05);
619
- color: #2c6dd2;
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: #2c6dd2;
623
- background-color: rgba(44, 109, 210, 0.05);
624
- color: #2c6dd2;
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;
@@ -3,8 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.datetime_en = void 0;
4
4
  exports.datetime_en = {
5
5
  title: 'Time Range',
6
- clear: 'Clear Custom',
7
- clart_text: 'Click to apply the global time range',
8
6
  confirm: 'Confirm',
9
7
  range: {
10
8
  title: 'Absolute Time',
@@ -59,6 +57,10 @@ exports.datetime_en = {
59
57
  quarter: {
60
58
  title: 'Quarter'
61
59
  },
60
+ trading_day: {
61
+ title: 'Trading Day',
62
+ label: 'Only show trading day'
63
+ },
62
64
  chart: {
63
65
  custom: 'Custom',
64
66
  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;
@@ -3,8 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.datetime_zh = void 0;
4
4
  exports.datetime_zh = {
5
5
  title: '图表时间范围',
6
- clear: '清除自定义时间',
7
- clart_text: '点击后本页内已添加的图表将全部使用全局时间',
8
6
  confirm: '确认',
9
7
  range: {
10
8
  title: '绝对时间',
@@ -59,6 +57,10 @@ exports.datetime_zh = {
59
57
  quarter: {
60
58
  title: '季度'
61
59
  },
60
+ trading_day: {
61
+ title: '交易日',
62
+ label: '仅查看交易日'
63
+ },
62
64
  chart: {
63
65
  custom: '自定义时间',
64
66
  global: '全局时间',