@lytjs/component 4.1.0 → 4.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +288 -0
- package/package.json +3 -3
- package/dist/tsconfig.tsbuildinfo +0 -1
package/README.md
ADDED
|
@@ -0,0 +1,288 @@
|
|
|
1
|
+
# @lytjs/component
|
|
2
|
+
|
|
3
|
+
Lyt.js 组件系统 - 提供 defineComponent、组件生命周期、插槽、内置组件等能力。
|
|
4
|
+
|
|
5
|
+
## 安装
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @lytjs/component
|
|
9
|
+
|
|
10
|
+
# 或使用 pnpm
|
|
11
|
+
pnpm add @lytjs/component
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## 特性
|
|
15
|
+
|
|
16
|
+
- 📦 defineComponent
|
|
17
|
+
- 🔄 完整生命周期钩子
|
|
18
|
+
- 🎯 插槽系统
|
|
19
|
+
- 💾 KeepAlive 缓存
|
|
20
|
+
- ⏳ Suspense 异步
|
|
21
|
+
- 🎭 Teleport 传送门
|
|
22
|
+
|
|
23
|
+
## 快速开始
|
|
24
|
+
|
|
25
|
+
### 定义组件
|
|
26
|
+
|
|
27
|
+
```javascript
|
|
28
|
+
import { defineComponent } from '@lytjs/component';
|
|
29
|
+
|
|
30
|
+
const MyComponent = defineComponent({
|
|
31
|
+
props: {
|
|
32
|
+
msg: {
|
|
33
|
+
type: String,
|
|
34
|
+
default: 'Hello'
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
emits: ['click'],
|
|
38
|
+
setup(props, { emit }) {
|
|
39
|
+
const handleClick = () => {
|
|
40
|
+
emit('click', props.msg);
|
|
41
|
+
};
|
|
42
|
+
return { handleClick };
|
|
43
|
+
},
|
|
44
|
+
template: `
|
|
45
|
+
<div>
|
|
46
|
+
<p>{{ msg }}</p>
|
|
47
|
+
<button @click="handleClick">Click me</button>
|
|
48
|
+
</div>
|
|
49
|
+
`
|
|
50
|
+
});
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
### 使用插槽
|
|
54
|
+
|
|
55
|
+
```javascript
|
|
56
|
+
import { defineComponent } from '@lytjs/component';
|
|
57
|
+
|
|
58
|
+
const Layout = defineComponent({
|
|
59
|
+
template: `
|
|
60
|
+
<div class="layout">
|
|
61
|
+
<header>
|
|
62
|
+
<slot name="header">默认头部</slot>
|
|
63
|
+
</header>
|
|
64
|
+
<main>
|
|
65
|
+
<slot></slot>
|
|
66
|
+
</main>
|
|
67
|
+
<footer>
|
|
68
|
+
<slot name="footer"></slot>
|
|
69
|
+
</footer>
|
|
70
|
+
</div>
|
|
71
|
+
`
|
|
72
|
+
});
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
### 作用域插槽
|
|
76
|
+
|
|
77
|
+
```javascript
|
|
78
|
+
import { defineComponent, ref } from '@lytjs/component';
|
|
79
|
+
|
|
80
|
+
const List = defineComponent({
|
|
81
|
+
props: ['items'],
|
|
82
|
+
template: `
|
|
83
|
+
<ul>
|
|
84
|
+
<li each="item in items" :key="item.id">
|
|
85
|
+
<slot name="item" :item="item" :index="index"></slot>
|
|
86
|
+
</li>
|
|
87
|
+
</ul>
|
|
88
|
+
`
|
|
89
|
+
});
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
## API 参考
|
|
93
|
+
|
|
94
|
+
### 组件定义
|
|
95
|
+
|
|
96
|
+
| API | 说明 |
|
|
97
|
+
|------|------|
|
|
98
|
+
| `defineComponent(options)` | 定义组件 |
|
|
99
|
+
| `defineAsyncComponent(loader)` | 定义异步组件 |
|
|
100
|
+
| `resolveComponent(name)` | 解析组件 |
|
|
101
|
+
| `resolveDynamicComponent(component)` | 解析动态组件 |
|
|
102
|
+
|
|
103
|
+
### 生命周期
|
|
104
|
+
|
|
105
|
+
| 钩子 | 说明 |
|
|
106
|
+
|------|------|
|
|
107
|
+
| `onBeforeMount` | 组件挂载前 |
|
|
108
|
+
| `onMounted` | 组件挂载后 |
|
|
109
|
+
| `onBeforeUpdate` | 组件更新前 |
|
|
110
|
+
| `onUpdated` | 组件更新后 |
|
|
111
|
+
| `onBeforeUnmount` | 组件卸载前 |
|
|
112
|
+
| `onUnmounted` | 组件卸载后 |
|
|
113
|
+
| `onActivated` | KeepAlive 激活时 |
|
|
114
|
+
| `onDeactivated` | KeepAlive 失活时 |
|
|
115
|
+
| `onErrorCaptured` | 捕获后代错误时 |
|
|
116
|
+
|
|
117
|
+
### 内置组件
|
|
118
|
+
|
|
119
|
+
| 组件 | 说明 |
|
|
120
|
+
|------|------|
|
|
121
|
+
| `KeepAlive` | 缓存组件实例 |
|
|
122
|
+
| `Teleport` | 传送门 |
|
|
123
|
+
| `Transition` | 过渡动画 |
|
|
124
|
+
| `TransitionGroup` | 列表过渡 |
|
|
125
|
+
| `Suspense` | 异步依赖 |
|
|
126
|
+
|
|
127
|
+
## 内置组件使用
|
|
128
|
+
|
|
129
|
+
### KeepAlive
|
|
130
|
+
|
|
131
|
+
```javascript
|
|
132
|
+
import { defineComponent, KeepAlive } from '@lytjs/component';
|
|
133
|
+
|
|
134
|
+
const App = defineComponent({
|
|
135
|
+
template: `
|
|
136
|
+
<KeepAlive :include="['Home,About">
|
|
137
|
+
<component :is="currentComponent"></component>
|
|
138
|
+
</KeepAlive>
|
|
139
|
+
`
|
|
140
|
+
});
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
### Teleport
|
|
144
|
+
|
|
145
|
+
```javascript
|
|
146
|
+
import { defineComponent, Teleport } from '@lytjs/component';
|
|
147
|
+
|
|
148
|
+
const Modal = defineComponent({
|
|
149
|
+
props: ['show'],
|
|
150
|
+
template: `
|
|
151
|
+
<Teleport to="body">
|
|
152
|
+
<div v-if="show" class="modal">
|
|
153
|
+
<slot></slot>
|
|
154
|
+
</div>
|
|
155
|
+
</Teleport>
|
|
156
|
+
`
|
|
157
|
+
});
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
### Transition
|
|
161
|
+
|
|
162
|
+
```javascript
|
|
163
|
+
import { defineComponent, Transition } from '@lytjs/component';
|
|
164
|
+
|
|
165
|
+
const App = defineComponent({
|
|
166
|
+
template: `
|
|
167
|
+
<Transition name="fade" mode="out-in">
|
|
168
|
+
<div v-if="show">Hello</div>
|
|
169
|
+
</Transition>
|
|
170
|
+
`
|
|
171
|
+
});
|
|
172
|
+
```
|
|
173
|
+
|
|
174
|
+
### Suspense
|
|
175
|
+
|
|
176
|
+
```javascript
|
|
177
|
+
import { defineComponent, Suspense, defineAsyncComponent } from '@lytjs/component';
|
|
178
|
+
|
|
179
|
+
const AsyncComponent = defineAsyncComponent(() =>
|
|
180
|
+
import('./HeavyComponent.vue')
|
|
181
|
+
);
|
|
182
|
+
|
|
183
|
+
const App = defineComponent({
|
|
184
|
+
template: `
|
|
185
|
+
<Suspense>
|
|
186
|
+
<template #default>
|
|
187
|
+
<AsyncComponent />
|
|
188
|
+
</template>
|
|
189
|
+
<template #fallback>
|
|
190
|
+
<div>Loading...</div>
|
|
191
|
+
</template>
|
|
192
|
+
</Suspense>
|
|
193
|
+
`
|
|
194
|
+
});
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
## 示例
|
|
198
|
+
|
|
199
|
+
### 完整组件示例
|
|
200
|
+
|
|
201
|
+
```javascript
|
|
202
|
+
import { defineComponent, ref, computed } from '@lytjs/component';
|
|
203
|
+
|
|
204
|
+
const Counter = defineComponent({
|
|
205
|
+
props: {
|
|
206
|
+
initial: {
|
|
207
|
+
type: Number,
|
|
208
|
+
default: 0
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
emits: ['update:count'],
|
|
212
|
+
setup(props, { emit }) {
|
|
213
|
+
const count = ref(props.initial);
|
|
214
|
+
|
|
215
|
+
const doubled = computed(() => count.value * 2);
|
|
216
|
+
|
|
217
|
+
function increment() {
|
|
218
|
+
count.value++;
|
|
219
|
+
emit('update:count', count.value);
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
return { count, doubled, increment };
|
|
223
|
+
},
|
|
224
|
+
template: `
|
|
225
|
+
<div class="counter">
|
|
226
|
+
<p>Count: {{ count }}</p>
|
|
227
|
+
<p>Doubled: {{ doubled }}</p>
|
|
228
|
+
<button @click="increment">+1</button>
|
|
229
|
+
</div>
|
|
230
|
+
`
|
|
231
|
+
});
|
|
232
|
+
```
|
|
233
|
+
|
|
234
|
+
### 使用插槽示例
|
|
235
|
+
|
|
236
|
+
```javascript
|
|
237
|
+
import { defineComponent } from '@lytjs/component';
|
|
238
|
+
|
|
239
|
+
const Card = defineComponent({
|
|
240
|
+
template: `
|
|
241
|
+
<div class="card">
|
|
242
|
+
<div class="card-header">
|
|
243
|
+
<slot name="header"></slot>
|
|
244
|
+
</div>
|
|
245
|
+
<div class="card-body">
|
|
246
|
+
<slot></slot>
|
|
247
|
+
</div>
|
|
248
|
+
<div class="card-footer">
|
|
249
|
+
<slot name="footer"></slot>
|
|
250
|
+
</div>
|
|
251
|
+
</div>
|
|
252
|
+
`
|
|
253
|
+
});
|
|
254
|
+
|
|
255
|
+
// 使用
|
|
256
|
+
const App = defineComponent({
|
|
257
|
+
components: { Card },
|
|
258
|
+
template: `
|
|
259
|
+
<Card>
|
|
260
|
+
<template #header>
|
|
261
|
+
<h2>标题</h2>
|
|
262
|
+
</template>
|
|
263
|
+
<p>内容</p>
|
|
264
|
+
<template #footer>
|
|
265
|
+
<button>确定</button>
|
|
266
|
+
</template>
|
|
267
|
+
</Card>
|
|
268
|
+
`
|
|
269
|
+
});
|
|
270
|
+
```
|
|
271
|
+
|
|
272
|
+
## 性能
|
|
273
|
+
|
|
274
|
+
- 体积:3.55 KB (ESM gzip)
|
|
275
|
+
- 零运行时依赖
|
|
276
|
+
- 高效的组件实例管理
|
|
277
|
+
|
|
278
|
+
## 兼容性
|
|
279
|
+
|
|
280
|
+
- Node.js >= 18.0.0
|
|
281
|
+
- Chrome 64+
|
|
282
|
+
- Firefox 63+
|
|
283
|
+
- Safari 12+
|
|
284
|
+
- Edge 79+
|
|
285
|
+
|
|
286
|
+
## License
|
|
287
|
+
|
|
288
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lytjs/component",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.2.0",
|
|
4
4
|
"description": "Lyt.js 组件系统 - defineComponent、生命周期、插槽、KeepAlive、Suspense",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
"defineComponent"
|
|
44
44
|
],
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@lytjs/common": "^4.
|
|
47
|
-
"@lytjs/reactivity": "^4.
|
|
46
|
+
"@lytjs/common": "^4.2.0",
|
|
47
|
+
"@lytjs/reactivity": "^4.2.0"
|
|
48
48
|
},
|
|
49
49
|
"engines": {
|
|
50
50
|
"node": ">=18.0.0"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"fileNames":["../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/typescript@6.0.2/node_modules/typescript/lib/lib.es2022.full.d.ts","../../reactivity/dist/types/effect.d.ts","../../reactivity/dist/types/reactive.d.ts","../../reactivity/dist/types/ref.d.ts","../../reactivity/dist/types/computed.d.ts","../../reactivity/dist/types/watch.d.ts","../../reactivity/dist/types/signal.d.ts","../../reactivity/dist/types/signal-component.d.ts","../../reactivity/dist/types/index.d.ts","../src/signal-state.ts","../src/props.ts","../src/emit.ts","../src/lifecycle.ts","../src/slots.ts","../src/composition-api.ts","../../common/dist/types/is.d.ts","../../common/dist/types/object.d.ts","../../common/dist/types/string.d.ts","../../common/dist/types/path.d.ts","../../common/dist/types/emitter.d.ts","../../common/dist/types/subscription.d.ts","../../common/dist/types/cache.d.ts","../../common/dist/types/timing.d.ts","../../common/dist/types/scheduler.d.ts","../../common/dist/types/error-codes.d.ts","../../common/dist/types/lyt-error.d.ts","../../common/dist/types/warn.d.ts","../../common/dist/types/algorithm.d.ts","../../common/dist/types/index.d.ts","../src/define-component.ts","../src/builtins/transition.ts","../src/builtins/transition-group.ts","../src/builtins/keep-alive.ts","../src/builtins/suspense.ts","../src/builtins/error-boundary.ts","../src/builtins/async-component.ts","../src/builtins/index.ts","../src/builtins-entry.ts","../src/index.ts"],"fileIdsList":[[78,79,80,81,82,83,84,85,86,87,88,89,90],[87],[99],[92],[93,94,95,96,97,98],[73,75,92],[92,93],[69,71,72,73,74,75,76,77,91],[72,73,74,75,76,77,92],[69],[66],[64,65,66,67,68,69,70]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"d6b1eba8496bdd0eed6fc8a685768fe01b2da4a0388b5fe7df558290bffcf32f","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f57fc4404ff020bc45b9c620aff2b40f700b95fe31164024c453a5e3c163c54","impliedFormat":1},{"version":"7f57fc4404ff020bc45b9c620aff2b40f700b95fe31164024c453a5e3c163c54","impliedFormat":1},{"version":"2a2de5b9459b3fc44decd9ce6100b72f1b002ef523126c1d3d8b2a4a63d74d78","affectsGlobalScope":true,"impliedFormat":1},{"version":"f13f4b465c99041e912db5c44129a94588e1aafee35a50eab51044833f50b4ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"01a30f9e8582b369075c0808df71121e6855cb06fd8d3d39511d9ebb66405205","impliedFormat":1},"a931971a0aed3a04be8ef1ef78e4bdd05af6d408bec44f846d3a0794dda5d708","f39120ae19c79ceffa561da071bbf53b5cf418f3ad9c186e895fa55c3c42ae31","5fe944eec62fa00578c1b68dd15a46847218f15c35eca212f86caed1469108e9","1bb4fc70e4d98ca7ef67079adde1ee3bfa3b3829ae948cf2ce5b7a332430ee65","132b0d4b346da8f6d6004dc9eb4bfc09c0d292e9325aff621b2332a12973199f","ecd41394ecea0650d670ed4cdba72fac8f219fdfa1cdcbfdcdeb79413d712d15","fe965a8da8781e4e6cef466ccccd5430dc040ae5f17615301f4203434701237c","5142c441d5148e0b3d8aaa232af01166540bc049913ded34fe2065e0ebe2cf16",{"version":"d9f56073db3b309b746416944adfa56721a5351650ac763c9156a5f5a5ce2249","signature":"2234975d1fcdcb753e30d293166f907c926ef9d11af56b6e1050c45bd9975908"},{"version":"f10ff4d4c13cf45821a3cee06783bf062cf11d264790e64d7e798eab21405602","signature":"d8719f09ad5f2c84672042d065d7a6093f1112a777846773045796d065abaef1"},{"version":"3b10342898825f76e1725903d0a0fa6f50d0835d2be52e9f909ae8faa586519c","signature":"93c1e1ffeda376466dd6ddb1f61bd1f82ee4083349eff033a9f4cd443f2abe04"},{"version":"72bf5fe51e6d6bc5a1f7c1445af8c6122fb8ab8c1871cf3be314d344af28908f","signature":"bccc98e1e0a3a3b3a992843d3b7e1a86902f0d3e40eeb7d2d36fcadf1dd96a6c"},{"version":"3237b67d952fd2be0357f8f100234717d667a71b95f182796a8825b68c71b49f","signature":"20266ce07b679d16d991e0ea49a3b8699b5ed6c6d7962d1bfed43273543bc380"},{"version":"5fe313c3b49351301ae0920dfd7a8364812b81980e0e46afd3a0a3200d3e9d9c","signature":"0c593fcd916773a7926a4d2e8b6f8b15fd2adeeb61ecd5639569e402ba72fb43"},"0242b74c149e317117aa6c97acce4ad116212ebfd963ae50bcfe8bb4fa6410d2","8220087127ce86b259fdbc78efac6cf14064a970393dd72047205a559a67a4cd","a0c71b9e3689601665669b5ad5a43d6adb2310947a3ca8e63a8bea9bf0602c95","525e3e3f106504c4e62d3564c5fea77ab17d72725981f45042ce51e9f6ae0220","66558f40fbf300cbba390965583590c6e9a874c6f95f42549fe6bf10f2ec35dd","4addbf2b9b6fcad145efc10233ce211a220cbc6a35b069d0a0467dd10ec5d855","5ef34083e9d734dfc751b5a45e046219bc29d4d9b97c51b2fad58f4305b52d7f","290759e0e7e335e470cb0b8fb085232ba92bbf53e3a6d7dfdc65423a4baf644c","0db5120e2a3e67bc5892e63f1bcf4a3d933755d5ac15fb7e1c989deb34fafd61","df3112eeed1593533b757b55fba51326c3984752f79699bc3a9c919c6556e901","1e74c319ebca519283c6be7486b2f44f2bc180f4394b8191801294081169e459","5679cb7e73eb8c28182e6455e3146ec797942cdaa0b52ece0559f1997a1dc420","9555e351c5d92cadc1e3bee2ed9735874050d48f1ab0d2f9339ab6d83865566e","df0f6ffe3276b650678e05f472d35c46ef581bc2d402dcf2c3e452a8b773b7c9",{"version":"b5b780409e75dc96efb0accd2c0deab7a920f8bbf290e950445fff81bcb1a588","signature":"56bfb70b6d817e80fdea255c24f956e5791e8a1e988513c5e2221c23acfbedae"},{"version":"583734e7310fe3ff71000d5727dfb251e20b27230e447cd487312e91f87800e7","signature":"86a4a0ee05a108a315a5b869b0396c66ec56c82596b53c8d8475743242de05ad"},{"version":"107cc98b10da8b040dbbd4f08f5c38bd6804b9aff06f0f039009928e23ee369c","signature":"fe595745aaace134026fb7695f49f9419af2dae7e57e39197f2899e68935265e"},{"version":"9df9f459914de5ac2728b0079cf536cc3c9d0bbe9bcb9fff80fe3d9f031b7668","signature":"f52af506dde3b0453f19c4ee2fed56784419b7616b4fc9e9062deb13de7c4539"},{"version":"db56d8568b31bf68c4e5eded4d7d01dba19d938c9524ff42f616b695d16c86c7","signature":"0d8d961f530331e3cef3fc2c77a30be7c3d0fd8a08fc2bf65357ef24a1a730ee"},{"version":"7b54474af06589e73ddec27e1f07c0bd80e9184702f48894a0d7eae998982942","signature":"c0e1fbd8fa49875760094cb76f32061d522da3dee6350f58518e0909220b5525"},{"version":"a5c60472f36fe81bc4f94655a5d492477f52510d7acd7cce0becbb82a9e6dac7","signature":"256b6a104a868d608ee17b10be77591670eb175ce0af087728ef524754e48096"},{"version":"73abdf7319cea30f182e6e603f7d3abed5c0c86cdb743061f62fcac149a8b0c1","signature":"f7bbc280bdfc8c45d1891f35cb053cd7136c7aff397847163532f99fc3241dc6"},{"version":"16f94abbed78dd44cda016ca04c744370ebdf01ad9be71a8aa129603da2b92a5","signature":"4a07d312b1cb867fb58bc7e925d14434f0e039e5de1db15187c678acf9d64918"},{"version":"c877743c3b75a56b614ec3587f4aea4525afa6d9178b7527a305f1e4b9ed2cb9","signature":"282c0998963e10c93a89a53a618c76c9f34b33c3ddfe22b4b860d10f2fe07ab7"}],"root":[[72,77],[92,101]],"options":{"allowImportingTsExtensions":true,"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"module":99,"noEmitOnError":false,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./types","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9,"useDefineForClassFields":true,"verbatimModuleSyntax":true},"referencedMap":[[91,1],[88,2],[100,3],[98,4],[97,4],[99,5],[95,6],[96,4],[94,7],[93,4],[92,8],[101,9],[72,10],[67,11],[71,12],[70,10],[68,11]],"semanticDiagnosticsPerFile":[[72,[{"start":179,"length":14,"messageText":"'signalComputed' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":207,"length":12,"messageText":"'signalEffect' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":251,"length":6,"messageText":"'Signal' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":1236,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":1263,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":3598,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":3616,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":3997,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":4049,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":4237,"length":11,"messageText":"'signalState' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true}]],[73,[{"start":2114,"length":9,"messageText":"'toBoolean' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":3775,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":3814,"length":3,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":4135,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":4233,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":4470,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":4611,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":4734,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":4821,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":4865,"length":3,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":7186,"length":8,"messageText":"'propName' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":8398,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":8440,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":8552,"length":3,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":8907,"length":3,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":8957,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538}]],[74,[{"start":1711,"length":13,"messageText":"'isPlainObject' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":2605,"length":8,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":2872,"length":6,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":2909,"length":6,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538}]],[75,[{"start":3622,"length":12,"messageText":"Cannot invoke an object which is possibly 'undefined'.","category":1,"code":2722}]],[76,[{"start":2901,"length":4,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":2956,"length":4,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538}]],[92,[{"start":234,"length":8,"messageText":"'nextTick' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":823,"length":15,"messageText":"'currentInstance' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":873,"length":21,"messageText":"'LifecycleHookCallback' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":6039,"length":6,"code":2375,"category":1,"messageText":{"messageText":"Type '{ name: string | undefined; options: ComponentOptions; _isComponentDefine: true; }' is not assignable to type 'ComponentDefine' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the types of the target's properties.","category":1,"code":2375,"next":[{"messageText":"Types of property 'name' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type 'string | undefined' is not assignable to type 'string'.","category":1,"code":2322,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}],"canonicalHead":{"code":2375,"messageText":"Type '{ name: string | undefined; options: ComponentOptions; _isComponentDefine: true; }' is not assignable to type 'ComponentDefine' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the types of the target's properties."}}]}]}},{"start":6529,"length":8,"code":2375,"category":1,"messageText":{"messageText":"Type '{ _isComponent: true; type: ComponentOptions; name: string | undefined; propsOptions: NormalizedProps; emitsOptions: NormalizedEmitsOptions; ... 10 more ...; emit: any; }' is not assignable to type 'ComponentInternalInstance' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the types of the target's properties.","category":1,"code":2375,"next":[{"messageText":"Types of property 'name' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type 'string | undefined' is not assignable to type 'string'.","category":1,"code":2322,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}],"canonicalHead":{"code":2375,"messageText":"Type '{ _isComponent: true; type: ComponentOptions; name: string | undefined; propsOptions: NormalizedProps; emitsOptions: NormalizedEmitsOptions; ... 10 more ...; emit: any; }' is not assignable to type 'ComponentInternalInstance' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the types of the target's properties."}}]}]}},{"start":7416,"length":5,"code":2375,"category":1,"messageText":{"messageText":"Type '{ readonly $name: string | undefined; readonly $props: Record<string, any>; readonly $state: Record<string, any>; readonly $slots: Slots; readonly $isMounted: boolean; $emit: EmitFunction; $forceUpdate(): void; $unmount(): void; $setState(partial: Record<string, any>): void; }' is not assignable to type 'ComponentPublicInstance' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the types of the target's properties.","category":1,"code":2375,"next":[{"messageText":"Types of property '$name' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type 'string | undefined' is not assignable to type 'string'.","category":1,"code":2322,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}],"canonicalHead":{"code":2375,"messageText":"Type '{ readonly $name: string | undefined; readonly $props: Record<string, any>; readonly $state: Record<string, any>; readonly $slots: Slots; readonly $isMounted: boolean; $emit: EmitFunction; $forceUpdate(): void; $unmount(): void; $setState(partial: Record<string, any>): void; }' is not assignable to type 'ComponentPublicInstance' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the types of the target's properties."}}]}]}},{"start":10414,"length":12,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'PropertyKey'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'PropertyKey'.","category":1,"code":2322}]}},{"start":10491,"length":12,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":10583,"length":12,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":11508,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":12379,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":12662,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":12788,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":13397,"length":12,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'PropertyKey'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'PropertyKey'.","category":1,"code":2322}]}},{"start":13474,"length":12,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":13566,"length":12,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":13889,"length":3,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'PropertyKey'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'PropertyKey'.","category":1,"code":2322}]}},{"start":13944,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":14010,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":14342,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":14487,"length":3,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'PropertyKey'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'PropertyKey'.","category":1,"code":2322}]}},{"start":14780,"length":3,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'PropertyKey'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'PropertyKey'.","category":1,"code":2322}]}},{"start":15272,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":15404,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":15506,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":15612,"length":3,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":15737,"length":9,"messageText":"'onCleanup' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":20431,"length":11,"messageText":"Type 'undefined' cannot be used as an index type.","category":1,"code":2538},{"start":20495,"length":24,"code":2412,"category":1,"messageText":"Type 'undefined' is not assignable to type 'Record<string, Function[]>' with 'exactOptionalPropertyTypes: true'. Consider adding 'undefined' to the type of the target."}]],[93,[{"start":215,"length":16,"messageText":"'ComponentOptions' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":1963,"length":13,"messageText":"'isPlainObject' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":4992,"length":9,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":5030,"length":12,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":5412,"length":8,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}},{"start":7792,"length":13,"messageText":"'_performEnter' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":9360,"length":13,"messageText":"'_performLeave' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":12199,"length":5,"messageText":"'props' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":12311,"length":1,"messageText":"'h' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true}]],[94,[{"start":1074,"length":11,"messageText":"'_isFunction' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":1189,"length":14,"messageText":"'_isPlainObject' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":1582,"length":12,"messageText":"'_performFLIP' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":1708,"length":4,"messageText":"Property 'rect' does not exist on type 'FLIPPosition | undefined'.","category":1,"code":2339},{"start":1723,"length":2,"messageText":"Property 'el' does not exist on type 'FLIPPosition | undefined'.","category":1,"code":2339},{"start":4367,"length":5,"messageText":"'props' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":4538,"length":1,"messageText":"'h' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true}]],[95,[{"start":1691,"length":10,"messageText":"'isFunction' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":2575,"length":10,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | RegExp | undefined' is not assignable to parameter of type 'string | RegExp | (string | RegExp)[]'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string | RegExp | (string | RegExp)[]'.","category":1,"code":2322}]}},{"start":6079,"length":5,"messageText":"'props' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":6167,"length":1,"messageText":"'h' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":12154,"length":15,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'string | undefined' is not assignable to parameter of type 'string'.","category":1,"code":2345,"next":[{"messageText":"Type 'undefined' is not assignable to type 'string'.","category":1,"code":2322}]}}]],[96,[{"start":1606,"length":14,"messageText":"'_isPlainObject' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":4217,"length":5,"messageText":"'props' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":4469,"length":1,"messageText":"'h' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true}]],[97,[{"start":4263,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type '{ error?: Error; vm?: any; info?: string; timestamp?: number; }' is not assignable to type 'ErrorEntry'.","category":1,"code":2322,"next":[{"messageText":"Property 'error' is optional in type '{ error?: Error; vm?: any; info?: string; timestamp?: number; }' but required in type 'ErrorEntry'.","category":1,"code":2327}]}}]],[98,[{"start":2616,"length":1,"messageText":"'h' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":7219,"length":5,"messageText":"'props' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":7319,"length":1,"messageText":"'h' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true}]]],"latestChangedDtsFile":"./types/index.d.ts","version":"6.0.2"}
|