Skip to content

Commit 9199b74

Browse files
committed
chore: update package versions to 0.0.4 and fix import statements across components
1 parent 9e5d15f commit 9199b74

22 files changed

+53
-53
lines changed

packages/components/button/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ An accessible, customizable button component for Vue applications, built as a we
55
## Installation
66

77
```bash
8-
npm install @devbyrayray/vue-wc-button
9-
pnpm add @devbyrayray/vue-wc-button
10-
yarn add @devbyrayray/vue-wc-button
8+
npm install @devbyray/vue-wc-button
9+
pnpm add @devbyray/vue-wc-button
10+
yarn add @devbyray/vue-wc-button
1111
```
1212

1313
## Usage
1414

1515
```html
1616
<!-- Import the component -->
1717
<script>
18-
import '@devbyrayray/vue-wc-button';
18+
import '@devbyray/vue-wc-button';
1919
</script>
2020

2121
<!-- Basic usage -->

packages/components/button/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@devbyrayray/vue-wc-button",
2+
"name": "@devbyray/vue-wc-button",
33
"version": "0.0.4",
44
"description": "Accessible Button web component for Vue",
55
"main": "dist/index.js",
@@ -16,7 +16,7 @@
1616
},
1717
"repository": {
1818
"type": "git",
19-
"url": "git+https://github.com/devbyrayray/vue-web-component-library.git",
19+
"url": "git+https://github.com/devbyray/vue-web-component-library.git",
2020
"directory": "packages/components/button"
2121
},
2222
"keywords": [
@@ -33,8 +33,8 @@
3333
"registry": "https://npm.pkg.github.com"
3434
},
3535
"dependencies": {
36-
"@devbyrayray/vue-wc-core": "workspace:*",
37-
"@devbyrayray/vue-wc-vite": "workspace:*",
36+
"@devbyray/vue-wc-core": "workspace:*",
37+
"@devbyray/vue-wc-vite": "workspace:*",
3838
"vue": "^3.5.0"
3939
},
4040
"devDependencies": {

packages/components/button/src/Button.ce.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<script setup lang="ts">
1717
import { defineProps, defineEmits } from 'vue';
18-
import { BaseProps, Size, Variant } from '@devbyrayray/vue-wc-core';
18+
import { BaseProps, Size, Variant } from '@devbyray/vue-wc-core';
1919
2020
export interface ButtonProps extends /* @vue-ignore */ BaseProps {
2121
/**

packages/components/button/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { defineCustomElement as VueDefineCustomElement } from 'vue';
22
import ButtonComponent from './Button.ce.vue';
3-
import { defineCustomElement, COMPONENT_NAMES } from '@devbyrayray/vue-wc-core';
3+
import { defineCustomElement, COMPONENT_NAMES } from '@devbyray/vue-wc-core';
44

55
// Define the Button as a Vue custom element
66
const ButtonElement = VueDefineCustomElement(ButtonComponent);

packages/components/button/vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { defineBaseConfig } from '@devbyrayray/vue-wc-vite';
1+
import { defineBaseConfig } from '@devbyray/vue-wc-vite';
22

33
export default defineBaseConfig({
44
name: 'vwcButton',

packages/components/icon/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ An accessible, customizable icon component for Vue applications using Google Mat
55
## Installation
66

77
```bash
8-
npm install @devbyrayray/vue-wc-icon
9-
pnpm add @devbyrayray/vue-wc-icon
10-
yarn add @devbyrayray/vue-wc-icon
8+
npm install @devbyray/vue-wc-icon
9+
pnpm add @devbyray/vue-wc-icon
10+
yarn add @devbyray/vue-wc-icon
1111
```
1212

1313
## Usage
1414

1515
```html
1616
<!-- Import the component -->
1717
<script>
18-
import '@devbyrayray/vue-wc-icon';
18+
import '@devbyray/vue-wc-icon';
1919
</script>
2020

2121
<!-- Basic usage -->

packages/components/icon/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@devbyrayray/vue-wc-icon",
2+
"name": "@devbyray/vue-wc-icon",
33
"version": "0.0.4",
44
"description": "Accessible Icon web component for Vue using Google Material Icons",
55
"main": "dist/index.js",
@@ -16,7 +16,7 @@
1616
},
1717
"repository": {
1818
"type": "git",
19-
"url": "git+https://github.com/devbyrayray/vue-web-component-library.git",
19+
"url": "git+https://github.com/devbyray/vue-web-component-library.git",
2020
"directory": "packages/components/icon"
2121
},
2222
"keywords": [
@@ -34,8 +34,8 @@
3434
"registry": "https://npm.pkg.github.com"
3535
},
3636
"dependencies": {
37-
"@devbyrayray/vue-wc-core": "workspace:*",
38-
"@devbyrayray/vue-wc-vite": "workspace:*",
37+
"@devbyray/vue-wc-core": "workspace:*",
38+
"@devbyray/vue-wc-vite": "workspace:*",
3939
"vue": "^3.5.0"
4040
}
4141
}

packages/components/icon/src/Icon.ce.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<script setup lang="ts">
1515
import { defineProps, computed } from 'vue';
16-
import { BaseProps, Size } from '@devbyrayray/vue-wc-core';
16+
import { BaseProps, Size } from '@devbyray/vue-wc-core';
1717
1818
export interface IconProps extends /* @vue-ignore */ BaseProps {
1919
/**

packages/components/icon/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { defineCustomElement as VueDefineCustomElement } from 'vue';
22
import IconComponent from './Icon.ce.vue';
3-
import { defineCustomElement, COMPONENT_NAMES } from '@devbyrayray/vue-wc-core';
3+
import { defineCustomElement, COMPONENT_NAMES } from '@devbyray/vue-wc-core';
44

55
// Define the Icon as a Vue custom element
66
const IconElement = VueDefineCustomElement(IconComponent);

packages/components/icon/vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { defineBaseConfig } from '@devbyrayray/vue-wc-vite';
1+
import { defineBaseConfig } from '@devbyray/vue-wc-vite';
22

33
export default defineBaseConfig({
44
name: 'vwcIcon',

0 commit comments

Comments
 (0)