@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
@@ -139,7 +139,7 @@
139
139
  margin-right: 12px;
140
140
  }
141
141
  .pandora-sdk-popover-inline-list .pandora-sdk-popover-inline-item i {
142
- color: #2c6dd2;
142
+ color: #436bff;
143
143
  }
144
144
  .ant-tooltip {
145
145
  -webkit-box-sizing: border-box;
@@ -430,7 +430,7 @@
430
430
  text-align: right;
431
431
  }
432
432
  .pandora-sdk-item {
433
- color: #2c6dd2;
433
+ color: #436bff;
434
434
  cursor: pointer;
435
435
  }
436
436
  .pandora-sdk-item > .anticon {
@@ -445,7 +445,7 @@
445
445
  color: #bfbfbf;
446
446
  }
447
447
  .pandora-sdk-item.pandora-sdk-active {
448
- background: rgba(44, 109, 210, 0.05);
448
+ background: rgba(67, 107, 255, 0.05);
449
449
  }
450
450
  .pandora-sdk-item a {
451
451
  color: inherit;
@@ -803,7 +803,7 @@
803
803
  .pandora-sdk-popover-item {
804
804
  display: inline-block;
805
805
  line-height: 18px;
806
- color: #2c6dd2;
806
+ color: #436bff;
807
807
  vertical-align: middle;
808
808
  cursor: pointer;
809
809
  }
@@ -820,8 +820,8 @@
820
820
  padding: 0 16px;
821
821
  }
822
822
  .pandora-sdk-popover-list .pandora-sdk-item:hover {
823
- background: rgba(44, 109, 210, 0.05);
824
- color: #2c6dd2;
823
+ background: rgba(67, 107, 255, 0.05);
824
+ color: #436bff;
825
825
  }
826
826
  .pandora-sdk-popover-list .pandora-sdk-item.pandora-sdk-disabled {
827
827
  color: #bfbfbf;
@@ -79,11 +79,11 @@
79
79
  .ant-radio-wrapper:hover .ant-radio,
80
80
  .ant-radio:hover .ant-radio-inner,
81
81
  .ant-radio-input:focus + .ant-radio-inner {
82
- border-color: #2c6dd2;
82
+ border-color: #436bff;
83
83
  }
84
84
  .ant-radio-input:focus + .ant-radio-inner {
85
- -webkit-box-shadow: 0 0 0 3px #2c6dd2;
86
- box-shadow: 0 0 0 3px #2c6dd2;
85
+ -webkit-box-shadow: 0 0 0 3px rgba(67, 107, 255, 0.08);
86
+ box-shadow: 0 0 0 3px rgba(67, 107, 255, 0.08);
87
87
  }
88
88
  .ant-radio-checked::after {
89
89
  position: absolute;
@@ -91,7 +91,7 @@
91
91
  left: 0;
92
92
  width: 100%;
93
93
  height: 100%;
94
- border: 1px solid #2c6dd2;
94
+ border: 1px solid #436bff;
95
95
  border-radius: 50%;
96
96
  visibility: hidden;
97
97
  -webkit-animation: antRadioEffect 0.36s ease-in-out;
@@ -128,7 +128,7 @@
128
128
  height: 16px;
129
129
  margin-top: -8px;
130
130
  margin-left: -8px;
131
- background-color: #2c6dd2;
131
+ background-color: #436bff;
132
132
  border-top: 0;
133
133
  border-left: 0;
134
134
  border-radius: 16px;
@@ -153,7 +153,7 @@
153
153
  border-color: #e5e5e5;
154
154
  }
155
155
  .ant-radio-checked .ant-radio-inner {
156
- border-color: #2c6dd2;
156
+ border-color: #436bff;
157
157
  }
158
158
  .ant-radio-checked .ant-radio-inner::after {
159
159
  -webkit-transform: scale(0.5);
@@ -250,11 +250,11 @@ span.ant-radio + * {
250
250
  }
251
251
  .ant-radio-button-wrapper:hover {
252
252
  position: relative;
253
- color: #2c6dd2;
253
+ color: #436bff;
254
254
  }
255
255
  .ant-radio-button-wrapper:focus-within {
256
- -webkit-box-shadow: 0 0 0 3px #2c6dd2;
257
- box-shadow: 0 0 0 3px #2c6dd2;
256
+ -webkit-box-shadow: 0 0 0 3px rgba(67, 107, 255, 0.08);
257
+ box-shadow: 0 0 0 3px rgba(67, 107, 255, 0.08);
258
258
  }
259
259
  .ant-radio-button-wrapper .ant-radio-inner,
260
260
  .ant-radio-button-wrapper input[type='checkbox'],
@@ -266,52 +266,52 @@ span.ant-radio + * {
266
266
  }
267
267
  .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
268
268
  z-index: 1;
269
- color: #2c6dd2;
269
+ color: #436bff;
270
270
  background: #ffffff;
271
- border-color: #2c6dd2;
271
+ border-color: #436bff;
272
272
  }
273
273
  .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled)::before {
274
- background-color: #2c6dd2;
274
+ background-color: #436bff;
275
275
  }
