ls-pro-common 1.0.32 → 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 +9 -0
- package/dist/common.js +1 -1
- package/dist/common.min.css +9 -0
- package/dist/common.min.js +1 -1
- package/es/components/IconSelector.js +8 -1
- package/es/components/InputMultiLine.d.ts +41 -0
- package/es/components/InputMultiLine.js +142 -0
- package/es/components/InputTable.d.ts +50 -2
- package/es/components/InputTable.js +12 -8
- package/es/hooks/useDtl/index.js +17 -8
- package/es/hooks/useSingle/index.js +17 -8
- package/es/http/index.js +2 -5
- package/es/index.d.ts +2 -1
- package/es/index.js +2 -1
- package/lib/components/IconSelector.js +8 -1
- package/lib/components/InputMultiLine.d.ts +41 -0
- package/lib/components/InputMultiLine.js +165 -0
- package/lib/components/InputTable.d.ts +50 -2
- package/lib/components/InputTable.js +10 -4
- package/lib/hooks/useDtl/index.js +17 -8
- package/lib/hooks/useSingle/index.js +17 -8
- package/lib/http/index.js +2 -5
- package/lib/index.d.ts +2 -1
- package/lib/index.js +8 -0
- package/package.json +3 -3
package/dist/common.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;
|
|
@@ -175,6 +178,9 @@
|
|
|
175
178
|
}
|
|
176
179
|
}
|
|
177
180
|
|
|
181
|
+
.ant-input.ant-input-disabled {
|
|
182
|
+
cursor: default;
|
|
183
|
+
}
|
|
178
184
|
.ant-form > div:not(.ant-pro-form-light-filter) .pro-field {
|
|
179
185
|
max-width: 100%;
|
|
180
186
|
}
|
|
@@ -1970,6 +1976,9 @@ html {
|
|
|
1970
1976
|
.ant-pro-table-srcoll .ant-table.ant-table-small tfoot > tr > th,
|
|
1971
1977
|
.ant-pro-table-srcoll .ant-table.ant-table-small tfoot > tr > td {
|
|
1972
1978
|
padding: 10px 5px;
|
|
1979
|
+
white-space: nowrap;
|
|
1980
|
+
text-overflow: ellipsis;
|
|
1981
|
+
overflow: hidden;
|
|
1973
1982
|
}
|
|
1974
1983
|
.ant-pro-table-srcoll .ant-table-placeholder td {
|
|
1975
1984
|
border-bottom: none;
|