wave-ui 3.25.0 → 3.25.2

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": "wave-ui",
3
- "version": "3.25.0",
3
+ "version": "3.25.2",
4
4
  "description": "A UI framework for Vue.js 3 (and 2) with only the bright side. :sunny:",
5
5
  "author": "Antoni Andre <antoniandre.web@gmail.com>",
6
6
  "homepage": "https://antoniandre.github.io/wave-ui",
@@ -49,16 +49,16 @@
49
49
  "ui"
50
50
  ],
51
51
  "devDependencies": {
52
- "@babel/core": "^7.27.4",
52
+ "@babel/core": "^7.28.0",
53
53
  "@biomejs/biome": "^1.9.4",
54
- "@faker-js/faker": "^9.8.0",
54
+ "@faker-js/faker": "^9.9.0",
55
55
  "@mdi/font": "^7.4.47",
56
56
  "@tsconfig/recommended": "^1.0.10",
57
57
  "@vitejs/plugin-vue": "^5.2.4",
58
58
  "autoprefixer": "^10.4.21",
59
59
  "axios": "^1.10.0",
60
60
  "font-awesome": "^4.7.0",
61
- "globals": "^16.2.0",
61
+ "globals": "^16.3.0",
62
62
  "gsap": "^3.13.0",
63
63
  "ionicons": "^4.6.3",
64
64
  "material-design-icons": "^3.0.1",
@@ -59,10 +59,10 @@
59
59
  .ovv {overflow: visible;}
60
60
  .ova {overflow: auto;}
61
61
 
62
- .por {position: relative;}
63
- .poa {position: absolute;}
64
- .pof {position: fixed;}
65
- .pos {position: sticky;}
62
+ .relative {position: relative;}
63
+ .absolute {position: absolute;}
64
+ .fixed {position: fixed;}
65
+ .sticky {position: sticky;}
66
66
 
67
67
  .op05 {opacity: 0.05;}
68
68
  @for $i from 0 through 9 {
@@ -39,7 +39,7 @@ $disabled-color: var(--w-disabled-color);
39
39
 
40
40
  // GLOBAL DEFAULTS.
41
41
  // ========================================================
42
- $css-scope: 'html .w-app' !default; // Allows control on CSS rules priority.
42
+ $css-scope: '.w-app' !default; // Allows control on CSS rules priority.
43
43
  // True by default. False allows you to use an external CSS library (like Tailwind).
44
44
  $use-layout-classes: true !default;
45
45
 
@@ -156,10 +156,10 @@ const genBreakpointLayoutClasses = breakpoints => {
156
156
  'd-iflex{display:inline-flex}',
157
157
  'd-block{display:block}',
158
158
  'd-iblock{display:inline-block}',
159
- 'por{position:relative}',
160
- 'poa{position:absolute}',
161
- 'pof{position:fixed}',
162
- 'pos{position:sticky}',
159
+ 'relative{position:relative}',
160
+ 'absolute{position:absolute}',
161
+ 'fixed{position:fixed}',
162
+ 'sticky{position:sticky}',
163
163
  'text-left{text-align:left}',
164
164
  'text-center{text-align:center}',
165
165
  'text-right{text-align:right}',