276
276
  .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child {
277
- border-color: #2c6dd2;
277
+ border-color: #436bff;
278
278
  }
279
279
  .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover {
280
- color: #2c6dd2;
281
- border-color: #2c6dd2;
280
+ color: #436bff;
281
+ border-color: #436bff;
282
282
  }
283
283
  .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover::before {
284
- background-color: #2c6dd2;
284
+ background-color: #436bff;
285
285
  }
286
286
  .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active {
287
- color: #2c6dd2;
288
- border-color: #2c6dd2;
287
+ color: #436bff;
288
+ border-color: #436bff;
289
289
  }
290
290
  .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active::before {
291
- background-color: #2c6dd2;
291
+ background-color: #436bff;
292
292
  }
293
293
  .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within {
294
- -webkit-box-shadow: 0 0 0 3px #2c6dd2;
295
- box-shadow: 0 0 0 3px #2c6dd2;
294
+ -webkit-box-shadow: 0 0 0 3px rgba(67, 107, 255, 0.08);
295
+ box-shadow: 0 0 0 3px rgba(67, 107, 255, 0.08);
296
296
  }
297
297
  .ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
298
298
  color: #ffffff;
299
- background: #2c6dd2;
300
- border-color: #2c6dd2;
299
+ background: #436bff;
300
+ border-color: #436bff;
301
301
  }
302
302
  .ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover {
303
303
  color: #ffffff;
304
- background: #2c6dd2;
305
- border-color: #2c6dd2;
304
+ background: #436bff;
305
+ border-color: #436bff;
306
306
  }
307
307
  .ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active {
308
308
  color: #ffffff;
309
- background: #2c6dd2;
310
- border-color: #2c6dd2;
309
+ background: #436bff;
310
+ border-color: #436bff;
311
311
  }
312
312
  .ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within {
313
- -webkit-box-shadow: 0 0 0 3px #2c6dd2;
314
- box-shadow: 0 0 0 3px #2c6dd2;
313
+ -webkit-box-shadow: 0 0 0 3px rgba(67, 107, 255, 0.08);
314
+ box-shadow: 0 0 0 3px rgba(67, 107, 255, 0.08);
315
315
  }
316
316
  .ant-radio-button-wrapper-disabled {
317
317
  color: rgba(0, 0, 0, 0.25);
@@ -380,7 +380,7 @@ span.ant-radio + * {
380
380
  border-radius: 0 2px 2px 0;
381
381
  }
382
382
  .ant-radio-button-wrapper-checked:not([class*=' ant-radio-button-wrapper-disabled']).ant-radio-button-wrapper:first-child {
383
- border-right-color: #2c6dd2;
383
+ border-right-color: #436bff;
384
384
  }
385
385
  .ant-radio-button-wrapper.ant-radio-button-wrapper-rtl.ant-radio-button-wrapper:last-child {
386
386
  border-radius: 2px 0 0 2px;
@@ -409,8 +409,11 @@ span.ant-radio + * {
409
409
  box-sizing: border-box;
410
410
  }
411
411
  .pandora-sdk-solid-radio-group .ant-radio .ant-radio-checked .ant-radio-inner {
412
- border-color: #2c6dd2;
412
+ border-color: #436bff;
413
413
  }
414
414
  .pandora-sdk-solid-radio-group .ant-radio .ant-radio-checked .ant-radio-inner::after {
415
- background-color: #2c6dd2;
415
+ background-color: #436bff;
416
+ }
417
+ .pandora-sdk-solid-radio-group .ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
418
+ border-color: #bfbfbf;
416
419
  }
@@ -38,4 +38,8 @@
38
38
  }
