@descope/web-components-ui 1.0.132 → 1.0.133
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/cjs/index.cjs.js +5 -8
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.esm.js +5 -8
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/descope-link-index-js.js +1 -1
- package/package.json +1 -1
- package/src/components/descope-link/LinkClass.js +5 -4
- package/src/theme/components/link.js +0 -4
package/dist/cjs/index.cjs.js
CHANGED
@@ -3226,6 +3226,10 @@ class RawLink extends createBaseClass({ componentName: componentName$b, baseSele
|
|
3226
3226
|
}
|
3227
3227
|
:host a {
|
3228
3228
|
display: inline;
|
3229
|
+
text-decoration: none;
|
3230
|
+
}
|
3231
|
+
:host a:hover {
|
3232
|
+
text-decoration: underline;
|
3229
3233
|
}
|
3230
3234
|
</style>
|
3231
3235
|
<div>
|
@@ -3269,10 +3273,7 @@ const LinkClass = compose(
|
|
3269
3273
|
{ ...text$1, property: TextClass.cssVarList.textColor }
|
3270
3274
|
],
|
3271
3275
|
cursor: anchor,
|
3272
|
-
|
3273
|
-
textUnderlineStyle: { ...anchor, property: 'border-bottom-style' },
|
3274
|
-
textUnderlineColor: { ...anchor, property: 'border-bottom-color' }
|
3275
|
-
},
|
3276
|
+
}
|
3276
3277
|
}),
|
3277
3278
|
draggableMixin,
|
3278
3279
|
componentNameValidationMixin
|
@@ -3303,10 +3304,6 @@ const link = {
|
|
3303
3304
|
[vars$9.hostWidth]: '100%'
|
3304
3305
|
},
|
3305
3306
|
|
3306
|
-
_hover: {
|
3307
|
-
[vars$9.textUnderlineColor]: 'currentColor'
|
3308
|
-
},
|
3309
|
-
|
3310
3307
|
mode: {
|
3311
3308
|
primary: {
|
3312
3309
|
[vars$9.textColor]: globalRefs$4.colors.primary.main,
|