@lumx/core 4.3.2-alpha.41 → 4.3.2-alpha.43

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 CHANGED
@@ -12615,6 +12615,12 @@ table {
12615
12615
  background-color: var(--lumx-color-dark-N);
12616
12616
  border-radius: var(--lumx-border-radius);
12617
12617
  will-change: transform;
12618
+ overflow: visible;
12619
+ }
12620
+ .lumx-tooltip[popover] {
12621
+ margin: 0;
12622
+ border: none;
12623
+ color: inherit;
12618
12624
  }
12619
12625
  .lumx-tooltip--is-initializing {
12620
12626
  opacity: 0;
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "url": "https://github.com/lumapps/design-system/issues"
7
7
  },
8
8
  "dependencies": {
9
- "@lumx/icons": "^4.3.2-alpha.41",
9
+ "@lumx/icons": "^4.3.2-alpha.43",
10
10
  "classnames": "^2.3.2",
11
11
  "focus-visible": "^5.0.2",
12
12
  "lodash": "4.17.23",
@@ -66,7 +66,7 @@
66
66
  "update-version-changelog": "yarn version-changelog ../../CHANGELOG.md"
67
67
  },
68
68
  "sideEffects": false,
69
- "version": "4.3.2-alpha.41",
69
+ "version": "4.3.2-alpha.43",
70
70
  "devDependencies": {
71
71
  "@rollup/plugin-typescript": "^12.3.0",
72
72
  "@testing-library/dom": "^10.4.1",
@@ -90,5 +90,5 @@
90
90
  "vite-tsconfig-paths": "^5.1.4",
91
91
  "vitest": "^4.0.18"
92
92
  },
93
- "stableVersion": "4.3.1"
93
+ "stableVersion": "4.4.0"
94
94
  }
@@ -8,6 +8,12 @@
8
8
  .#{$lumx-base-prefix}-tooltip {
9
9
  $self: &;
10
10
 
11
+ &[popover] {
12
+ margin: 0;
13
+ border: none;
14
+ color: inherit;
15
+ }
16
+
11
17
  position: absolute;
12
18
  top: 0;
13
19
  left: 0;
@@ -16,6 +22,7 @@
16
22
  background-color: lumx-color-variant("dark", "N");
17
23
  border-radius: var(--lumx-border-radius);
18
24
  will-change: transform;
25
+ overflow: visible;
19
26
 
20
27
  &--is-initializing {
21
28
  opacity: 0;