ls-pro-common 1.0.34 → 1.0.35
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/common.css +6 -0
- package/dist/common.js +1 -1
- package/dist/common.min.css +6 -0
- package/dist/common.min.js +1 -1
- package/es/components/InputMultiLine.d.ts +41 -0
- package/es/components/InputMultiLine.js +142 -0
- package/es/index.d.ts +2 -1
- package/es/index.js +2 -1
- package/lib/components/InputMultiLine.d.ts +41 -0
- package/lib/components/InputMultiLine.js +165 -0
- package/lib/index.d.ts +2 -1
- package/lib/index.js +8 -0
- package/package.json +2 -2
package/dist/common.min.css
CHANGED
|
@@ -153,6 +153,9 @@
|
|
|
153
153
|
.ant-pro-table-srcoll .ant-table.ant-table-small tfoot > tr > th,
|
|
154
154
|
.ant-pro-table-srcoll .ant-table.ant-table-small tfoot > tr > td {
|
|
155
155
|
padding: 10px 5px;
|
|
156
|
+
white-space: nowrap;
|
|
157
|
+
text-overflow: ellipsis;
|
|
158
|
+
overflow: hidden;
|
|
156
159
|
}
|
|
157
160
|
.ant-pro-table-srcoll .ant-table-placeholder td {
|
|
158
161
|
border-bottom: none;
|
|
@@ -1973,6 +1976,9 @@ html {
|
|
|
1973
1976
|
.ant-pro-table-srcoll .ant-table.ant-table-small tfoot > tr > th,
|
|
1974
1977
|
.ant-pro-table-srcoll .ant-table.ant-table-small tfoot > tr > td {
|
|
1975
1978
|
padding: 10px 5px;
|
|
1979
|
+
white-space: nowrap;
|
|
1980
|
+
text-overflow: ellipsis;
|
|
1981
|
+
overflow: hidden;
|
|
1976
1982
|
}
|
|
1977
1983
|
.ant-pro-table-srcoll .ant-table-placeholder td {
|
|
1978
1984
|
border-bottom: none;
|