39
39
  }
40
40
  }
41
+
42
+ .@{ant-prefix}-radio-button-wrapper-disabled.@{ant-prefix}-radio-button-wrapper-checked {
43
+ border-color: @input-border-color;
44
+ }
41
45
  }
@@ -47,7 +47,7 @@
47
47
  text-overflow: ellipsis;
48
48
  }
49
49
  .ant-input-affix-wrapper:hover {
50
- border-color: #2c6dd2;
50
+ border-color: #436bff;
51
51
  border-right-width: 1px;
52
52
  }
53
53
  .ant-input-rtl .ant-input-affix-wrapper:hover {
@@ -56,9 +56,9 @@
56
56
  }
57
57
  .ant-input-affix-wrapper:focus,
58
58
  .ant-input-affix-wrapper-focused {
59
- border-color: #9ca0a6;
60
- -webkit-box-shadow: 0 0 0 2px rgba(122, 134, 154, 0.2);
61
- box-shadow: 0 0 0 2px rgba(122, 134, 154, 0.2);
59
+ border-color: #6b90ff;
60
+ -webkit-box-shadow: 0 0 0 2px rgba(67, 107, 255, 0.2);
61
+ box-shadow: 0 0 0 2px rgba(67, 107, 255, 0.2);
62
62
  border-right-width: 1px;
63
63
  outline: 0;
64
64
  }
@@ -124,7 +124,7 @@ textarea.ant-input-affix-wrapper {
124
124
  direction: rtl;
125
125
  }
126
126
  .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover {
127
- border-color: #2c6dd2;
127
+ border-color: #436bff;
128
128
  border-right-width: 1px;
129
129
  z-index: 1;
130
130
  }
@@ -352,7 +352,7 @@ textarea.ant-input-affix-wrapper {
352
352
  text-overflow: ellipsis;
353
353
  }
354
354
  .ant-input:hover {
355
- border-color: #2c6dd2;
355
+ border-color: #436bff;
356
356
  border-right-width: 1px;
357
357
  }
