Commit Graph

116 Commits

Author SHA1 Message Date
Evan You
ffaf81ba5f chore: fix type tests 2022-06-01 22:12:02 +08:00
Evan You
206f8a7f09 wip: defineComponent 2022-06-01 21:55:33 +08:00
Evan You
5673363eda feat: expose set/del as named exports 2022-06-01 09:46:50 +08:00
Evan You
2acb5474bc types: generate types for v3 apis 2022-05-30 21:36:07 +08:00
Evan You
dae380dc24 wip: renderTriggered/renderTracked 2022-05-29 16:01:38 +08:00
Evan You
1e4ac46fe5 wip: lifecycle api 2022-05-27 23:40:03 +08:00
Evan You
93214586aa types: types for setup() + format types 2022-05-27 17:26:55 +08:00
Evan You
73bcd07194 test: all features except transition pass 2022-05-20 10:12:40 +08:00
David Welch
40dccfedd1 chore: fix test harness; most of the tooling + test harness is happy; coverage still needs fixing 2022-05-03 11:04:55 -06:00
David Welch
be4b617942 chore: cleanup on tests; babel preset for typescript help 2022-05-01 14:37:05 -06:00
David Welch
534a0aa863 chore: convert tests to typescript 2022-04-29 15:43:25 -06:00
Sebastian Krüger
c52427b0d2
fix(types): async Component types (#11906)
* Update options.d.ts

* Create async-component-test.ts

* add generics to Component ad EsModuleComponent

* remove not needed , and ;

* revert unrelated changes

* revert unrelated changes

* revert unrelated changes

* revert unrelated changes

* optimize EsModuleImports

* Update async-component-test.ts
2021-06-03 15:13:33 +02:00
WORMSS
2b93e86aa1
fix(types): make $refs undefined possible (#11112)
Added undefined as a return type of $refs as it was quite hard to convince typescript that something COULD be undefined if you type in a ref that doesn't exist,
I also changed the two array statements from `Element[] | Vue[]` to `(Element | Vue)[]` because it's not guaranteed that they are ALL Elements or they are ALL Vue components. (Very likely, yes, but not always)
For example
```html
<template v-for="(a, index) of b">
  <div v-if="index % 2 === 0" ref="test"></div>
  <my-component v-else ref="test"></my-component>
</template>
```
2021-04-16 17:59:37 +02:00
Zen
5c459f0fd6
fix(types): allow symbol & boolean for vnode key (#11914) 2021-04-07 11:37:53 +02:00
Flo Edelmann
e0274e4320
fix(types): add types for Vue.util.warn function (#11964)
See https://github.com/vuejs/vue/blob/v2.6.12/src/core/util/debug.js#L18-L26
2021-03-30 11:46:53 +02:00
Kawokas
7c75462354
fix(types): changed expression type to optional string (#11189)
fix #10871
2021-03-30 11:37:56 +02:00
Orkhan Alikhanov
668e1e6374
fix(types): allow string for watch handlers in options (#10396)
* Allow watch handler to be string as it is supported

* Move string type to WatchHandler itself

* Removed string type as it moved to WatchHandler
2020-09-21 16:13:21 +02:00
warmsocks
8ead9d2a0d
chore: spelling and grammar (#11481)
Co-authored-by: Shaun Case <shaunc@aja.com>
2020-07-01 11:11:46 +02:00
katashin
4821149b8b fix(types): fix prop constructor type inference (#10779) 2019-10-30 10:45:29 -04:00
katashin
ab50e8e1da fix(types): fix global namespace declaration for UMD bundle (#9912) 2019-04-25 11:18:07 +08:00
Evan You
ea113d2618 test: separate failing test for TS 3.4 2019-04-25 10:13:32 +08:00
Carlos Rodrigues
df4af4bd19 fix(types): allow using functions on the PropTypes (#9733)
close #9692
2019-03-19 12:54:27 +08:00
Vitor Luiz Cavalcanti
982d5a492f fix(types): support string type for style in VNode data (#9728)
fix #9727
2019-03-18 15:47:43 +08:00
DSha
731e4d0ebc types: use normalized type for RenderContext.scopedSlots (#9624)
fix #9616
2019-03-05 16:46:56 -05:00
Kael
241eea19a6 fix(types): allow scoped slots to return a single VNode (#9563) 2019-02-28 17:03:28 -05:00
Gcaufy
f33301619d fix(types): update this for nextTick api (#9541) 2019-02-28 16:54:07 -05:00
Sebastian Krüger
54e6a121e9 fix(types): add Vue.version to types (#9431) 2019-02-05 22:20:03 -05:00
Evan You
dbc0582587 feat: dynamic directive arguments for v-on, v-bind and custom directives (#9373) 2019-01-25 23:22:44 -05:00
Evan You
42fdf3f837 refactor: ssrPrefetch -> serverPrefetch for more consistent naming 2019-01-18 16:43:17 -05:00
Evan You
0cf6aaddb5 types: type sync for 2.6 features 2019-01-15 12:38:58 -05:00
Evan You
fe2b27ffb9 types: typing for Vue.observable 2019-01-10 22:44:55 -05:00
Evan You
3504d7f6d6 refactor: better solution for async edge case.
Revert event delegation related changes.
2019-01-10 14:21:31 -05:00
Evan You
3be1c5d67e feat(config): expose config.useEventDelegation and default to false 2019-01-09 20:09:50 -05:00
Eduardo San Martin Morote
fb6aa06090 feat(functional): add scopedSlots to context in functional components (#7941) 2019-01-09 16:18:14 -05:00
Guillaume Chau
d7a533d6f8 feat(ssr): ssrPrefetch option + context.rendered hook (#9017) 2018-12-20 15:26:12 -05:00
Ferdy Budhidharma
57910723c6 feat(types): add Prop to main type declaration file (#6856)
close #6850
2018-12-12 12:24:41 -05:00
Kael
d780dd2e2a fix(types): accept primatives and falsy values in createElement children (#9154)
fixes #8498
2018-12-10 18:36:41 -05:00
Herrington Darkholme
e06d2af276 fix(types): avoid this in VueConstructor signature (#9173)
https://github.com/vuejs/vue-class-component/issues/294#issuecomment-445526936
2018-12-10 11:53:56 -05:00
Timur Kiyui
dfaf9e2436 fix(types): type support for advanced async components (#8438) 2018-12-05 18:00:56 -05:00
Kael
448ba65d2b fix(types): correct scopedSlot types (#9131)
see #8946
2018-12-03 20:31:39 -05:00
James George
b0ccb86183 chore: rephrase comment (#9100) 2018-12-01 00:23:58 -05:00
Julian Rüth
f43ae6d151 chore(typo): fix typo (#9085) 2018-11-30 23:58:58 -05:00
hugoazevedosoares
97086f3658 fix(types): fix vm.$once argument type (#8995)
vm.$once should accept an event or array of events as first parameter.

fix #8983
2018-11-30 23:41:27 -05:00
thenickname
76443803e8 Typings: Improve $slots and $scopedSlots type to prevent unchecked access to undefined (#8946)
* fix(types): Declare $scopedSlots as potentially undefined to enable stricter TS checks

* fix(types): Fix tests

* fix(types): declare $slots option as potentially undefined

declare $slots option as potentially undefined to enable stricter TS checks
2018-11-30 23:31:45 -05:00
Kaoru Hagihara
3cd4af4af0 fix(types): support typing $el as SVGElement (#8809) 2018-11-30 23:30:31 -05:00
nel215
0ba79e2588 fix(types): accept number type as key on Vue.set/delete (#8707) (#8709) 2018-11-30 23:28:52 -05:00
st-sloth
ac217d2472 fix(types): fix renderErrorarguments type (#8636)
fix #8635
2018-11-30 23:28:29 -05:00
狼族小狈
c711ec189a fix(types): support chain call for Vue.use and Vue.mixin (#8595) 2018-11-30 23:27:24 -05:00
Kael
bfd722bb5d types: add refInFor to VNodeData (#8229) 2018-10-24 13:05:15 -04:00
Eduardo San Martin Morote
496635e7c9 types: add model option to functional components (#8212)
Closes #8210
2018-10-24 13:03:48 -04:00