cem-tools icon indicating copy to clipboard operation
cem-tools copied to clipboard

Tooling for generating features based on the Custom Elements Manifest

Results 24 cem-tools issues
Sort by recently updated
recently updated
newest added

More a question than an issue. Our JSX use case involves React 19 with Custom Elements. Teams using our components encounter the problem that the components do not have `onClick`...

First of all: thanks for a great collection of packages! I've noticed that when generating CEM, inheritance is supported. However, it seems the custom-element-jet-brains-integration does not support inheritance (at least...

A PR that heavily rely on what has been done in https://github.com/break-stuff/cem-tools/pull/94 that hasn't moved for over a year. It implements the same feature, in a simpler way now that...

Thank you for making this awesome generator! Web-Types allows for specifying source module and symbol. When these are set you can use Go To > Declaration (or more commonly Ctrl+Click)...

As title, when I use `custom-elemnts-manifest-inheritance` 1.2.0 I get this error: ``` Error: Dynamic require of "worker_threads" is not supported ``` This doesn't happen with v1.1.1

When trying to analyze types like: ```ts @property({ type: Object }) foobar: { [key: string]: any } = { foo: 'bar' } ``` I get the following error: ```bash Error:...

Hi! I noticed that utility types of Typescript (such as `Exclude`) don't seem to work with cem-plugin-expanded-types. If you use them with a union type (regardless whether imported or local...

I noticed that one union type in my project is not getting expanded as I would've expected. It is a union type from a 3rd party dependency that is installed...

Let's say in a file with Lit component I have an interface that describes props: ``` export interface ButtonProps { variant: 'primary' | 'secondary' | 'tertiary' size: 'sm' | 'md'...

I know the description says "non-react", but I am looking for a way to generate JSX types automatically. We don't need wrappers with React 19, but we still need a...