@odx/ui 3.4.2 → 3.4.4
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @odx/ui
|
|
2
2
|
|
|
3
|
+
## 3.4.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9f98096: fix: additional class for "expand" icon expanded state
|
|
8
|
+
|
|
9
|
+
## 3.4.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- a0b9ae3: Use browser native text decoration for links
|
|
14
|
+
|
|
3
15
|
## 3.4.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/core-theme.css
CHANGED
|
@@ -3838,7 +3838,7 @@ html body .odx-fs-italic {
|
|
|
3838
3838
|
.odx-expandable-list-item:first-child > .odx-expandable-list-item__header .odx-list-item {
|
|
3839
3839
|
--separator-color: transparent;
|
|
3840
3840
|
}
|
|
3841
|
-
.odx-expandable-list-
|
|
3841
|
+
.odx-expandable-list-item__icon--expanded {
|
|
3842
3842
|
transform: scaleY(-1);
|
|
3843
3843
|
}
|
|
3844
3844
|
|
|
@@ -4334,41 +4334,20 @@ html body .odx-fs-italic {
|
|
|
4334
4334
|
outline-color: transparent;
|
|
4335
4335
|
pointer-events: none;
|
|
4336
4336
|
}
|
|
4337
|
-
.odx-link::before {
|
|
4338
|
-
transition-delay: 0ms;
|
|
4339
|
-
transition-duration: var(--odx-v-transition-duration);
|
|
4340
|
-
transition-property: width;
|
|
4341
|
-
transition-timing-function: var(--odx-v-transition-easing-fn);
|
|
4342
|
-
background-color: currentcolor;
|
|
4343
|
-
bottom: 1px;
|
|
4344
|
-
content: "";
|
|
4345
|
-
height: 1px;
|
|
4346
|
-
left: 50%;
|
|
4347
|
-
position: absolute;
|
|
4348
|
-
transform: translateX(-50%);
|
|
4349
|
-
width: 0;
|
|
4350
|
-
}
|
|
4351
4337
|
@media (hover: hover){
|
|
4352
4338
|
.odx-link:hover {
|
|
4353
4339
|
color: var(--odx-c-link-hover);
|
|
4354
|
-
|
|
4355
|
-
}
|
|
4356
|
-
@media (hover: hover){
|
|
4357
|
-
.odx-link:hover::before {
|
|
4358
|
-
width: 98%;
|
|
4340
|
+
text-decoration: underline;
|
|
4359
4341
|
}
|
|
4360
4342
|
}
|
|
4361
4343
|
.odx-link:active {
|
|
4362
4344
|
color: var(--odx-c-link-active);
|
|
4363
4345
|
}
|
|
4364
4346
|
.odx-link.is-disabled {
|
|
4365
|
-
color: var(--odx-c-link-disabled)
|
|
4347
|
+
color: var(--odx-c-link-disabled);
|
|
4366
4348
|
pointer-events: none;
|
|
4367
4349
|
text-decoration: none;
|
|
4368
4350
|
}
|
|
4369
|
-
.odx-link.is-disabled::before {
|
|
4370
|
-
content: none;
|
|
4371
|
-
}
|
|
4372
4351
|
|
|
4373
4352
|
.odx-list {
|
|
4374
4353
|
display: block;
|
package/package.json
CHANGED
|
@@ -11,25 +11,9 @@
|
|
|
11
11
|
position: relative;
|
|
12
12
|
user-select: auto;
|
|
13
13
|
|
|
14
|
-
&::before {
|
|
15
|
-
@include motion.transition(width);
|
|
16
|
-
|
|
17
|
-
background-color: currentcolor;
|
|
18
|
-
bottom: 1px;
|
|
19
|
-
content: '';
|
|
20
|
-
height: 1px;
|
|
21
|
-
left: 50%;
|
|
22
|
-
position: absolute;
|
|
23
|
-
transform: translateX(-50%);
|
|
24
|
-
width: 0;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
14
|
&:hover {
|
|
28
15
|
color: var(--odx-c-link-hover);
|
|
29
|
-
|
|
30
|
-
&::before {
|
|
31
|
-
width: 98%;
|
|
32
|
-
}
|
|
16
|
+
text-decoration: underline;
|
|
33
17
|
}
|
|
34
18
|
|
|
35
19
|
&:active {
|
|
@@ -37,12 +21,8 @@
|
|
|
37
21
|
}
|
|
38
22
|
|
|
39
23
|
&.is-disabled {
|
|
40
|
-
color: var(--odx-c-link-disabled)
|
|
24
|
+
color: var(--odx-c-link-disabled);
|
|
41
25
|
pointer-events: none;
|
|
42
26
|
text-decoration: none;
|
|
43
|
-
|
|
44
|
-
&::before {
|
|
45
|
-
content: none;
|
|
46
|
-
}
|
|
47
27
|
}
|
|
48
28
|
}
|