Skip to content

Commit 3178af8

Browse files
Publish: @stencil/vue-output-target v0.10.2
1 parent acd1891 commit 3178af8

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## @stencil/vue-output-target@0.10.2 (2025-03-12)
2+
3+
#### :bug: Bug Fix
4+
5+
- `vue-output-target`
6+
- [`acd18913`](https://github.com/stenciljs/output-targets/commit/acd18913e11c4516ab9def64ad01562a9ec7c3) fix(vue): correctly reference model value and more testing ([@christian-bromann](https://github.com/christian-bromann))
7+
- adding various more e2e test to verify functionality of the framework wrapper
8+
19
## @stencil/vue-output-target@0.10.1 (2025-03-11)
210

311
#### :bug: Bug Fix

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,10 @@ Check out our [example project](https://github.com/stenciljs/output-targets/blob
100100
- [`component-library-angular`](https://github.com/stenciljs/output-targets/blob/main/example-project/component-library-angular) - An Angular project that consumes Stencil components and exports them as an Angular module
101101
- [`component-library-react`](https://github.com/stenciljs/output-targets/blob/main/example-project/component-library-react) - A React + Vite project that uses Stencil components and exports them as a React component
102102
- [`next-app`](https://github.com/stenciljs/output-targets/blob/main/example-project/next-app) - A Next.js application that consumes the Stencil components from the `component-library-react` project
103+
- [`next-15-react-19-app`](https://github.com/stenciljs/output-targets/blob/main/example-project/next-15-react-19-app) - A Next.js v15 application using React v19 that consumes the Stencil components from the `component-library-react` project
103104
- [`nuxt-app`](https://github.com/stenciljs/output-targets/blob/main/example-project/nuxt-app) - A Nuxt application that consumes the Stencil components from the `component-library-vue` project
104105
- [`vue-app`](https://github.com/stenciljs/output-targets/blob/main/example-project/vue-app) - A Vue + Vite example application that consumes the Stencil components from the `component-library-vue` project
106+
- [`vue-app-broken`](https://github.com/stenciljs/output-targets/blob/main/example-project/vue-app-broken) - A Vue + Vite example application with invalid type use for testing purposes, ensuring Vue component properties types are propagated correctly
105107

106108
Detailed information for each output target can be found in each package's README.
107109

example-project/component-library/src/components/helpers.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,6 @@ export const createColorClasses = (color: string | undefined | null, cssClassMap
155155
: cssClassMap;
156156
};
157157

158-
159158
/**
160159
* Uses the compareWith param to compare two values to determine if they are equal.
161160
*
@@ -230,4 +229,4 @@ export const renderHiddenInput = (
230229
input.name = name;
231230
input.value = value || '';
232231
}
233-
};
232+
};

example-project/component-library/src/components/my-radio-group/my-radio-group.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export class RadioGroup implements ComponentInterface {
4242
@Watch('value')
4343
valueChanged(value: any | undefined) {
4444
this.setRadioTabindex(value);
45-
this.emitValueChange
45+
this.emitValueChange;
4646
this.myValueChange.emit({ value });
4747
}
4848

packages/vue/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stencil/vue-output-target",
3-
"version": "0.10.1",
3+
"version": "0.10.2",
44
"description": "Vue output target for @stencil/core components.",
55
"author": "Ionic Team",
66
"homepage": "https://stenciljs.com/",

0 commit comments

Comments
 (0)