@enableai-base/table 1.0.0
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/table.cjs.js +4465 -0
- package/dist/table.cjs.prod.js +4465 -0
- package/dist/table.css +73 -0
- package/dist/table.d.ts +1275 -0
- package/dist/table.esm-bundler.mjs +4292 -0
- package/index.js +7 -0
- package/index.node.js +1 -0
- package/package.json +58 -0
package/dist/table.css
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
/* 隐藏 DatePicker 的输入框容器 */
|
|
2
|
+
.hidden-input-datepicker .ant-picker-input {
|
|
3
|
+
display: none !important;
|
|
4
|
+
visibility: hidden !important;
|
|
5
|
+
}
|
|
6
|
+
/* 可选:去掉输入框的边框/背景(彻底隐形) */
|
|
7
|
+
.hidden-input-datepicker .ant-picker {
|
|
8
|
+
border: none !important;
|
|
9
|
+
background: transparent !important;
|
|
10
|
+
box-shadow: none !important;
|
|
11
|
+
padding: 0 !important;
|
|
12
|
+
}
|
|
13
|
+
/* 确保日历面板正常显示(防止被遮挡) */
|
|
14
|
+
.hidden-input-datepicker .ant-picker-panel-container {
|
|
15
|
+
z-index: 9999 !important;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
/* 可选:隐藏 DatePicker 根组件的边框(如果需要) */
|
|
19
|
+
.hidden-input-datepicker {
|
|
20
|
+
border: none !important;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
/* your-styles.css */
|
|
24
|
+
/* 隐藏输入框文字和光标 */
|
|
25
|
+
.datepicker-empty-input .ant-input-number {
|
|
26
|
+
color: transparent !important;
|
|
27
|
+
caret-color: transparent !important; /* 隐藏聚焦时的光标 */
|
|
28
|
+
border: none !important; /* 可选:隐藏边框 */
|
|
29
|
+
background: transparent !important; /* 可选:透明背景 */
|
|
30
|
+
opacity: 0 !important;
|
|
31
|
+
overflow: hidden !important;
|
|
32
|
+
}
|
|
33
|
+
.ant-picker {
|
|
34
|
+
border-radius: 0 !important;
|
|
35
|
+
padding: 0 8.5px !important;
|
|
36
|
+
}
|
|
37
|
+
.ant-picker-suffix {
|
|
38
|
+
display: none !important;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.num-editor-input .ant-input-number-input {
|
|
42
|
+
text-align: right;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.user-editor-popup {
|
|
46
|
+
border-radius: 4px;
|
|
47
|
+
overflow: hidden;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.user-editor .ant-input {
|
|
51
|
+
border-radius: 2px;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.vtable__menu-element {
|
|
55
|
+
opacity: 0 !important;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/* 整个滚动条 */
|
|
59
|
+
::-webkit-scrollbar {
|
|
60
|
+
width: 4px; /* 纵向滚动条宽度 */
|
|
61
|
+
height: 4px; /* 横向滚动条高度 */
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
/* 滚动条滑块 */
|
|
65
|
+
::-webkit-scrollbar-thumb {
|
|
66
|
+
background-color: rgba(0, 0, 0, 0.3);
|
|
67
|
+
border-radius: 2px;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
/* 滚动条轨道 */
|
|
71
|
+
::-webkit-scrollbar-track {
|
|
72
|
+
background-color: transparent;
|
|
73
|
+
}
|