winduum 2.0.0-next.8 → 2.0.0-next.9

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": "winduum",
3
- "version": "2.0.0-next.8",
3
+ "version": "2.0.0-next.9",
4
4
  "type": "module",
5
5
  "types": "types/index.d.ts",
6
6
  "main": "plugin/index.cjs",
@@ -29,7 +29,7 @@
29
29
  --x-button-outline-color-opacity: var(--x-button-focus-outline-color-opacity);
30
30
  }
31
31
 
32
- &:active, &:checked, &[data-active] {
32
+ &:active, &:checked, &.active {
33
33
  --x-button-background-color: var(--x-button-hover-background-color, var(--color-accent));
34
34
  --x-button-background-color-mix: var(--x-button-active-background-color-mix);
35
35
  --x-button-background-color-opacity: var(--x-button-active-background-color-opacity);
@@ -1 +1 @@
1
- @import "default.css";
1
+ @import "list.css";
@@ -0,0 +1,8 @@
1
+ .x-tabs-list {
2
+ background-color: var(--x-tabs-list-background-color, var(--color-body-secondary));
3
+ gap: var(--x-tabs-list-gap, var(--spacing-xs));
4
+ padding: var(--x-tabs-list-padding, var(--spacing-xs));
5
+ border-radius: var(--x-tabs-list-border-radius, var(--radius));
6
+ display: flex;
7
+ inline-size: max-content;
8
+ }
@@ -14,7 +14,7 @@ Include CSS either globally or to your component _([you can't use TailwindCSS la
14
14
  or modular (you can use your own props or CSS)
15
15
 
16
16
  ```css
17
- @import "winduum/src/components/tabs/default.css" layer(components);
17
+ @import "winduum/src/components/tabs/list.css" layer(components);
18
18
  ```
19
19
 
20
20
 
@@ -1,8 +0,0 @@
1
- .x-tabs {
2
- background-color: var(--x-tabs-background-color, var(--color-body-secondary));
3
- gap: var(--x-tabs-gap, var(--spacing-xs));
4
- padding: var(--x-tabs-padding, var(--spacing-xs));
5
- border-radius: var(--x-tabs-border-radius, var(--radius));
6
- display: flex;
7
- inline-size: max-content;
8
- }