-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
/
Copy pathcomponent.ts
89 lines (78 loc) · 1.91 KB
/
component.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
import type { InspectorNodeTag } from './api.js'
import type { ID } from './util.js'
export type ComponentInstance = any // @TODO
export interface ComponentTreeNode {
uid: ID
id: string
name: string
renderKey: string | number
inactive: boolean
isFragment: boolean
hasChildren: boolean
children: ComponentTreeNode[]
domOrder?: number[]
consoleId?: string
isRouterView?: boolean
macthedRouteSegment?: string
tags: InspectorNodeTag[]
autoOpen: boolean
meta?: any
}
export interface InspectedComponentData {
id: string
name: string
file: string
state: ComponentState[]
functional?: boolean
}
export interface StateBase {
key: string
value: any
editable?: boolean
objectType?: 'ref' | 'reactive' | 'computed' | 'other'
raw?: string
}
export interface ComponentStateBase extends StateBase {
type: string
}
export interface ComponentPropState extends ComponentStateBase {
meta?: {
type: string
required: boolean
/** Vue 1 only */
mode?: 'default' | 'sync' | 'once'
}
}
export type ComponentBuiltinCustomStateTypes = 'function' | 'map' | 'set' | 'reference' | 'component' | 'component-definition' | 'router' | 'store'
export interface ComponentCustomState extends ComponentStateBase {
value: CustomState
}
export interface CustomState {
_custom: {
type: ComponentBuiltinCustomStateTypes | string
objectType?: string
display?: string
tooltip?: string
value?: any
abstract?: boolean
file?: string
uid?: number
readOnly?: boolean
/** Configure immediate child fields */
fields?: {
abstract?: boolean
}
id?: any
actions?: {
icon: string
tooltip?: string
action: () => void | Promise<void>
}[]
/** internal */
_reviveId?: number
}
}
export type ComponentState = ComponentStateBase | ComponentPropState | ComponentCustomState
export interface ComponentDevtoolsOptions {
hide?: boolean
}