@smurfox/proxy-ui 0.3.1 → 0.3.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/README.md +3 -3
- package/dist/module.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -23,14 +23,14 @@ A component library built for **Nuxt 4**, designed with a clean and consistent A
|
|
|
23
23
|
## Installation
|
|
24
24
|
|
|
25
25
|
```bash
|
|
26
|
-
npm install proxy-ui
|
|
26
|
+
npm install @smurfox/proxy-ui
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
Add the module to your `nuxt.config.ts`:
|
|
30
30
|
|
|
31
31
|
```ts
|
|
32
32
|
export default defineNuxtConfig({
|
|
33
|
-
modules: ["proxy-ui"],
|
|
33
|
+
modules: ["@smurfox/proxy-ui"],
|
|
34
34
|
});
|
|
35
35
|
```
|
|
36
36
|
|
|
@@ -782,7 +782,7 @@ import type {
|
|
|
782
782
|
TableItem,
|
|
783
783
|
TableRounded,
|
|
784
784
|
TableItemsSize,
|
|
785
|
-
} from "proxy-ui";
|
|
785
|
+
} from "@smurfox/proxy-ui";
|
|
786
786
|
```
|
|
787
787
|
|
|
788
788
|
> `PUTextArea`, `PUSelect`, and `PUDropdown` define their props inline and do not export dedicated `Props` types. They reuse `InputVariant` and `InputRounded` from the same package.
|
package/dist/module.json
CHANGED