Skip to content

Commit e6f9aac

Browse files
prettier
1 parent acd1891 commit e6f9aac

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

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

0 commit comments

Comments
 (0)