yuang-framework-ui-pc 1.1.8 → 1.1.9

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.
@@ -11,7 +11,7 @@ function getRowClass(rowClass, param) {
11
11
  }
12
12
  }
13
13
  function getBodyRowClass(rowClass, param) {
14
- const classes = ["ele-table-tr"];
14
+ const classes = ["ele-table-tr", "ele-table-tr-" + param.row.id];
15
15
  const custom = getRowClass(rowClass, param);
16
16
  if (custom != null) {
17
17
  classes.push(custom);
@@ -13,7 +13,7 @@ function getRowClass(rowClass, param) {
13
13
  }
14
14
  }
15
15
  function getBodyRowClass(rowClass, param) {
16
- const classes = ["ele-table-tr"];
16
+ const classes = ["ele-table-tr", "ele-table-tr-" + param.row.id];
17
17
  const custom = getRowClass(rowClass, param);
18
18
  if (custom != null) {
19
19
  classes.push(custom);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yuang-framework-ui-pc",
3
- "version": "1.1.8",
3
+ "version": "1.1.9",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "dev": "vite --host --config vite.global.ts --mode dev",