@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
|
@@ -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: #
|
|
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: #
|
|
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(
|
|
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: #
|
|
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(
|
|
824
|
-
color: #
|
|
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: #
|
|
82
|
+
border-color: #436bff;
|
|
83
83
|
}
|
|
84
84
|
.ant-radio-input:focus + .ant-radio-inner {
|
|
85
|
-
-webkit-box-shadow: 0 0 0 3px
|
|
86
|
-
box-shadow: 0 0 0 3px
|
|
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 #
|
|
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: #
|
|
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: #
|
|
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: #
|
|
253
|
+
color: #436bff;
|
|
254
254
|
}
|
|
255
255
|
.ant-radio-button-wrapper:focus-within {
|
|
256
|
-
-webkit-box-shadow: 0 0 0 3px
|
|
257
|
-
box-shadow: 0 0 0 3px
|
|
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: #
|
|
269
|
+
color: #436bff;
|
|
270
270
|
background: #ffffff;
|
|
271
|
-
border-color: #
|
|
271
|
+
border-color: #436bff;
|
|
272
272
|
}
|
|
273
273
|
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled)::before {
|
|
274
|
-
background-color: #
|
|
274
|
+
background-color: #436bff;
|
|
275
275
|
}
|
|
276
276
|
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child {
|
|
277
|
-
border-color: #
|
|
277
|
+
border-color: #436bff;
|
|
278
278
|
}
|
|
279
279
|
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover {
|
|
280
|
-
color: #
|
|
281
|
-
border-color: #
|
|
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: #
|
|
284
|
+
background-color: #436bff;
|
|
285
285
|
}
|
|
286
286
|
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active {
|
|
287
|
-
color: #
|
|
288
|
-
border-color: #
|
|
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: #
|
|
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
|
|
295
|
-
box-shadow: 0 0 0 3px
|
|
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: #
|
|
300
|
-
border-color: #
|
|
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: #
|
|
305
|
-
border-color: #
|
|
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: #
|
|
310
|
-
border-color: #
|
|
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
|
|
314
|
-
box-shadow: 0 0 0 3px
|
|
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: #
|
|
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: #
|
|
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: #
|
|
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
|
}
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
text-overflow: ellipsis;
|
|
48
48
|
}
|
|
49
49
|
.ant-input-affix-wrapper:hover {
|
|
50
|
-
border-color: #
|
|
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: #
|
|
60
|
-
-webkit-box-shadow: 0 0 0 2px rgba(
|
|
61
|
-
box-shadow: 0 0 0 2px rgba(
|
|
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: #
|
|
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: #
|
|
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: #
|
|
365
|
-
-webkit-box-shadow: 0 0 0 2px rgba(
|
|
366
|
-
box-shadow: 0 0 0 2px rgba(
|
|
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: #
|
|
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: #
|
|
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: #
|
|
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: #
|
|
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: #
|
|
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: #
|
|
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: #
|
|
1044
|
-
-webkit-box-shadow: 0 0 0 2px rgba(
|
|
1045
|
-
box-shadow: 0 0 0 2px rgba(
|
|
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: #
|
|
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: #
|
|
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: #
|
|
1310
|
-
-webkit-box-shadow: 0 0 0 2px rgba(
|
|
1311
|
-
box-shadow: 0 0 0 2px rgba(
|
|
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: #
|
|
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: #
|
|
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: #
|
|
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: #
|
|
1791
|
-
-webkit-box-shadow: 0 0 0 2px rgba(
|
|
1792
|
-
box-shadow: 0 0 0 2px rgba(
|
|
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: #
|
|
415
|
-
-webkit-box-shadow: 0 0 0 2px rgba(
|
|
416
|
-
box-shadow: 0 0 0 2px rgba(
|
|
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: #
|
|
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(
|
|
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(
|
|
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: #
|
|
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: #
|
|
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 #
|
|
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: #
|
|
932
|
-
border-color: #
|
|
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: #
|
|
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: #
|
|
1122
|
+
color: #436bff;
|
|
1123
1123
|
font-weight: 400;
|
|
1124
1124
|
}
|
|
1125
1125
|
.pandora-sdk-selector-dropdown .ant-select-item-option:hover {
|
|
1126
|
-
color: #
|
|
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: #
|
|
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: #
|
|
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: #
|
|
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: #
|
|
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: #
|
|
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: #
|
|
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: #
|
|
139
|
+
border-color: #436bff;
|
|
140
140
|
}
|
|
141
141
|
.ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon {
|
|
142
|
-
color: #
|
|
142
|
+
color: #436bff;
|
|
143
143
|
}
|
|
144
144
|
.ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot {
|
|
145
|
-
background: #
|
|
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: #
|
|
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: #
|
|
170
|
+
border-color: #436bff;
|
|
171
171
|
}
|
|
172
172
|
.ant-steps-item-finish .ant-steps-item-icon > .ant-steps-icon {
|
|
173
|
-
color: #
|
|
173
|
+
color: #436bff;
|
|
174
174
|
}
|
|
175
175
|
.ant-steps-item-finish .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot {
|
|
176
|
-
background: #
|
|
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: #
|
|
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: #
|
|
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: #
|
|
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: #
|
|
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: #
|
|
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: #
|
|
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: #
|
|
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: #
|
|
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>;
|