Skip to content

Commit e4dc03a

Browse files
committed
feat(types): adjust type exports for manual render function and tooling usage
- v-model and v-show directives are now exposed as public - compiler-used runtime helpers are now exposed for TS tooling, but marked as @Private close vuejs#1329
1 parent 9b5d13e commit e4dc03a

13 files changed

+40
-45
lines changed

api-extractor.json

+4
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@
4040
"tsdocMessageReporting": {
4141
"default": {
4242
"logLevel": "warning"
43+
},
44+
45+
"tsdoc-undefined-tag": {
46+
"logLevel": "none"
4347
}
4448
}
4549
}

packages/runtime-core/src/helpers/createSlots.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ interface CompiledSlotDescriptor {
88

99
/**
1010
* Compiler runtime helper for creating dynamic slots object
11-
* @internal
11+
* @private
1212
*/
1313
export function createSlots(
1414
slots: Record<string, Slot>,

packages/runtime-core/src/helpers/renderList.ts

+4-6
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { isArray, isString, isObject } from '@vue/shared'
33

44
/**
55
* v-for string
6-
* @internal
6+
* @private
77
*/
88
export function renderList(
99
source: string,
@@ -12,7 +12,6 @@ export function renderList(
1212

1313
/**
1414
* v-for number
15-
* @internal
1615
*/
1716
export function renderList(
1817
source: number,
@@ -21,7 +20,6 @@ export function renderList(
2120

2221
/**
2322
* v-for array
24-
* @internal
2523
*/
2624
export function renderList<T>(
2725
source: T[],
@@ -30,7 +28,6 @@ export function renderList<T>(
3028

3129
/**
3230
* v-for iterable
33-
* @internal
3431
*/
3532
export function renderList<T>(
3633
source: Iterable<T>,
@@ -39,7 +36,6 @@ export function renderList<T>(
3936

4037
/**
4138
* v-for object
42-
* @internal
4339
*/
4440
export function renderList<T>(
4541
source: T,
@@ -50,7 +46,9 @@ export function renderList<T>(
5046
) => VNodeChild
5147
): VNodeChild[]
5248

53-
// actual implementation
49+
/**
50+
* Actual implementation
51+
*/
5452
export function renderList(
5553
source: any,
5654
renderItem: (...args: any[]) => VNodeChild

packages/runtime-core/src/helpers/renderSlot.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { warn } from '../warning'
1212

1313
/**
1414
* Compiler runtime helper for rendering <slot/>
15-
* @internal
15+
* @private
1616
*/
1717
export function renderSlot(
1818
slots: Slots,

packages/runtime-core/src/helpers/resolveAssets.ts

+14-2
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,18 @@ import { warn } from '../warning'
1212
const COMPONENTS = 'components'
1313
const DIRECTIVES = 'directives'
1414

15+
/**
16+
* @private
17+
*/
1518
export function resolveComponent(name: string): Component | string | undefined {
1619
return resolveAsset(COMPONENTS, name) || name
1720
}
1821

1922
export const NULL_DYNAMIC_COMPONENT = Symbol()
2023

24+
/**
25+
* @private
26+
*/
2127
export function resolveDynamicComponent(
2228
component: unknown
2329
): Component | string | typeof NULL_DYNAMIC_COMPONENT {
@@ -29,11 +35,17 @@ export function resolveDynamicComponent(
2935
}
3036
}
3137

38+
/**
39+
* @private
40+
*/
3241
export function resolveDirective(name: string): Directive | undefined {
3342
return resolveAsset(DIRECTIVES, name)
3443
}
3544

36-
// overload 1: components
45+
/**
46+
* @private
47+
* overload 1: components
48+
*/
3749
function resolveAsset(
3850
type: typeof COMPONENTS,
3951
name: string,
@@ -44,7 +56,7 @@ function resolveAsset(
4456
type: typeof DIRECTIVES,
4557
name: string
4658
): Directive | undefined
47-
59+
// implementation
4860
function resolveAsset(
4961
type: typeof COMPONENTS | typeof DIRECTIVES,
5062
name: string,

packages/runtime-core/src/helpers/scopeId.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,22 @@ export let currentScopeId: string | null = null
88
const scopeIdStack: string[] = []
99

1010
/**
11-
* @internal
11+
* @private
1212
*/
1313
export function pushScopeId(id: string) {
1414
scopeIdStack.push((currentScopeId = id))
1515
}
1616

1717
/**
18-
* @internal
18+
* @private
1919
*/
2020
export function popScopeId() {
2121
scopeIdStack.pop()
2222
currentScopeId = scopeIdStack[scopeIdStack.length - 1] || null
2323
}
2424

2525
/**
26-
* @internal
26+
* @private
2727
*/
2828
export function withScopeId(id: string): <T extends Function>(fn: T) => T {
2929
return ((fn: Function) =>

packages/runtime-core/src/helpers/toHandlers.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { warn } from '../warning'
33

44
/**
55
* For prefixing keys in v-on="obj" with "on"
6-
* @internal
6+
* @private
77
*/
88
export function toHandlers(obj: Record<string, any>): Record<string, any> {
99
const ret: Record<string, any> = {}

packages/runtime-core/src/helpers/withRenderContext.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { ComponentInternalInstance } from '../component'
77

88
/**
99
* Wrap a slot function to memoize current rendering instance
10-
* @internal
10+
* @private
1111
*/
1212
export function withCtx(
1313
fn: Slot,

packages/runtime-core/src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -229,11 +229,11 @@ export {
229229
// them in @vue/shared's typings
230230
import { toDisplayString, camelize } from '@vue/shared'
231231
/**
232-
* @internal
232+
* @private
233233
*/
234234
const _toDisplayString = toDisplayString
235235
/**
236-
* @internal
236+
* @private
237237
*/
238238
const _camelize = camelize
239239
export { _toDisplayString as toDisplayString, _camelize as camelize }

packages/runtime-core/src/vnode.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ let currentBlock: VNode[] | null = null
161161
* disableTracking is true when creating a v-for fragment block, since a v-for
162162
* fragment always diffs its children.
163163
*
164-
* @internal
164+
* @private
165165
*/
166166
export function openBlock(disableTracking = false) {
167167
blockStack.push((currentBlock = disableTracking ? null : []))
@@ -187,7 +187,7 @@ let shouldTrack = 1
187187
* )
188188
* ```
189189
*
190-
* @internal
190+
* @private
191191
*/
192192
export function setBlockTracking(value: number) {
193193
shouldTrack += value
@@ -198,7 +198,7 @@ export function setBlockTracking(value: number) {
198198
* A block root keeps track of dynamic nodes within the block in the
199199
* `dynamicChildren` array.
200200
*
201-
* @internal
201+
* @private
202202
*/
203203
export function createBlock(
204204
type: VNodeTypes | ClassComponent,
@@ -453,14 +453,14 @@ export function cloneVNode<T, U>(
453453
}
454454

455455
/**
456-
* @internal
456+
* @private
457457
*/
458458
export function createTextVNode(text: string = ' ', flag: number = 0): VNode {
459459
return createVNode(Text, null, text, flag)
460460
}
461461

462462
/**
463-
* @internal
463+
* @private
464464
*/
465465
export function createStaticVNode(
466466
content: string,
@@ -474,7 +474,7 @@ export function createStaticVNode(
474474
}
475475

476476
/**
477-
* @internal
477+
* @private
478478
*/
479479
export function createCommentVNode(
480480
text: string = '',

packages/runtime-dom/src/directives/vModel.ts

+1-17
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,7 @@ function trigger(el: HTMLElement, type: string) {
4242
type ModelDirective<T> = ObjectDirective<T & { _assign: AssignerFn }>
4343

4444
// We are exporting the v-model runtime directly as vnode hooks so that it can
45-
// be tree-shaken in case v-model is never used. These are used by compilers
46-
// only and userland code should avoid relying on them.
47-
/**
48-
* @internal
49-
*/
45+
// be tree-shaken in case v-model is never used.
5046
export const vModelText: ModelDirective<
5147
HTMLInputElement | HTMLTextAreaElement
5248
> = {
@@ -96,9 +92,6 @@ export const vModelText: ModelDirective<
9692
}
9793
}
9894

99-
/**
100-
* @internal
101-
*/
10295
export const vModelCheckbox: ModelDirective<HTMLInputElement> = {
10396
beforeMount(el, binding, vnode) {
10497
setChecked(el, binding, vnode)
@@ -144,9 +137,6 @@ function setChecked(
144137
}
145138
}
146139

147-
/**
148-
* @internal
149-
*/
150140
export const vModelRadio: ModelDirective<HTMLInputElement> = {
151141
beforeMount(el, { value }, vnode) {
152142
el.checked = looseEqual(value, vnode.props!.value)
@@ -163,9 +153,6 @@ export const vModelRadio: ModelDirective<HTMLInputElement> = {
163153
}
164154
}
165155

166-
/**
167-
* @internal
168-
*/
169156
export const vModelSelect: ModelDirective<HTMLSelectElement> = {
170157
// use mounted & updated because <select> relies on its children <option>s.
171158
mounted(el, { value }, vnode) {
@@ -227,9 +214,6 @@ function getCheckboxValue(
227214
return key in el ? el[key] : checked
228215
}
229216

230-
/**
231-
* @internal
232-
*/
233217
export const vModelDynamic: ObjectDirective<
234218
HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement
235219
> = {

packages/runtime-dom/src/directives/vOn.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const modifierGuards: Record<
2323
}
2424

2525
/**
26-
* @internal
26+
* @private
2727
*/
2828
export const withModifiers = (fn: Function, modifiers: string[]) => {
2929
return (event: Event, ...args: unknown[]) => {
@@ -48,7 +48,7 @@ const keyNames: Record<string, string | string[]> = {
4848
}
4949

5050
/**
51-
* @internal
51+
* @private
5252
*/
5353
export const withKeys = (fn: Function, modifiers: string[]) => {
5454
return (event: KeyboardEvent) => {

packages/runtime-dom/src/directives/vShow.ts

-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ interface VShowElement extends HTMLElement {
55
_vod: string
66
}
77

8-
/**
9-
* @internal
10-
*/
118
export const vShow: ObjectDirective<VShowElement> = {
129
beforeMount(el, { value }, { transition }) {
1310
el._vod = el.style.display === 'none' ? '' : el.style.display

0 commit comments

Comments
 (0)