@aloudata/aloudata-design 1.6.0 → 1.6.2
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/Button/index.js +3 -3
- package/dist/Button/style/index.less +2 -318
- package/dist/Button/style/size.less +80 -0
- package/dist/Button/style/type.less +235 -0
- package/dist/DataPreviewTable/components/Body/SkeletonBody.js +2 -2
- package/dist/DataPreviewTable/components/Body/index.js +1 -1
- package/dist/DataPreviewTable/components/Header/index.d.ts +2 -2
- package/dist/DataPreviewTable/components/Header/index.js +11 -19
- package/dist/DataPreviewTable/hooks/useDirection.d.ts +4 -21
- package/dist/DataPreviewTable/hooks/useDirection.js +106 -146
- package/dist/DataPreviewTable/index.js +10 -16
- package/dist/DataPreviewTable/interface.d.ts +18 -0
- package/dist/DataPreviewTable/interface.js +13 -1
- package/dist/DataPreviewTable/utils/getColumnOffsetsFromWidths.d.ts +1 -0
- package/dist/DataPreviewTable/utils/getColumnOffsetsFromWidths.js +8 -0
- package/dist/DataPreviewTable/utils/getColumnRange.d.ts +8 -0
- package/dist/DataPreviewTable/utils/getColumnRange.js +25 -0
- package/dist/DataPreviewTable/utils/getRowRange.d.ts +7 -0
- package/dist/DataPreviewTable/utils/getRowRange.js +28 -0
- package/dist/DataPreviewTable/utils/getTableLayout.d.ts +3 -0
- package/dist/DataPreviewTable/utils/getTableLayout.js +18 -0
- package/dist/InputNumber/style/index.less +3 -3
- package/dist/Modal/style/index.less +2 -1
- package/dist/Radio/style/index.less +7 -7
- package/dist/Select/style/index.less +1 -0
- package/dist/Tooltip/style/index.less +8 -6
- package/package.json +1 -1
|
@@ -112,9 +112,9 @@
|
|
|
112
112
|
cursor: default;
|
|
113
113
|
opacity: 0.5;
|
|
114
114
|
|
|
115
|
-
.ald-radio-desc {
|
|
116
|
-
|
|
117
|
-
}
|
|
115
|
+
// .ald-radio-desc {
|
|
116
|
+
// color: @NL60;
|
|
117
|
+
// }
|
|
118
118
|
}
|
|
119
119
|
|
|
120
120
|
.ald-radio-button-wrapper-border-primary,
|
|
@@ -192,7 +192,7 @@
|
|
|
192
192
|
// 按钮样式禁用的文字颜色
|
|
193
193
|
.ald-radio-wrapper-disabled {
|
|
194
194
|
.ald-radio-desc {
|
|
195
|
-
color: @
|
|
195
|
+
color: @NL0;
|
|
196
196
|
}
|
|
197
197
|
}
|
|
198
198
|
|
|
@@ -264,7 +264,7 @@
|
|
|
264
264
|
|
|
265
265
|
.ald-radio-desc {
|
|
266
266
|
position: relative;
|
|
267
|
-
color: @
|
|
267
|
+
color: @NL0;
|
|
268
268
|
transition: text-shadow 0.3s ease, color 0.3s ease;
|
|
269
269
|
}
|
|
270
270
|
}
|
|
@@ -310,7 +310,7 @@
|
|
|
310
310
|
}
|
|
311
311
|
|
|
312
312
|
.ald-radio-desc {
|
|
313
|
-
font-weight:
|
|
313
|
+
font-weight: 400;
|
|
314
314
|
}
|
|
315
315
|
}
|
|
316
316
|
|
|
@@ -325,7 +325,7 @@
|
|
|
325
325
|
|
|
326
326
|
.ald-radio-desc {
|
|
327
327
|
position: relative;
|
|
328
|
-
font-weight:
|
|
328
|
+
font-weight: 400;
|
|
329
329
|
z-index: 2;
|
|
330
330
|
color: @NL0;
|
|
331
331
|
}
|
|
@@ -2,17 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
.ald-tooltip-overlay.ald-tooltip-overlay {
|
|
4
4
|
.ant-tooltip-inner {
|
|
5
|
-
padding: 6px
|
|
6
|
-
line-height:
|
|
5
|
+
padding: 6px 8px;
|
|
6
|
+
line-height: 16px;
|
|
7
7
|
background: @BG10;
|
|
8
|
-
border-radius:
|
|
8
|
+
border-radius: 2px;
|
|
9
9
|
box-shadow: none;
|
|
10
|
-
color
|
|
11
|
-
font-
|
|
10
|
+
color: @ND0;
|
|
11
|
+
font-weight: 400;
|
|
12
|
+
font-size: 12px;
|
|
13
|
+
min-height: 28px;
|
|
12
14
|
}
|
|
13
15
|
|
|
14
16
|
.ant-tooltip-arrow {
|
|
15
|
-
&::before{
|
|
17
|
+
&::before {
|
|
16
18
|
background-color: @BG10;
|
|
17
19
|
}
|
|
18
20
|
}
|