@yibozhang/pro-table 16.0.2 → 16.0.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yibozhang/pro-table",
3
- "version": "16.0.2",
3
+ "version": "16.0.3",
4
4
  "description": "基于 Angular11 和 ng-zorro-antd 的高级表格组件库",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -276,19 +276,10 @@
276
276
  }
277
277
 
278
278
  /* 使用 CSS 变量,避免 JS 动态修改样式 */
279
- [class*="ant-form-custom"] .ant-form-item-label:not([custom-width]) {
279
+ [class*="ant-form-custom"] .ant-form-item-label {
280
280
  width: var(--label-width, 120px) !important;
281
281
  }
282
282
 
283
- [class*="ant-form-custom"] .ant-form-item-label:not([custom-align]) {
283
+ [class*="ant-form-custom"] .ant-form-item-label{
284
284
  text-align: var(--label-align, right) !important;
285
285
  }
286
-
287
- /* 支持自定义属性覆盖 */
288
- [class*="ant-form-custom"] .ant-form-item-label[custom-width] {
289
- width: attr(custom-width) !important;
290
- }
291
-
292
- [class*="ant-form-custom"] .ant-form-item-label[custom-align] {
293
- text-align: attr(custom-align) !important;
294
- }