dga-ui-react 1.8.20 → 1.8.22
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/dist/cjs/index.js +6 -7
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +6 -7
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
padding: ${e=>e.flush?"0":`${e.$customStyle.padding}px`};
|
|
6
6
|
font-size: ${e=>e.$customStyle.fontSize}px;
|
|
7
7
|
color: ${e=>e.$customStyle.fontColor};
|
|
8
|
-
background-color: #fff;
|
|
9
8
|
border: ${e=>e.$customStyle.border};
|
|
10
9
|
${e=>e.$customStyle.borderTop?"border-top:"+e.$customStyle.borderTop:""};
|
|
11
10
|
cursor: ${e=>e.$customStyle.cursor};
|
|
@@ -2454,11 +2453,11 @@
|
|
|
2454
2453
|
.dgaui_radioDot {
|
|
2455
2454
|
border-radius: 50px;
|
|
2456
2455
|
position: absolute;
|
|
2457
|
-
top:
|
|
2458
|
-
left:
|
|
2456
|
+
top: 4px;
|
|
2457
|
+
left: 4px;
|
|
2459
2458
|
z-index: 1;
|
|
2460
|
-
width:
|
|
2461
|
-
height:
|
|
2459
|
+
width: 14px;
|
|
2460
|
+
height: 14px;
|
|
2462
2461
|
background-color: none;
|
|
2463
2462
|
}
|
|
2464
2463
|
|
|
@@ -4455,14 +4454,14 @@
|
|
|
4455
4454
|
direction: ${e=>e.$theme.direction};
|
|
4456
4455
|
overflow: scroll;
|
|
4457
4456
|
${e=>e.$border?`border-inline-end: 1px solid ${e.$theme.palette.neutral[300]};`:""}
|
|
4458
|
-
width:
|
|
4457
|
+
width: ${e=>{var t;return(null===(t=e.$rect)||void 0===t?void 0:t.width)||350}}px;
|
|
4459
4458
|
height: 100vh;
|
|
4460
4459
|
background-color: ${e=>"white"===e.$backgroundColor?Br:e.$theme.palette.neutral[100]};
|
|
4461
4460
|
display: ${e=>e.$rect?"block":"none"};
|
|
4462
4461
|
position: fixed;
|
|
4463
4462
|
z-index: 1400;
|
|
4464
4463
|
top: 0;
|
|
4465
|
-
left: ${e=>{var t;const r=(null===(t=e.$rect)||void 0===t?void 0:t.width)||
|
|
4464
|
+
left: ${e=>{var t;const r=(null===(t=e.$rect)||void 0===t?void 0:t.width)||4e3;return e.$open?"rtl"===e.$theme.direction?window.innerWidth-r:0:"rtl"===e.$theme.direction?window.innerWidth+r:-r}}px;
|
|
4466
4465
|
|
|
4467
4466
|
transition: left 0.2s ease;
|
|
4468
4467
|
|