orio-ui 1.0.4 → 1.0.5

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/dist/module.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.0.0 || ^4.0.0"
6
6
  },
7
- "version": "1.0.4",
7
+ "version": "1.0.5",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "0.8.4",
10
10
  "unbuild": "2.0.0"
@@ -1,25 +1,3 @@
1
- .gradient-hover {
2
- --gh-color: #fff;
3
- --gh-angle: 150deg;
4
- --gh-peek-x: 95%;
5
- --gh-mix-base: black;
6
- background-image: linear-gradient(var(--gh-angle), color-mix(in srgb, var(--gh-color) 90%, var(--gh-mix-base)) 10%, var(--gh-color) 50%, color-mix(in srgb, var(--gh-color) 80%, var(--gh-mix-base)) 80%);
7
- background-repeat: no-repeat;
8
- background-size: 0% 0%;
9
- background-position: 0% 0%;
10
- transition: background-position 0.8s ease, border-color 0.2s ease;
11
- will-change: background-size, background-position;
12
- }
13
-
14
- .gradient-hover:hover {
15
- background-size: 200% 100%;
16
- background-position: var(--gh-peek-x) 0;
17
- }
18
-
19
- /* Dark mode: now theme-aware */
20
- :root[data-mode=dark] .gradient-hover {
21
- --gh-color: var(
1
+ .gradient-hover{--gh-color:#fff;--gh-angle:150deg;--gh-peek-x:95%;--gh-mix-base:#000;background-image:linear-gradient(var(--gh-angle),color-mix(in srgb,var(--gh-color) 90%,var(--gh-mix-base)) 10%,var(--gh-color) 50%,color-mix(in srgb,var(--gh-color) 80%,var(--gh-mix-base)) 80%);background-position:0 0;background-repeat:no-repeat;background-size:0 0;transition:background-position .8s ease,border-color .2s ease;will-change:background-size,background-position}.gradient-hover:hover{background-position:var(--gh-peek-x) 0;background-size:200% 100%}:root[data-mode=dark] .gradient-hover{--gh-color:var(
22
2
  --color-accent
23
- ); /* switch from static white to theme accent */
24
- --gh-mix-base: var(--color-bg); /* blend into dark background */
25
- }
3
+ );--gh-mix-base:var(--color-bg)}
@@ -1 +1 @@
1
- @import "./colors.css";@import "./variables.css";@import "./animation.css";@import "./scroll.css";@import "./cool-gradient-hover.scss";*,:after,:before{box-sizing:border-box}
1
+ @import "./colors.css";@import "./variables.css";@import "./animation.css";@import "./scroll.css";@import "./cool-gradient-hover.css";*,:after,:before{box-sizing:border-box}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orio-ui",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Modern Nuxt component library with theme support",
5
5
  "type": "module",
6
6
  "main": "./dist/module.mjs",