@ysgroup/ui 0.1.11 → 0.1.12

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": "@ysgroup/ui",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "type": "module",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
@@ -92,7 +92,7 @@ defineExpose({
92
92
  />
93
93
  <div class="ys-settings__password-link">
94
94
  <span>前往 Auth系统修改密码:</span>
95
- <el-button tag="a" type="primary" :href="passwordManagementUrl" target="_blank" rel="noopener noreferrer">前往</el-button>
95
+ <el-button class="ys-settings__password-button" tag="a" type="primary" :href="passwordManagementUrl" target="_blank" rel="noopener noreferrer">前往</el-button>
96
96
  </div>
97
97
  </template>
98
98
  <template v-else-if="canChangePassword">
@@ -141,4 +141,9 @@ defineExpose({
141
141
  gap: 8px;
142
142
  color: var(--ys-color-text-2);
143
143
  }
144
+ .ys-settings__password-button,
145
+ .ys-settings__password-button:hover,
146
+ .ys-settings__password-button:focus {
147
+ text-decoration: none;
148
+ }
144
149
  </style>