Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update-jsx-types-messaging #158

Merged
merged 3 commits into from
Dec 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/deprecator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.1.2

- Fixed imported function name in `README.md`

## 1.1.1

- Prevent overriding CEM when Analyzer is used
Expand Down
2 changes: 1 addition & 1 deletion packages/deprecator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ Ensure the following steps have been taken in your component library prior to us
```js
// custom-elements-manifest.config.js

import { cemInheritancePlugin } from "custom-elements-manifest-deprecator";
import { cemDeprecatorPlugin } from "custom-elements-manifest-deprecator";

const options = {
/* add options here */
Expand Down
2 changes: 1 addition & 1 deletion packages/deprecator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "custom-elements-manifest-deprecator",
"version": "1.1.1",
"version": "1.1.2",
"description": "A tool for marking Custom Elements Manifest data as 'deprecated'",
"main": "index.js",
"module": "index.js",
Expand Down
4 changes: 4 additions & 0 deletions packages/jsx-integration/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 1.5.4

- Updated messaging in `README.md` for react wrappers

## 1.5.3

- Updated to use intersection types rather than union types
Expand Down
2 changes: 1 addition & 1 deletion packages/jsx-integration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This package is designed to generate types for your custom elements in a project using [JSX](https://www.typescriptlang.org/docs/handbook/jsx.html). These types will generate inline documentation, autocomplete, and type-safe validation for your custom elements in non-react frameworks that use JSX like [Preact](https://preactjs.com/) and [StencilJS](https://stenciljs.com/).

> **_NOTE:_** THIS IS FOR NON-REACT PROJECTS THAT USE JSX/TSX TEMPLATES
> **_NOTE:_** If you are using react 18 or below, check out our [react wrappers](https://www.npmjs.com/package/custom-element-react-wrappers).

![demo of autocomplete features for custom elements in a solidjs project](https://github.com/break-stuff/cem-tools/blob/main/demo/images/solid-js-integration/solid-js-integration.gif?raw=true)

Expand Down
2 changes: 1 addition & 1 deletion packages/jsx-integration/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "custom-element-jsx-integration",
"version": "1.5.3",
"version": "1.5.4",
"description": "Tools for integrating custom elements into JSX projects",
"main": "index.js",
"module": "index.js",
Expand Down
Loading