glass-studio-ui-pro 0.1.29 → 0.1.31
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/README.md +47 -1
- package/package.json +7 -3
package/README.md
CHANGED
|
@@ -1 +1,47 @@
|
|
|
1
|
-
|
|
1
|
+
# 💎 Glass Studio UI Pro
|
|
2
|
+
|
|
3
|
+
**Premium Liquid Glass UI Library for Vue 3**
|
|
4
|
+
|
|
5
|
+

|
|
6
|
+
|
|
7
|
+
`glass-studio-ui-pro` is a high-fidelity glassmorphism UI library designed for modern Vue 3 applications.
|
|
8
|
+
|
|
9
|
+
## 🚀 Getting Started
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm install glass-studio-ui-pro
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
### Global Setup
|
|
16
|
+
|
|
17
|
+
```typescript
|
|
18
|
+
import { createApp } from "vue";
|
|
19
|
+
import { GlassUI } from "glass-studio-ui-pro";
|
|
20
|
+
import "glass-studio-ui-pro/style.css";
|
|
21
|
+
|
|
22
|
+
const app = createApp(App);
|
|
23
|
+
app.use(GlassUI, {
|
|
24
|
+
licenseKey: 'YOUR-LICENSE-KEY'
|
|
25
|
+
});
|
|
26
|
+
app.mount("#app");
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
### SVG Filters Setup (Required)
|
|
30
|
+
|
|
31
|
+
Add `CmFilters` to your root `App.vue`:
|
|
32
|
+
|
|
33
|
+
```vue
|
|
34
|
+
<script setup>
|
|
35
|
+
import { CmFilters } from "glass-studio-ui-pro";
|
|
36
|
+
</script>
|
|
37
|
+
|
|
38
|
+
<template>
|
|
39
|
+
<div id="app">
|
|
40
|
+
<router-view />
|
|
41
|
+
<CmFilters />
|
|
42
|
+
</div>
|
|
43
|
+
</template>
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
(C) 2026 Glass Studio All Rights Reserved.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "glass-studio-ui-pro",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.31",
|
|
4
4
|
"description": "Premium Liquid Glass UI Library for Vue 3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -25,8 +25,12 @@
|
|
|
25
25
|
},
|
|
26
26
|
"typesVersions": {
|
|
27
27
|
"*": {
|
|
28
|
-
"styles": [
|
|
29
|
-
|
|
28
|
+
"styles": [
|
|
29
|
+
"./dist/styles.d.ts"
|
|
30
|
+
],
|
|
31
|
+
"style.css": [
|
|
32
|
+
"./dist/styles.d.ts"
|
|
33
|
+
]
|
|
30
34
|
}
|
|
31
35
|
},
|
|
32
36
|
"scripts": {
|