vue-tsx-support icon indicating copy to clipboard operation
vue-tsx-support copied to clipboard

TSX (JSX for TypeScript) support library for Vue

Results 26 vue-tsx-support issues
Sort by recently updated
recently updated
newest added

- resolves #102 - adds `allow` and `referrerpolicy` to interface in "types/dom.d.ts"

[Current `IframeHTMLAttributes`](https://github.com/wonderful-panda/vue-tsx-support/blob/master/types/dom.d.ts#L131) ``` export interface IframeHTMLAttributes extends HTMLAttributes { allowfullscreen?: boolean; allowtransparency?: boolean; frameborder?: number | string; height?: number | string; marginheight?: number; marginwidth?: number; name?: string; sandbox?: string; scrolling?:...

Bumps [jsdom](https://github.com/jsdom/jsdom) from 16.4.0 to 16.7.0. Release notes Sourced from jsdom's releases. Version 16.7.0 Added AbortSignal.abort(). (ninevra) Added dummy x and y properties to the return value of getBoundingClientRect(). (eiko)...

dependencies

Bumps [shell-quote](https://github.com/substack/node-shell-quote) from 1.7.2 to 1.7.3. Changelog Sourced from shell-quote's changelog. 1.7.3 Fix a security issue where the regex for windows drive letters allowed some shell meta-characters to escape the...

dependencies

Consider this example: ```tsx import * as tsx from "vue-tsx-support"; import { VApp } from "vuetify/lib"; type RouterTab = { name: string; path: string; }; const topLevelMenuItems = { dashboard:...

Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...

dependencies

I have a child component ``` export default tsx.component({ name: 'Person', props: { boo: { type: String, required: true }, foo: { type: String, } }, ``` when I call...

I want to use my component like this: ```tsx ``` So I did this: ```tsx export default tsx.component({ name: "NewFolderDialog", props: { value: { type: Boolean as PropType, required: true,...

Adds `duration` prop for the `` component. See [Explicit Transition Durations](https://vuejs.org/v2/guide/transitions.html#Explicit-Transition-Durations) Should resolve this error: ``` Type '{ duration: number; }' is not assignable to type 'CombinedTsxComponentAttrs'. Property 'duration' does...

If I upgrade to version 3.2.0 from 2.3.3, generics stop working in my components ``` import * as tsx from 'vue-tsx-support'; import { Prop, Component } from 'vue-property-decorator'; interface IMyProps...