winduum 2.0.0-next.21 → 2.0.0-next.22

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.21",
3
+ "version": "2.0.0-next.22",
4
4
  "type": "module",
5
5
  "types": "types/index.d.ts",
6
6
  "main": "plugin/index.cjs",
@@ -1,8 +1,8 @@
1
- .x-button:has(.spinner) {
1
+ .x-button:has(.spinner-absolute) {
2
2
  pointer-events: none;
3
3
  color: transparent;
4
4
 
5
- .spinner {
5
+ .spinner-absolute {
6
6
  color: var(--x-button-color);
7
7
  position: absolute;
8
8
  }
@@ -41,13 +41,13 @@
41
41
  }
42
42
  }
43
43
 
44
- > :where(.x-button) {
44
+ > .x-button {
45
45
  inset-inline-start: var(--x-compare-position);
46
46
  margin-inline-start: calc(var(--x-button-inline-size) / 2 * -1);
47
47
  margin-block: auto;
48
48
  }
49
49
 
50
- > :where(.x-image) {
50
+ > .x-image {
51
51
  display: grid;
52
52
  z-index: 0;
53
53
 
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * Shows a ripple effect.
3
- * @param {MouseEvent} event - The dialog element to dismiss.
4
- * @param {HTMLElement} element - The options for closing the dialog.
3
+ * @param {MouseEvent} event
4
+ * @param {HTMLElement} element
5
5
  * @returns void
6
6
  */
7
7
  export const showRipple = ({ currentTarget, offsetX, offsetY }, element = currentTarget.querySelector('.ripple')) => {