358
358
  .ant-input-rtl .ant-input:hover {
@@ -361,9 +361,9 @@ textarea.ant-input-affix-wrapper {
361
361
  }
362
362
  .ant-input:focus,
363
363
  .ant-input-focused {
364
- border-color: #9ca0a6;
365
- -webkit-box-shadow: 0 0 0 2px rgba(122, 134, 154, 0.2);
366
- box-shadow: 0 0 0 2px rgba(122, 134, 154, 0.2);
364
+ border-color: #6b90ff;
365
+ -webkit-box-shadow: 0 0 0 2px rgba(67, 107, 255, 0.2);
366
+ box-shadow: 0 0 0 2px rgba(67, 107, 255, 0.2);
367
367
  border-right-width: 1px;
368
368
  outline: 0;
369
369
  }
@@ -517,7 +517,7 @@ textarea.ant-input {
517
517
  }
518
518
  .ant-input-group-addon .ant-select-open .ant-select-selector,
519
519
  .ant-input-group-addon .ant-select-focused .ant-select-selector {
520
- color: #7a869a;
520
+ color: #436bff;
521
521
  }
522
522
  .ant-input-group-addon .ant-cascader-picker {
523
523
  margin: -9px -12px;
@@ -846,11 +846,11 @@ textarea.ant-input {
846
846
  }
847
847
  .ant-input-search .ant-input:hover,
848
848
  .ant-input-search .ant-input:focus {
849
- border-color: #2c6dd2;
849
+ border-color: #436bff;
850
850
  }
851
851
  .ant-input-search .ant-input:hover + .ant-input-group-addon .ant-input-search-button:not(.ant-btn-primary),
852
852
  .ant-input-search .ant-input:focus + .ant-input-group-addon .ant-input-search-button:not(.ant-btn-primary) {
853
- border-left-color: #2c6dd2;
853
+ border-left-color: #436bff;
854
854
  }
855
855
  .ant-input-search .ant-input-affix-wrapper {
856
856
  border-radius: 0;
@@ -955,11 +955,11 @@ textarea.ant-input {
955
955
  }
956
956
  .ant-input-search-rtl .ant-input:hover + .ant-input-group-addon .ant-input-search-button:not(.ant-btn-primary):hover,
957
957
  .ant-input-search-rtl .ant-input:focus + .ant-input-group-addon .ant-input-search-button:not(.ant-btn-primary):hover {
958
- border-left-color: #2c6dd2;
958
+ border-left-color: #436bff;
959
959
  }
960
960
  .ant-input-search-rtl > .ant-input-group > .ant-input-affix-wrapper:hover,
961
961
  .ant-input-search-rtl > .ant-input-group > .ant-input-affix-wrapper-focused {
962
- border-right-color: #2c6dd2;
962
+ border-right-color: #436bff;
963
963
  }
964
964
  .ant-input-search-rtl > .ant-input-group > .ant-input-group-addon:last-child {
965
965
  right: -1px;
@@ -1031,7 +1031,7 @@ textarea.ant-input {
1031
1031
  text-overflow: ellipsis;
1032
1032
  }
1033
1033
  .ant-input-number-affix-wrapper:hover {
1034
- border-color: #2c6dd2;
1034
+ border-color: #436bff;
1035
1035
  border-right-width: 1px;
1036
1036
  }
1037
1037
  .ant-input-rtl .ant-input-number-affix-wrapper:hover {
@@ -1040,9 +1040,9 @@ textarea.ant-input {
1040
1040
  }
1041
1041
  .ant-input-number-affix-wrapper:focus,
1042
1042
  .ant-input-number-affix-wrapper-focused {
1043
- border-color: #9ca0a6;
1044
- -webkit-box-shadow: 0 0 0 2px rgba(122, 134, 154, 0.2);
1045
- box-shadow: 0 0 0 2px rgba(122, 134, 154, 0.2);
1043
+ border-color: #6b90ff;
1044
+ -webkit-box-shadow: 0 0 0 2px rgba(67, 107, 255, 0.2);
1045
+ box-shadow: 0 0 0 2px rgba(67, 107, 255, 0.2);
1046
1046
  border-right-width: 1px;
1047
1047
  outline: 0;
1048
1048
  }
@@ -1108,7 +1108,7 @@ textarea.ant-input-number-affix-wrapper {
1108
1108
  direction: rtl;
1109
1109
  }
1110
1110
  .ant-input-number-affix-wrapper:not(.ant-input-number-affix-wrapper-disabled):hover {
1111
- border-color: #2c6dd2;
1111
+ border-color: #436bff;
1112
1112
  border-right-width: 1px;
1113
1113
  z-index: 1;
1114
1114
  }
@@ -1297,7 +1297,7 @@ textarea.ant-input-number-affix-wrapper {
1297
1297
  text-overflow: ellipsis;
1298
1298
  }
1299
1299
  .ant-input-number:hover {
1300
- border-color: #2c6dd2;
1300
+ border-color: #436bff;
1301
1301
  border-right-width: 1px;
1302
1302
  }
1303
1303
  .ant-input-rtl .ant-input-number:hover {
@@ -1306,9 +1306,9 @@ textarea.ant-input-number-affix-wrapper {
1306
1306
  }
1307
1307
  .ant-input-number:focus,
1308
1308
  .ant-input-number-focused {
1309
- border-color: #9ca0a6;
1310
- -webkit-box-shadow: 0 0 0 2px rgba(122, 134, 154, 0.2);
1311
- box-shadow: 0 0 0 2px rgba(122, 134, 154, 0.2);
1309
+ border-color: #6b90ff;
1310
+ -webkit-box-shadow: 0 0 0 2px rgba(67, 107, 255, 0.2);
1311
+ box-shadow: 0 0 0 2px rgba(67, 107, 255, 0.2);
1312
1312
  border-right-width: 1px;
1313
1313
  outline: 0;
1314
1314
  }
@@ -1462,7 +1462,7 @@ textarea.ant-input-number {
1462
1462
  }
1463
1463
  .ant-input-number-group-addon .ant-select-open .ant-select-selector,
1464
1464
  .ant-input-number-group-addon .ant-select-focused .ant-select-selector {
1465
- color: #7a869a;
1465
+ color: #436bff;
1466
1466
  }
1467
1467
  .ant-input-number-group-addon .ant-cascader-picker {
1468
1468
  margin: -9px -12px;
@@ -1727,7 +1727,7 @@ textarea.ant-input-number {
1727
1727
  }
1728
1728
  .ant-input-number-handler:hover .ant-input-number-handler-up-inner,
1729
1729
  .ant-input-number-handler:hover .ant-input-number-handler-down-inner {
1730
- color: #9ca0a6;
1730
+ color: #6b90ff;
1731
1731
  }
1732
1732
  .ant-input-number-handler-up-inner,
1733
1733
  .ant-input-number-handler-down-inner {
@@ -1778,7 +1778,7 @@ textarea.ant-input-number {
1778
1778
  display: block;
1779
1779
  }
1780
1780
  .ant-input-number:hover {
1781
- border-color: #2c6dd2;
1781
+ border-color: #436bff;
1782
1782
  border-right-width: 1px;
1783
1783
  }
1784
1784
  .ant-input-number:hover + .ant-form-item-children-icon {
@@ -1787,9 +1787,9 @@ textarea.ant-input-number {
1787
1787
  transition: opacity 0.24s linear 0.24s;
1788
1788
  }
1789
1789
  .ant-input-number-focused {
1790
- border-color: #9ca0a6;
1791
- -webkit-box-shadow: 0 0 0 2px rgba(122, 134, 154, 0.2);
1792
- box-shadow: 0 0 0 2px rgba(122, 134, 154, 0.2);
1790
+ border-color: #6b90ff;
1791
+ -webkit-box-shadow: 0 0 0 2px rgba(67, 107, 255, 0.2);
1792
+ box-shadow: 0 0 0 2px rgba(67, 107, 255, 0.2);
1793
1793
  border-right-width: 1px;
1794
1794
  outline: 0;
1795
1795
  }
@@ -411,9 +411,9 @@
411
411
  cursor: auto;
412
412
  }
413
413
  .ant-select-focused:not(.ant-select-disabled).ant-select:not(.ant-select-customize-input) .ant-select-selector {
414
- border-color: #9ca0a6;
415
- -webkit-box-shadow: 0 0 0 2px rgba(122, 134, 154, 0.2);
416
- box-shadow: 0 0 0 2px rgba(122, 134, 154, 0.2);
414
+ border-color: #6b90ff;
415
+ -webkit-box-shadow: 0 0 0 2px rgba(67, 107, 255, 0.2);
416
+ box-shadow: 0 0 0 2px rgba(67, 107, 255, 0.2);
417
417
  border-right-width: 1px;
418
418
  outline: 0;
419
419
  }
@@ -444,7 +444,7 @@
444
444
  -webkit-appearance: none;
445
445
  }
446
446
  .ant-select:not(.ant-select-disabled):hover .ant-select-selector {
447
- border-color: #2c6dd2;
447
+ border-color: #436bff;
448
448
  border-right-width: 1px;
449
449
  }
450
450
  .ant-select-selection-item {
@@ -669,15 +669,15 @@
669
669
  flex: none;
670
670
  }
671
671
  .ant-select-item-option-active:not(.ant-select-item-option-disabled) {
672
- background-color: rgba(44, 109, 210, 0.05);
672
+ background-color: rgba(67, 107, 255, 0.05);
673
673
  }
674
674
  .ant-select-item-option-selected:not(.ant-select-item-option-disabled) {
675
675
  color: rgba(0, 0, 0, 0.65);
676
676
  font-weight: 600;
677
- background-color: rgba(44, 109, 210, 0.05);
677
+ background-color: rgba(67, 107, 255, 0.05);
678
678
  }
679
679
  .ant-select-item-option-selected:not(.ant-select-item-option-disabled) .ant-select-item-option-state {
680
- color: #7a869a;
680
+ color: #436bff;
681
681
  }
682
682
  .ant-select-item-option-disabled {
683
683
  color: rgba(0, 0, 0, 0.25);
@@ -849,7 +849,7 @@
849
849
  .ant-checkbox-wrapper:hover .ant-checkbox-inner,
850
850
  .ant-checkbox:hover .ant-checkbox-inner,
851
851
  .ant-checkbox-input:focus + .ant-checkbox-inner {
852
- border-color: #2c6dd2;
852
+ border-color: #436bff;
853
853
  }
854
854
  .ant-checkbox-checked::after {
855
855
  position: absolute;
@@ -857,7 +857,7 @@
857
857
  left: 0;
858
858
  width: 100%;
859
859
  height: 100%;
860
- border: 1px solid #2c6dd2;
860
+ border: 1px solid #436bff;
861
861
  border-radius: 2px;
862
862
  visibility: hidden;
863
863
  -webkit-animation: antCheckboxEffect 0.36s ease-in-out;
@@ -928,8 +928,8 @@
928
928
  content: ' ';
929
929
  }
930
930
  .ant-checkbox-checked .ant-checkbox-inner {
931
- background-color: #2c6dd2;
932
- border-color: #2c6dd2;
931
+ background-color: #436bff;
932
+ border-color: #436bff;
933
933
  }
934
934
  .ant-checkbox-disabled {
935
935
  cursor: not-allowed;
@@ -1034,7 +1034,7 @@
1034
1034
  left: 50%;
1035
1035
  width: 8px;
1036
1036
  height: 8px;
1037
- background-color: #2c6dd2;
1037
+ background-color: #436bff;
1038
1038
  border: 0;
1039
1039
  -webkit-transform: translate(-50%, -50%) scale(1);
1040
1040
  transform: translate(-50%, -50%) scale(1);
@@ -1119,11 +1119,11 @@
1119
1119
  color: #d9d9d9;
1120
1120
  }
1121
1121
  .pandora-sdk-selector-dropdown .ant-select-item-option-selected {
1122
- color: #2c6dd2;
1122
+ color: #436bff;
1123
1123
  font-weight: 400;
1124
1124
  }
1125
1125
  .pandora-sdk-selector-dropdown .ant-select-item-option:hover {
1126
- color: #2c6dd2;
1126
+ color: #436bff;
1127
1127
  }
1128
1128
  .pandora-sdk-selector-dropdown .ant-select-item-group {
1129
1129
  color: #d9d9d9;
@@ -1137,7 +1137,7 @@
1137
1137
  text-overflow: unset;
1138
1138
  }
1139
1139
  .pandora-sdk-selector-dropdown .pandora-sdk-selector-create-option {
1140
- color: #2c6dd2;
1140
+ color: #436bff;
1141
1141
  cursor: default;
1142
1142
  }
1143
1143
  .pandora-sdk-selector-dropdown .pandora-sdk-selector-create-option::before,
@@ -1145,10 +1145,10 @@
1145
1145
  content: none;
1146
1146
  }
1147
1147
  .pandora-sdk-selector-dropdown .pandora-sdk-selector-create-option a {
1148
- color: #2c6dd2;
1148
+ color: #436bff;
1149
1149
  }
1150
1150
  .pandora-sdk-selector-dropdown .ant-select-item-option-selected:not(.ant-select-item-option-disabled) .ant-select-item-option-state .anticon-check.anticon {
1151
- color: #2c6dd2;
1151
+ color: #436bff;
1152
1152
  }
1153
1153
  .pandora-sdk-selector-create-lint {
1154
1154
  display: block;
@@ -16,7 +16,7 @@
16
16
  font-feature-settings: 'tnum';
17
17
  position: absolute;
18
18
  display: none;
19
- color: #7a869a;
19
+ color: #436bff;
20
20
  font-size: 0;
21
21
  text-align: center;
22
22
  vertical-align: middle;
@@ -129,7 +129,7 @@
129
129
  display: block;
130
130
  width: 9px;
131
131
  height: 9px;
132
- background-color: #7a869a;
132
+ background-color: #436bff;
133
133
  border-radius: 100%;
134
134
  -webkit-transform: scale(0.75);
135
135
  transform: scale(0.75);
@@ -63,7 +63,7 @@
63
63
  .ant-steps-item-icon .ant-steps-icon {
64
64
  position: relative;
65
65
  top: -0.5px;
66
- color: #7a869a;
66
+ color: #436bff;
67
67
  line-height: 1;
68
68
  }
69
69
  .ant-steps-item-tail {
@@ -136,13 +136,13 @@
136
136
  }
137
137
  .ant-steps-item-process .ant-steps-item-icon {
138
138
  background-color: #ffffff;
139
- border-color: #7a869a;
139
+ border-color: #436bff;
140
140
  }
141
141
  .ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon {
142
- color: #7a869a;
142
+ color: #436bff;
143
143
  }
144
144
  .ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot {
145
- background: #7a869a;
145
+ background: #436bff;
146
146
  }
147
147
  .ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title {
148
148
  color: #333;
@@ -157,7 +157,7 @@
157
157
  background-color: #e5e5e5;
158
158
  }
159
159
  .ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-icon {
160
- background: #7a869a;
160
+ background: #436bff;
161
161
  }
162
162
  .ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-icon .ant-steps-icon {
163
163
  color: #fff;
@@ -167,25 +167,25 @@
167
167
  }
168
168
  .ant-steps-item-finish .ant-steps-item-icon {
169
169
  background-color: #ffffff;
170
- border-color: #7a869a;
170
+ border-color: #436bff;
171
171
  }
172
172
  .ant-steps-item-finish .ant-steps-item-icon > .ant-steps-icon {
173
- color: #7a869a;
173
+ color: #436bff;
174
174
  }
175
175
  .ant-steps-item-finish .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot {
176
- background: #7a869a;
176
+ background: #436bff;
177
177
  }
178
178
  .ant-steps-item-finish > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title {
179
179
  color: rgba(0, 0, 0, 0.65);
180
180
  }
181
181
  .ant-steps-item-finish > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after {
182
- background-color: #7a869a;
182
+ background-color: #436bff;
183
183
  }
184
184
  .ant-steps-item-finish > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-description {
185
185
  color: rgba(0, 0, 0, 0.45);
186
186
  }
187
187
  .ant-steps-item-finish > .ant-steps-item-container > .ant-steps-item-tail::after {
188
- background-color: #7a869a;
188
+ background-color: #436bff;
189
189
  }
190
190
  .ant-steps-item-error .ant-steps-item-icon {
191
191
  background-color: #ffffff;
@@ -228,13 +228,13 @@
228
228
  .ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button']:hover .ant-steps-item-title,
229
229
  .ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button']:hover .ant-steps-item-subtitle,
230
230
  .ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button']:hover .ant-steps-item-description {
231
- color: #7a869a;
231
+ color: #436bff;
232
232
  }
233
233
  .ant-steps .ant-steps-item:not(.ant-steps-item-active):not(.ant-steps-item-process) > .ant-steps-item-container[role='button']:hover .ant-steps-item-icon {
234
- border-color: #7a869a;
234
+ border-color: #436bff;
235
235
  }
236
236
  .ant-steps .ant-steps-item:not(.ant-steps-item-active):not(.ant-steps-item-process) > .ant-steps-item-container[role='button']:hover .ant-steps-item-icon .ant-steps-icon {
237
- color: #7a869a;
237
+ color: #436bff;
238
238
  }
239
239
  .ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item {
240
240
  padding-left: 16px;
@@ -267,7 +267,7 @@
267
267
  line-height: 32px;
268
268
  }
269
269
  .ant-steps-item-custom.ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon {
270
- color: #7a869a;
270
+ color: #436bff;
271
271
  }
272
272
  .ant-steps:not(.ant-steps-vertical) .ant-steps-item-custom .ant-steps-item-icon {
273
273
  width: auto;
@@ -574,7 +574,7 @@
574
574
  display: inline-block;
575
575
  width: 0;
576
576
  height: 2px;
577
- background-color: #7a869a;
577
+ background-color: #436bff;
578
578
  -webkit-transition: width 0.3s, left 0.3s;
579
579
  transition: width 0.3s, left 0.3s;
580
580
  -webkit-transition-timing-function: ease-out;
@@ -814,7 +814,7 @@
814
814
  }
815
815
  .pandora-sdk-steps .ant-steps-item .ant-steps-item-icon {
816
816
  border-radius: 2px;
817
- background: #2c6dd2;
817
+ background: #436bff;
818
818
  border: none;
819
819
  }
820
820
  .pandora-sdk-steps .ant-steps-item.ant-steps-item-finish .ant-steps-item-icon .ant-steps-icon {
@@ -11,6 +11,7 @@ export interface ISettingBtnProps {
11
11
  hiddenKeys?: string[];
12
12
  options?: IOption[];
13
13
  loading?: boolean;
14
+ sortable: boolean;
14
15
  }
15
16
  export declare function ColumnSetting(props: ISettingBtnProps): React.JSX.Element;
16
17
  declare const _default: React.MemoExoticComponent<typeof ColumnSetting>;