@lumx/core 4.5.2-alpha.0 → 4.5.2-alpha.1
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/lumx.css +6 -8
- package/package.json +2 -2
- package/scss/components/list/_mixins.scss +3 -2
package/lumx.css
CHANGED
|
@@ -8712,12 +8712,11 @@ table {
|
|
|
8712
8712
|
/* Item link
|
|
8713
8713
|
========================================================================== */
|
|
8714
8714
|
.lumx-list-item__link {
|
|
8715
|
+
all: unset;
|
|
8716
|
+
box-sizing: border-box;
|
|
8715
8717
|
color: var(--lumx-color-dark-N);
|
|
8716
8718
|
background-color: transparent;
|
|
8717
|
-
|
|
8718
|
-
-moz-appearance: none;
|
|
8719
|
-
appearance: none;
|
|
8720
|
-
border: none;
|
|
8719
|
+
width: 100%;
|
|
8721
8720
|
cursor: pointer;
|
|
8722
8721
|
}
|
|
8723
8722
|
.lumx-list-item__link[data-focus-visible-added] {
|
|
@@ -10411,12 +10410,11 @@ table {
|
|
|
10411
10410
|
/* Item link states
|
|
10412
10411
|
========================================================================== */
|
|
10413
10412
|
.lumx-side-navigation-item__link {
|
|
10413
|
+
all: unset;
|
|
10414
|
+
box-sizing: border-box;
|
|
10414
10415
|
color: var(--lumx-color-dark-N);
|
|
10415
10416
|
background-color: transparent;
|
|
10416
|
-
|
|
10417
|
-
-moz-appearance: none;
|
|
10418
|
-
appearance: none;
|
|
10419
|
-
border: none;
|
|
10417
|
+
width: 100%;
|
|
10420
10418
|
cursor: pointer;
|
|
10421
10419
|
}
|
|
10422
10420
|
.lumx-side-navigation-item__link[data-focus-visible-added] {
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@floating-ui/dom": "^1.7.5",
|
|
10
|
-
"@lumx/icons": "^4.5.2-alpha.
|
|
10
|
+
"@lumx/icons": "^4.5.2-alpha.1",
|
|
11
11
|
"classnames": "^2.3.2",
|
|
12
12
|
"focus-visible": "^5.0.2",
|
|
13
13
|
"lodash": "4.17.23",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"update-version-changelog": "yarn version-changelog ../../CHANGELOG.md"
|
|
68
68
|
},
|
|
69
69
|
"sideEffects": false,
|
|
70
|
-
"version": "4.5.2-alpha.
|
|
70
|
+
"version": "4.5.2-alpha.1",
|
|
71
71
|
"devDependencies": {
|
|
72
72
|
"@rollup/plugin-typescript": "^12.3.0",
|
|
73
73
|
"@testing-library/dom": "^10.4.1",
|
|
@@ -25,10 +25,11 @@
|
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
@mixin lumx-list-item-clickable() {
|
|
28
|
+
all: unset;
|
|
29
|
+
box-sizing: border-box;
|
|
28
30
|
@include lumx-state(lumx-base-const("state", "DEFAULT"), lumx-base-const("emphasis", "LOW"), "dark");
|
|
29
31
|
|
|
30
|
-
|
|
31
|
-
border: none;
|
|
32
|
+
width: 100%;
|
|
32
33
|
cursor: pointer;
|
|
33
34
|
|
|
34
35
|
&[data-focus-visible-added] {
|