@jiaozhiye/qm-design-react 1.2.0-beta.21 → 1.2.0-beta.24
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/lib/index.esm.js +2 -2
- package/lib/index.full.js +1 -1
- package/lib/index.js +2 -2
- package/lib/search-helper/src/search-helper.d.ts +1 -4
- package/lib/style/index.css +224 -161
- package/lib/style/index.min.css +1 -1
- package/lib/tree-table-helper/src/tree-table-helper.d.ts +1 -4
- package/package.json +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { IFormItem, IFormData } from '../../form/src/types';
|
|
3
|
-
import type { IFetch,
|
|
3
|
+
import type { IFetch, IColumn, IRowKey, IRecord } from '../../table/src/table/types';
|
|
4
4
|
import type { ComponentSize } from '../../_utils/types';
|
|
5
5
|
declare type ITableConfig = {
|
|
6
6
|
fetch?: IFetch;
|
|
@@ -17,9 +17,6 @@ declare type IProps = {
|
|
|
17
17
|
multiple?: boolean;
|
|
18
18
|
filters?: IFormItem[];
|
|
19
19
|
table?: ITableConfig;
|
|
20
|
-
name?: string;
|
|
21
|
-
getServerConfig?: IFetchFn;
|
|
22
|
-
createTableFetch?: (url: string) => IFetchFn;
|
|
23
20
|
onClose: (data: IRecord | null, keys?: IRowKey[]) => void;
|
|
24
21
|
};
|
|
25
22
|
export declare type QmSearchHelperProps = IProps;
|
package/lib/style/index.css
CHANGED
|
@@ -7858,114 +7858,90 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
7858
7858
|
.ant-drawer {
|
|
7859
7859
|
position: fixed;
|
|
7860
7860
|
z-index: 1000;
|
|
7861
|
-
|
|
7862
|
-
|
|
7863
|
-
transition: width 0s ease 0.3s, height 0s ease 0.3s;
|
|
7861
|
+
pointer-events: none;
|
|
7862
|
+
inset: 0;
|
|
7864
7863
|
}
|
|
7865
|
-
.ant-drawer-
|
|
7864
|
+
.ant-drawer-inline {
|
|
7866
7865
|
position: absolute;
|
|
7867
|
-
width: 100%;
|
|
7868
|
-
height: 100%;
|
|
7869
|
-
transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1);
|
|
7870
7866
|
}
|
|
7871
|
-
.ant-drawer
|
|
7872
|
-
|
|
7873
|
-
|
|
7874
|
-
|
|
7875
|
-
|
|
7876
|
-
|
|
7877
|
-
top: 0;
|
|
7878
|
-
width: 0%;
|
|
7879
|
-
height: 100%;
|
|
7880
|
-
}
|
|
7881
|
-
.ant-drawer-left .ant-drawer-content-wrapper,
|
|
7882
|
-
.ant-drawer-right .ant-drawer-content-wrapper {
|
|
7883
|
-
height: 100%;
|
|
7884
|
-
}
|
|
7885
|
-
.ant-drawer-left.ant-drawer-open,
|
|
7886
|
-
.ant-drawer-right.ant-drawer-open {
|
|
7887
|
-
width: 100%;
|
|
7888
|
-
transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
|
|
7867
|
+
.ant-drawer-mask {
|
|
7868
|
+
position: absolute;
|
|
7869
|
+
z-index: 1000;
|
|
7870
|
+
background: rgba(0, 0, 0, 0.45);
|
|
7871
|
+
pointer-events: auto;
|
|
7872
|
+
inset: 0;
|
|
7889
7873
|
}
|
|
7890
|
-
.ant-drawer-
|
|
7891
|
-
|
|
7874
|
+
.ant-drawer-content-wrapper {
|
|
7875
|
+
position: absolute;
|
|
7876
|
+
z-index: 1000;
|
|
7877
|
+
transition: transform 0.3s;
|
|
7892
7878
|
}
|
|
7893
7879
|
.ant-drawer-left .ant-drawer-content-wrapper {
|
|
7880
|
+
top: 0;
|
|
7881
|
+
bottom: 0;
|
|
7894
7882
|
left: 0;
|
|
7895
7883
|
}
|
|
7896
|
-
.ant-drawer-left.ant-drawer-open .ant-drawer-content-wrapper {
|
|
7897
|
-
box-shadow: 6px 0 16px -8px rgba(0, 0, 0, 0.08), 9px 0 28px 0 rgba(0, 0, 0, 0.05), 12px 0 48px 16px rgba(0, 0, 0, 0.03);
|
|
7898
|
-
}
|
|
7899
|
-
.ant-drawer-right {
|
|
7900
|
-
right: 0;
|
|
7901
|
-
}
|
|
7902
7884
|
.ant-drawer-right .ant-drawer-content-wrapper {
|
|
7885
|
+
top: 0;
|
|
7903
7886
|
right: 0;
|
|
7887
|
+
bottom: 0;
|
|
7904
7888
|
}
|
|
7905
|
-
.ant-drawer-
|
|
7906
|
-
|
|
7907
|
-
|
|
7908
|
-
.ant-drawer-right.ant-drawer-open.no-mask {
|
|
7909
|
-
right: 1px;
|
|
7910
|
-
transform: translateX(1px);
|
|
7911
|
-
}
|
|
7912
|
-
.ant-drawer-top,
|
|
7913
|
-
.ant-drawer-bottom {
|
|
7889
|
+
.ant-drawer-top .ant-drawer-content-wrapper {
|
|
7890
|
+
top: 0;
|
|
7891
|
+
right: 0;
|
|
7914
7892
|
left: 0;
|
|
7915
|
-
width: 100%;
|
|
7916
|
-
height: 0%;
|
|
7917
7893
|
}
|
|
7918
|
-
.ant-drawer-top .ant-drawer-content-wrapper,
|
|
7919
7894
|
.ant-drawer-bottom .ant-drawer-content-wrapper {
|
|
7920
|
-
|
|
7895
|
+
right: 0;
|
|
7896
|
+
bottom: 0;
|
|
7897
|
+
left: 0;
|
|
7921
7898
|
}
|
|
7922
|
-
.ant-drawer-
|
|
7923
|
-
|
|
7899
|
+
.ant-drawer-content {
|
|
7900
|
+
width: 100%;
|
|
7924
7901
|
height: 100%;
|
|
7925
|
-
|
|
7902
|
+
overflow: auto;
|
|
7903
|
+
pointer-events: auto;
|
|
7926
7904
|
}
|
|
7927
|
-
.ant-drawer-
|
|
7928
|
-
|
|
7905
|
+
.ant-drawer-content-hidden {
|
|
7906
|
+
display: none;
|
|
7929
7907
|
}
|
|
7930
|
-
.ant-drawer-
|
|
7931
|
-
box-shadow: 0
|
|
7908
|
+
.ant-drawer-left .ant-drawer-content {
|
|
7909
|
+
box-shadow: 6px 0 16px -8px rgba(0, 0, 0, 0.08), 9px 0 28px 0 rgba(0, 0, 0, 0.05), 12px 0 48px 16px rgba(0, 0, 0, 0.03);
|
|
7932
7910
|
}
|
|
7933
|
-
.ant-drawer-
|
|
7934
|
-
|
|
7911
|
+
.ant-drawer-right .ant-drawer-content {
|
|
7912
|
+
box-shadow: -6px 0 16px -8px rgba(0, 0, 0, 0.08), -9px 0 28px 0 rgba(0, 0, 0, 0.05), -12px 0 48px 16px rgba(0, 0, 0, 0.03);
|
|
7935
7913
|
}
|
|
7936
|
-
.ant-drawer-
|
|
7937
|
-
|
|
7914
|
+
.ant-drawer-top .ant-drawer-content {
|
|
7915
|
+
box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.08), 0 9px 28px 0 rgba(0, 0, 0, 0.05), 0 12px 48px 16px rgba(0, 0, 0, 0.03);
|
|
7938
7916
|
}
|
|
7939
|
-
.ant-drawer-bottom
|
|
7917
|
+
.ant-drawer-bottom .ant-drawer-content {
|
|
7940
7918
|
box-shadow: 0 -6px 16px -8px rgba(0, 0, 0, 0.08), 0 -9px 28px 0 rgba(0, 0, 0, 0.05), 0 -12px 48px 16px rgba(0, 0, 0, 0.03);
|
|
7941
7919
|
}
|
|
7942
|
-
.ant-drawer-
|
|
7943
|
-
|
|
7944
|
-
|
|
7945
|
-
|
|
7946
|
-
.ant-drawer.ant-drawer-open .ant-drawer-mask {
|
|
7920
|
+
.ant-drawer-wrapper-body {
|
|
7921
|
+
display: flex;
|
|
7922
|
+
flex-direction: column;
|
|
7923
|
+
width: 100%;
|
|
7947
7924
|
height: 100%;
|
|
7948
|
-
|
|
7949
|
-
transition: none;
|
|
7950
|
-
-webkit-animation: antdDrawerFadeIn 0.3s cubic-bezier(0.23, 1, 0.32, 1);
|
|
7951
|
-
animation: antdDrawerFadeIn 0.3s cubic-bezier(0.23, 1, 0.32, 1);
|
|
7952
|
-
pointer-events: auto;
|
|
7925
|
+
background: #fff;
|
|
7953
7926
|
}
|
|
7954
|
-
.ant-drawer-
|
|
7955
|
-
|
|
7956
|
-
|
|
7957
|
-
|
|
7958
|
-
|
|
7927
|
+
.ant-drawer-header {
|
|
7928
|
+
display: flex;
|
|
7929
|
+
flex: 0;
|
|
7930
|
+
align-items: center;
|
|
7931
|
+
padding: 16px 24px;
|
|
7959
7932
|
font-size: 16px;
|
|
7960
7933
|
line-height: 22px;
|
|
7934
|
+
border-bottom: 1px solid #f0f0f0;
|
|
7961
7935
|
}
|
|
7962
|
-
.ant-drawer-
|
|
7963
|
-
|
|
7964
|
-
|
|
7965
|
-
|
|
7966
|
-
|
|
7967
|
-
|
|
7968
|
-
|
|
7936
|
+
.ant-drawer-header-title {
|
|
7937
|
+
display: flex;
|
|
7938
|
+
flex: 1;
|
|
7939
|
+
align-items: center;
|
|
7940
|
+
min-width: 0;
|
|
7941
|
+
min-height: 0;
|
|
7942
|
+
}
|
|
7943
|
+
.ant-drawer-extra {
|
|
7944
|
+
flex: 0;
|
|
7969
7945
|
}
|
|
7970
7946
|
.ant-drawer-close {
|
|
7971
7947
|
display: inline-block;
|
|
@@ -7990,75 +7966,125 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
7990
7966
|
color: rgba(0, 0, 0, 0.75);
|
|
7991
7967
|
text-decoration: none;
|
|
7992
7968
|
}
|
|
7993
|
-
.ant-drawer-
|
|
7994
|
-
position: relative;
|
|
7995
|
-
display: flex;
|
|
7996
|
-
align-items: center;
|
|
7997
|
-
justify-content: space-between;
|
|
7998
|
-
padding: 16px 24px;
|
|
7999
|
-
color: rgba(0, 0, 0, 0.85);
|
|
8000
|
-
background: #fff;
|
|
8001
|
-
border-bottom: 1px solid #f0f0f0;
|
|
8002
|
-
border-radius: 2px 2px 0 0;
|
|
8003
|
-
}
|
|
8004
|
-
.ant-drawer-header-title {
|
|
8005
|
-
display: flex;
|
|
7969
|
+
.ant-drawer-title {
|
|
8006
7970
|
flex: 1;
|
|
8007
|
-
|
|
8008
|
-
|
|
8009
|
-
|
|
8010
|
-
|
|
8011
|
-
|
|
8012
|
-
border: none;
|
|
8013
|
-
}
|
|
8014
|
-
.ant-drawer-wrapper-body {
|
|
8015
|
-
display: flex;
|
|
8016
|
-
flex-flow: column nowrap;
|
|
8017
|
-
width: 100%;
|
|
8018
|
-
height: 100%;
|
|
7971
|
+
margin: 0;
|
|
7972
|
+
color: rgba(0, 0, 0, 0.85);
|
|
7973
|
+
font-weight: 500;
|
|
7974
|
+
font-size: 16px;
|
|
7975
|
+
line-height: 22px;
|
|
8019
7976
|
}
|
|
8020
7977
|
.ant-drawer-body {
|
|
8021
|
-
flex
|
|
7978
|
+
flex: 1;
|
|
7979
|
+
min-width: 0;
|
|
7980
|
+
min-height: 0;
|
|
8022
7981
|
padding: 24px;
|
|
8023
7982
|
overflow: auto;
|
|
8024
|
-
font-size: 14px;
|
|
8025
|
-
line-height: 1.5715;
|
|
8026
|
-
word-wrap: break-word;
|
|
8027
7983
|
}
|
|
8028
7984
|
.ant-drawer-footer {
|
|
8029
7985
|
flex-shrink: 0;
|
|
8030
7986
|
padding: 10px 16px;
|
|
8031
7987
|
border-top: 1px solid #f0f0f0;
|
|
8032
7988
|
}
|
|
8033
|
-
.
|
|
8034
|
-
|
|
8035
|
-
|
|
8036
|
-
|
|
8037
|
-
|
|
8038
|
-
|
|
8039
|
-
|
|
7989
|
+
.panel-motion-enter-active,
|
|
7990
|
+
.panel-motion-appear-active,
|
|
7991
|
+
.panel-motion-leave-active {
|
|
7992
|
+
transition: all 0.3s;
|
|
7993
|
+
}
|
|
7994
|
+
.ant-drawer-mask-motion-enter-active,
|
|
7995
|
+
.ant-drawer-mask-motion-appear-active,
|
|
7996
|
+
.ant-drawer-mask-motion-leave-active {
|
|
7997
|
+
transition: all 0.3s;
|
|
7998
|
+
}
|
|
7999
|
+
.ant-drawer-mask-motion-enter,
|
|
8000
|
+
.ant-drawer-mask-motion-appear {
|
|
8040
8001
|
opacity: 0;
|
|
8041
|
-
transition: opacity 0.3s linear, height 0s ease 0.3s;
|
|
8042
|
-
pointer-events: none;
|
|
8043
8002
|
}
|
|
8044
|
-
.ant-drawer
|
|
8045
|
-
|
|
8003
|
+
.ant-drawer-mask-motion-enter-active,
|
|
8004
|
+
.ant-drawer-mask-motion-appear-active {
|
|
8005
|
+
opacity: 1;
|
|
8046
8006
|
}
|
|
8047
|
-
|
|
8048
|
-
|
|
8049
|
-
opacity: 0;
|
|
8050
|
-
}
|
|
8051
|
-
100% {
|
|
8052
|
-
opacity: 1;
|
|
8053
|
-
}
|
|
8007
|
+
.ant-drawer-mask-motion-leave {
|
|
8008
|
+
opacity: 1;
|
|
8054
8009
|
}
|
|
8055
|
-
|
|
8056
|
-
0
|
|
8057
|
-
|
|
8058
|
-
|
|
8059
|
-
|
|
8060
|
-
|
|
8061
|
-
|
|
8010
|
+
.ant-drawer-mask-motion-leave-active {
|
|
8011
|
+
opacity: 0;
|
|
8012
|
+
}
|
|
8013
|
+
.ant-drawer-panel-motion-left-enter-active,
|
|
8014
|
+
.ant-drawer-panel-motion-left-appear-active,
|
|
8015
|
+
.ant-drawer-panel-motion-left-leave-active {
|
|
8016
|
+
transition: all 0.3s;
|
|
8017
|
+
}
|
|
8018
|
+
.ant-drawer-panel-motion-left-enter,
|
|
8019
|
+
.ant-drawer-panel-motion-left-appear {
|
|
8020
|
+
transform: translateX(-100%);
|
|
8021
|
+
}
|
|
8022
|
+
.ant-drawer-panel-motion-left-enter-active,
|
|
8023
|
+
.ant-drawer-panel-motion-left-appear-active {
|
|
8024
|
+
transform: translateX(0);
|
|
8025
|
+
}
|
|
8026
|
+
.ant-drawer-panel-motion-left-leave {
|
|
8027
|
+
transform: translateX(0);
|
|
8028
|
+
}
|
|
8029
|
+
.ant-drawer-panel-motion-left-leave-active {
|
|
8030
|
+
transform: translateX(-100%);
|
|
8031
|
+
}
|
|
8032
|
+
.ant-drawer-panel-motion-right-enter-active,
|
|
8033
|
+
.ant-drawer-panel-motion-right-appear-active,
|
|
8034
|
+
.ant-drawer-panel-motion-right-leave-active {
|
|
8035
|
+
transition: all 0.3s;
|
|
8036
|
+
}
|
|
8037
|
+
.ant-drawer-panel-motion-right-enter,
|
|
8038
|
+
.ant-drawer-panel-motion-right-appear {
|
|
8039
|
+
transform: translateX(100%);
|
|
8040
|
+
}
|
|
8041
|
+
.ant-drawer-panel-motion-right-enter-active,
|
|
8042
|
+
.ant-drawer-panel-motion-right-appear-active {
|
|
8043
|
+
transform: translateX(0);
|
|
8044
|
+
}
|
|
8045
|
+
.ant-drawer-panel-motion-right-leave {
|
|
8046
|
+
transform: translateX(0);
|
|
8047
|
+
}
|
|
8048
|
+
.ant-drawer-panel-motion-right-leave-active {
|
|
8049
|
+
transform: translateX(100%);
|
|
8050
|
+
}
|
|
8051
|
+
.ant-drawer-panel-motion-top-enter-active,
|
|
8052
|
+
.ant-drawer-panel-motion-top-appear-active,
|
|
8053
|
+
.ant-drawer-panel-motion-top-leave-active {
|
|
8054
|
+
transition: all 0.3s;
|
|
8055
|
+
}
|
|
8056
|
+
.ant-drawer-panel-motion-top-enter,
|
|
8057
|
+
.ant-drawer-panel-motion-top-appear {
|
|
8058
|
+
transform: translateY(-100%);
|
|
8059
|
+
}
|
|
8060
|
+
.ant-drawer-panel-motion-top-enter-active,
|
|
8061
|
+
.ant-drawer-panel-motion-top-appear-active {
|
|
8062
|
+
transform: translateY(0);
|
|
8063
|
+
}
|
|
8064
|
+
.ant-drawer-panel-motion-top-leave {
|
|
8065
|
+
transform: translateY(0);
|
|
8066
|
+
}
|
|
8067
|
+
.ant-drawer-panel-motion-top-leave-active {
|
|
8068
|
+
transform: translateY(-100%);
|
|
8069
|
+
}
|
|
8070
|
+
.ant-drawer-panel-motion-bottom-enter-active,
|
|
8071
|
+
.ant-drawer-panel-motion-bottom-appear-active,
|
|
8072
|
+
.ant-drawer-panel-motion-bottom-leave-active {
|
|
8073
|
+
transition: all 0.3s;
|
|
8074
|
+
}
|
|
8075
|
+
.ant-drawer-panel-motion-bottom-enter,
|
|
8076
|
+
.ant-drawer-panel-motion-bottom-appear {
|
|
8077
|
+
transform: translateY(100%);
|
|
8078
|
+
}
|
|
8079
|
+
.ant-drawer-panel-motion-bottom-enter-active,
|
|
8080
|
+
.ant-drawer-panel-motion-bottom-appear-active {
|
|
8081
|
+
transform: translateY(0);
|
|
8082
|
+
}
|
|
8083
|
+
.ant-drawer-panel-motion-bottom-leave {
|
|
8084
|
+
transform: translateY(0);
|
|
8085
|
+
}
|
|
8086
|
+
.ant-drawer-panel-motion-bottom-leave-active {
|
|
8087
|
+
transform: translateY(100%);
|
|
8062
8088
|
}
|
|
8063
8089
|
.ant-drawer-rtl {
|
|
8064
8090
|
direction: rtl;
|
|
@@ -8582,6 +8608,9 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
8582
8608
|
.ant-form-vertical .ant-form-item-label > label {
|
|
8583
8609
|
height: auto;
|
|
8584
8610
|
}
|
|
8611
|
+
.ant-form-vertical .ant-form-item .ant-form-item-control {
|
|
8612
|
+
width: 100%;
|
|
8613
|
+
}
|
|
8585
8614
|
.ant-form-vertical .ant-form-item-label,
|
|
8586
8615
|
.ant-col-24.ant-form-item-label,
|
|
8587
8616
|
.ant-col-xl-24.ant-form-item-label {
|
|
@@ -8817,10 +8846,8 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
8817
8846
|
font-feature-settings: 'tnum';
|
|
8818
8847
|
margin-bottom: 24px;
|
|
8819
8848
|
vertical-align: top;
|
|
8820
|
-
transition: margin-bottom 0.3s 0.017s linear;
|
|
8821
8849
|
}
|
|
8822
8850
|
.ant-form-item-with-help {
|
|
8823
|
-
margin-bottom: 0;
|
|
8824
8851
|
transition: none;
|
|
8825
8852
|
}
|
|
8826
8853
|
.ant-form-item-hidden,
|
|
@@ -8919,16 +8946,13 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
8919
8946
|
transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
8920
8947
|
}
|
|
8921
8948
|
.ant-form-item-explain-connected {
|
|
8922
|
-
|
|
8923
|
-
min-height: 0;
|
|
8924
|
-
opacity: 0;
|
|
8949
|
+
width: 100%;
|
|
8925
8950
|
}
|
|
8926
8951
|
.ant-form-item-extra {
|
|
8927
8952
|
min-height: 24px;
|
|
8928
8953
|
}
|
|
8929
8954
|
.ant-form-item-with-help .ant-form-item-explain {
|
|
8930
8955
|
height: auto;
|
|
8931
|
-
min-height: 24px;
|
|
8932
8956
|
opacity: 1;
|
|
8933
8957
|
}
|
|
8934
8958
|
.ant-form-item-feedback-icon {
|
|
@@ -8952,13 +8976,21 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
8952
8976
|
color: #1890ff;
|
|
8953
8977
|
}
|
|
8954
8978
|
.ant-show-help {
|
|
8955
|
-
transition:
|
|
8979
|
+
transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
8980
|
+
}
|
|
8981
|
+
.ant-show-help-appear,
|
|
8982
|
+
.ant-show-help-enter {
|
|
8983
|
+
opacity: 0;
|
|
8984
|
+
}
|
|
8985
|
+
.ant-show-help-appear-active,
|
|
8986
|
+
.ant-show-help-enter-active {
|
|
8987
|
+
opacity: 1;
|
|
8956
8988
|
}
|
|
8957
8989
|
.ant-show-help-leave {
|
|
8958
|
-
|
|
8990
|
+
opacity: 1;
|
|
8959
8991
|
}
|
|
8960
8992
|
.ant-show-help-leave-active {
|
|
8961
|
-
|
|
8993
|
+
opacity: 0;
|
|
8962
8994
|
}
|
|
8963
8995
|
.ant-show-help-item {
|
|
8964
8996
|
overflow: hidden;
|
|
@@ -8974,6 +9006,9 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
8974
9006
|
transform: translateY(0);
|
|
8975
9007
|
opacity: 1;
|
|
8976
9008
|
}
|
|
9009
|
+
.ant-show-help-item-leave {
|
|
9010
|
+
transition: height 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
|
|
9011
|
+
}
|
|
8977
9012
|
.ant-show-help-item-leave-active {
|
|
8978
9013
|
transform: translateY(-5px);
|
|
8979
9014
|
}
|
|
@@ -21436,6 +21471,10 @@ span.ant-radio + * {
|
|
|
21436
21471
|
height: 32px;
|
|
21437
21472
|
line-height: 32px;
|
|
21438
21473
|
}
|
|
21474
|
+
.ant-skeleton-element .ant-skeleton-button.ant-skeleton-button-square {
|
|
21475
|
+
width: 32px;
|
|
21476
|
+
min-width: 32px;
|
|
21477
|
+
}
|
|
21439
21478
|
.ant-skeleton-element .ant-skeleton-button.ant-skeleton-button-circle {
|
|
21440
21479
|
width: 32px;
|
|
21441
21480
|
min-width: 32px;
|
|
@@ -21450,6 +21489,10 @@ span.ant-radio + * {
|
|
|
21450
21489
|
height: 40px;
|
|
21451
21490
|
line-height: 40px;
|
|
21452
21491
|
}
|
|
21492
|
+
.ant-skeleton-element .ant-skeleton-button-lg.ant-skeleton-button-square {
|
|
21493
|
+
width: 40px;
|
|
21494
|
+
min-width: 40px;
|
|
21495
|
+
}
|
|
21453
21496
|
.ant-skeleton-element .ant-skeleton-button-lg.ant-skeleton-button-circle {
|
|
21454
21497
|
width: 40px;
|
|
21455
21498
|
min-width: 40px;
|
|
@@ -21464,6 +21507,10 @@ span.ant-radio + * {
|
|
|
21464
21507
|
height: 24px;
|
|
21465
21508
|
line-height: 24px;
|
|
21466
21509
|
}
|
|
21510
|
+
.ant-skeleton-element .ant-skeleton-button-sm.ant-skeleton-button-square {
|
|
21511
|
+
width: 24px;
|
|
21512
|
+
min-width: 24px;
|
|
21513
|
+
}
|
|
21467
21514
|
.ant-skeleton-element .ant-skeleton-button-sm.ant-skeleton-button-circle {
|
|
21468
21515
|
width: 24px;
|
|
21469
21516
|
min-width: 24px;
|
|
@@ -23518,6 +23565,11 @@ table tr th.ant-table-selection-column::after {
|
|
|
23518
23565
|
.ant-table-row-expand-icon-cell {
|
|
23519
23566
|
text-align: center;
|
|
23520
23567
|
}
|
|
23568
|
+
.ant-table-row-expand-icon-cell .ant-table-row-expand-icon {
|
|
23569
|
+
display: inline-flex;
|
|
23570
|
+
float: none;
|
|
23571
|
+
vertical-align: sub;
|
|
23572
|
+
}
|
|
23521
23573
|
.ant-table-row-indent {
|
|
23522
23574
|
float: left;
|
|
23523
23575
|
height: 1px;
|
|
@@ -23528,14 +23580,13 @@ table tr th.ant-table-selection-column::after {
|
|
|
23528
23580
|
cursor: pointer;
|
|
23529
23581
|
transition: color 0.3s;
|
|
23530
23582
|
position: relative;
|
|
23531
|
-
|
|
23583
|
+
float: left;
|
|
23532
23584
|
box-sizing: border-box;
|
|
23533
23585
|
width: 17px;
|
|
23534
23586
|
height: 17px;
|
|
23535
23587
|
padding: 0;
|
|
23536
23588
|
color: inherit;
|
|
23537
23589
|
line-height: 17px;
|
|
23538
|
-
vertical-align: -3px;
|
|
23539
23590
|
background: #fff;
|
|
23540
23591
|
border: 1px solid #f0f0f0;
|
|
23541
23592
|
border-radius: 2px;
|
|
@@ -23648,6 +23699,9 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
|
|
|
23648
23699
|
content: '';
|
|
23649
23700
|
pointer-events: none;
|
|
23650
23701
|
}
|
|
23702
|
+
.ant-table-cell-fix-left-all::after {
|
|
23703
|
+
display: none;
|
|
23704
|
+
}
|
|
23651
23705
|
.ant-table-cell-fix-right-first::after,
|
|
23652
23706
|
.ant-table-cell-fix-right-last::after {
|
|
23653
23707
|
position: absolute;
|
|
@@ -25833,6 +25887,17 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
|
|
|
25833
25887
|
color: inherit;
|
|
25834
25888
|
font-weight: 500;
|
|
25835
25889
|
}
|
|
25890
|
+
.ant-tree .ant-tree-treenode-draggable .ant-tree-draggable-icon {
|
|
25891
|
+
width: 24px;
|
|
25892
|
+
line-height: 24px;
|
|
25893
|
+
text-align: center;
|
|
25894
|
+
visibility: visible;
|
|
25895
|
+
opacity: 0.2;
|
|
25896
|
+
transition: opacity 0.3s;
|
|
25897
|
+
}
|
|
25898
|
+
.ant-tree-treenode:hover .ant-tree .ant-tree-treenode-draggable .ant-tree-draggable-icon {
|
|
25899
|
+
opacity: 0.45;
|
|
25900
|
+
}
|
|
25836
25901
|
.ant-tree-indent {
|
|
25837
25902
|
align-self: stretch;
|
|
25838
25903
|
white-space: nowrap;
|
|
@@ -25845,14 +25910,7 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
|
|
|
25845
25910
|
width: 24px;
|
|
25846
25911
|
}
|
|
25847
25912
|
.ant-tree-draggable-icon {
|
|
25848
|
-
|
|
25849
|
-
line-height: 24px;
|
|
25850
|
-
text-align: center;
|
|
25851
|
-
opacity: 0.2;
|
|
25852
|
-
transition: opacity 0.3s;
|
|
25853
|
-
}
|
|
25854
|
-
.ant-tree-treenode:hover .ant-tree-draggable-icon {
|
|
25855
|
-
opacity: 0.45;
|
|
25913
|
+
visibility: hidden;
|
|
25856
25914
|
}
|
|
25857
25915
|
.ant-tree-switcher {
|
|
25858
25916
|
position: relative;
|
|
@@ -26321,6 +26379,17 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
|
|
|
26321
26379
|
color: inherit;
|
|
26322
26380
|
font-weight: 500;
|
|
26323
26381
|
}
|
|
26382
|
+
.ant-select-tree .ant-select-tree-treenode-draggable .ant-select-tree-draggable-icon {
|
|
26383
|
+
width: 24px;
|
|
26384
|
+
line-height: 24px;
|
|
26385
|
+
text-align: center;
|
|
26386
|
+
visibility: visible;
|
|
26387
|
+
opacity: 0.2;
|
|
26388
|
+
transition: opacity 0.3s;
|
|
26389
|
+
}
|
|
26390
|
+
.ant-select-tree-treenode:hover .ant-select-tree .ant-select-tree-treenode-draggable .ant-select-tree-draggable-icon {
|
|
26391
|
+
opacity: 0.45;
|
|
26392
|
+
}
|
|
26324
26393
|
.ant-select-tree-indent {
|
|
26325
26394
|
align-self: stretch;
|
|
26326
26395
|
white-space: nowrap;
|
|
@@ -26333,14 +26402,7 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
|
|
|
26333
26402
|
width: 24px;
|
|
26334
26403
|
}
|
|
26335
26404
|
.ant-select-tree-draggable-icon {
|
|
26336
|
-
|
|
26337
|
-
line-height: 24px;
|
|
26338
|
-
text-align: center;
|
|
26339
|
-
opacity: 0.2;
|
|
26340
|
-
transition: opacity 0.3s;
|
|
26341
|
-
}
|
|
26342
|
-
.ant-select-tree-treenode:hover .ant-select-tree-draggable-icon {
|
|
26343
|
-
opacity: 0.45;
|
|
26405
|
+
visibility: hidden;
|
|
26344
26406
|
}
|
|
26345
26407
|
.ant-select-tree-switcher {
|
|
26346
26408
|
position: relative;
|
|
@@ -26909,6 +26971,7 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
26909
26971
|
display: inline-block;
|
|
26910
26972
|
}
|
|
26911
26973
|
.ant-upload.ant-upload-disabled {
|
|
26974
|
+
color: rgba(0, 0, 0, 0.25);
|
|
26912
26975
|
cursor: not-allowed;
|
|
26913
26976
|
}
|
|
26914
26977
|
.ant-upload.ant-upload-select-picture-card {
|