@lytjs/core 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 ADDED
@@ -0,0 +1,288 @@
1
+ # @lytjs/core
2
+
3
+ Lyt.js 核心入口 - 整合响应式、编译器、虚拟 DOM、渲染器和组件系统,提供完整的应用开发能力。
4
+
5
+ ## 安装
6
+
7
+ ```bash
8
+ npm install @lytjs/core
9
+
10
+ # 或使用 pnpm
11
+ pnpm add @lytjs/core
12
+ ```
13
+
14
+ ## 特性
15
+
16
+ - 🚀 零运行时依赖,极致轻量
17
+ - 🎨 所见即代码,无 `v-` 前缀的模板语法
18
+ - 🔄 完整的 Composition API
19
+ - 📦 内置组件系统、插槽、KeepAlive、Suspense
20
+ - 🌐 Web Component 支持
21
+ - 🔌 插件系统
22
+
23
+ ## 快速开始
24
+
25
+ ### 创建应用
26
+
27
+ ```javascript
28
+ import { createApp, defineComponent, h } from '@lytjs/core';
29
+
30
+ const App = defineComponent({
31
+ setup() {
32
+ return { count: 0 };
33
+ },
34
+ render() {
35
+ return h('div', [
36
+ h('h1', `Count: ${this.count}`),
37
+ h('button', {
38
+ onClick: () => this.count++
39
+ }, 'Increment')
40
+ ]);
41
+ }
42
+ });
43
+
44
+ const app = createApp(App);
45
+ app.mount('#app');
46
+ ```
47
+
48
+ ### 使用模板
49
+
50
+ ```javascript
51
+ import { createApp, defineComponent } from '@lytjs/core';
52
+
53
+ const App = defineComponent({
54
+ setup() {
55
+ return { count: 0 };
56
+ },
57
+ template: `
58
+ <div>
59
+ <h1>Count: {{ count }}</h1>
60
+ <button @click="count++">Increment</button>
61
+ </div>
62
+ `
63
+ });
64
+
65
+ const app = createApp(App);
66
+ app.mount('#app');
67
+ ```
68
+
69
+ ### 使用插件
70
+
71
+ ```javascript
72
+ import { createApp, defineComponent } from '@lytjs/core';
73
+
74
+ const myPlugin = {
75
+ install(app, options) {
76
+ app.config.globalProperties.$hello = 'Hello from plugin!';
77
+ }
78
+ };
79
+
80
+ const app = createApp(App);
81
+ app.use(myPlugin, { someOption: true });
82
+ app.mount('#app');
83
+ ```
84
+
85
+ ### Web Component
86
+
87
+ ```javascript
88
+ import { defineCustomElement, defineComponent } from '@lytjs/core';
89
+
90
+ const MyComponent = defineComponent({
91
+ props: ['name'],
92
+ template: `<div>Hello, {{ name }}!</div>`
93
+ });
94
+
95
+ customElements.define('my-component', defineCustomElement(MyComponent));
96
+ ```
97
+
98
+ ## API 参考
99
+
100
+ ### 应用 API
101
+
102
+ | API | 说明 |
103
+ |------|------|
104
+ | `createApp(rootComponent, rootProps)` | 创建应用实例 |
105
+ | `createSSRApp(rootComponent, rootProps)` | 创建 SSR 应用实例 |
106
+
107
+ ### 应用实例
108
+
109
+ | API | 说明 |
110
+ |------|------|
111
+ | `app.mount(container)` | 挂载应用到 DOM 容器 |
112
+ | `app.unmount()` | 卸载应用 |
113
+ | `app.use(plugin, options)` | 安装插件 |
114
+ | `app.component(name, component)` | 注册全局组件 |
115
+ | `app.directive(name, directive)` | 注册全局指令 |
116
+ | `app.provide(key, value)` | 全局提供值 |
117
+ | `app.config` | 应用配置对象 |
118
+
119
+ ### 组件定义
120
+
121
+ | API | 说明 |
122
+ |------|------|
123
+ | `defineComponent(options)` | 定义组件 |
124
+ | `defineAsyncComponent(loader)` | 定义异步组件 |
125
+ | `resolveComponent(name)` | 解析组件 |
126
+
127
+ ### 渲染 API
128
+
129
+ | API | 说明 |
130
+ |------|------|
131
+ | `h(type, props, children)` | 创建虚拟节点 |
132
+ | `render(vnode, container)` | 渲染虚拟节点 |
133
+
134
+ ### 依赖注入
135
+
136
+ | API | 说明 |
137
+ |------|------|
138
+ | `provide(key, value)` | 提供值给后代组件 |
139
+ | `inject(key, defaultValue)` | 注入祖先组件提供的值 |
140
+
141
+ ### 内置组件
142
+
143
+ | 组件 | 说明 |
144
+ |------|------|
145
+ | `KeepAlive` | 缓存失活组件实例 |
146
+ | `Teleport` | 将内容渲染到指定 DOM 位置 |
147
+ | `Transition` | 单个元素/组件的过渡动画 |
148
+ | `TransitionGroup` | 列表的过渡动画 |
149
+ | `Suspense` | 等待异步依赖 |
150
+
151
+ ## 模板语法
152
+
153
+ Lyt.js 的模板语法与原生 HTML 更接近,去掉了 `v-` 前缀:
154
+
155
+ ### 插值
156
+
157
+ ```html
158
+ <span>Text: {{ message }}</span>
159
+ ```
160
+
161
+ ### 指令
162
+
163
+ ```html
164
+ <!-- 条件渲染 -->
165
+ <div if="visible">显示</div>
166
+ <div else-if="pending">加载中...</div>
167
+ <div else>隐藏</div>
168
+
169
+ <!-- 列表渲染 -->
170
+ <ul>
171
+ <li each="(item, index) in items" :key="item.id">
172
+ {{ index }}: {{ item.text }}
173
+ </li>
174
+ </ul>
175
+
176
+ <!-- 事件绑定 -->
177
+ <button @click="handleClick">点击</button>
178
+ <input @input="handleInput" />
179
+
180
+ <!-- 属性绑定 -->
181
+ <img :src="imageUrl" :alt="altText" />
182
+ <div :class="{ active: isActive }"></div>
183
+ ```
184
+
185
+ ## 组件生命周期
186
+
187
+ ```javascript
188
+ import { defineComponent, onMounted, onUpdated, onUnmounted } from '@lytjs/core';
189
+
190
+ const MyComponent = defineComponent({
191
+ setup() {
192
+ onMounted(() => {
193
+ console.log('组件已挂载');
194
+ });
195
+
196
+ onUpdated(() => {
197
+ console.log('组件已更新');
198
+ });
199
+
200
+ onUnmounted(() => {
201
+ console.log('组件已卸载');
202
+ });
203
+
204
+ return {};
205
+ }
206
+ });
207
+ ```
208
+
209
+ | 生命周期 | 说明 |
210
+ |----------|------|
211
+ | `onBeforeMount` | 组件挂载前 |
212
+ | `onMounted` | 组件挂载后 |
213
+ | `onBeforeUpdate` | 组件更新前 |
214
+ | `onUpdated` | 组件更新后 |
215
+ | `onBeforeUnmount` | 组件卸载前 |
216
+ | `onUnmounted` | 组件卸载后 |
217
+
218
+ ## 示例
219
+
220
+ ### Todo List
221
+
222
+ ```javascript
223
+ import { createApp, defineComponent, ref } from '@lytjs/core';
224
+
225
+ const App = defineComponent({
226
+ setup() {
227
+ const todos = ref([{ id: 1, text: 'Learn Lyt.js', done: false }]);
228
+ const newTodo = ref('');
229
+
230
+ function addTodo() {
231
+ if (newTodo.value.trim()) {
232
+ todos.value.push({
233
+ id: Date.now(),
234
+ text: newTodo.value,
235
+ done: false
236
+ });
237
+ newTodo.value = '';
238
+ }
239
+ }
240
+
241
+ function toggleTodo(todo) {
242
+ todo.done = !todo.done;
243
+ }
244
+
245
+ return { todos, newTodo, addTodo, toggleTodo };
246
+ },
247
+ template: `
248
+ <div>
249
+ <h1>Todo List</h1>
250
+ <div>
251
+ <input v-model="newTodo" @keyup.enter="addTodo" />
252
+ <button @click="addTodo">Add</button>
253
+ </div>
254
+ <ul>
255
+ <li
256
+ each="todo in todos"
257
+ :key="todo.id"
258
+ :class="{ done: todo.done }"
259
+ @click="toggleTodo(todo)"
260
+ >
261
+ {{ todo.text }}
262
+ </li>
263
+ </ul>
264
+ </div>
265
+ `
266
+ });
267
+
268
+ createApp(App).mount('#app');
269
+ ```
270
+
271
+ ## 性能
272
+
273
+ - 核心体积:2.13 KB (ESM gzip)
274
+ - 零运行时依赖
275
+ - Block Tree 虚拟 DOM 优化
276
+ - Patch Flag 差异化更新
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/core",
3
- "version": "4.1.0",
3
+ "version": "4.2.0",
4
4
  "description": "Lyt.js 核心入口 - 整合响应式、编译器、虚拟 DOM、渲染器和组件系统",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",
@@ -61,12 +61,12 @@
61
61
  "createApp"
62
62
  ],
63
63
  "dependencies": {
64
- "@lytjs/common": "^4.1.0",
65
- "@lytjs/reactivity": "^4.1.0",
66
- "@lytjs/compiler": "^4.1.0",
67
- "@lytjs/vdom": "^4.1.0",
68
- "@lytjs/renderer": "^4.1.0",
69
- "@lytjs/component": "^4.1.0"
64
+ "@lytjs/common": "^4.2.0",
65
+ "@lytjs/reactivity": "^4.2.0",
66
+ "@lytjs/compiler": "^4.2.0",
67
+ "@lytjs/vdom": "^4.2.0",
68
+ "@lytjs/renderer": "^4.2.0",
69
+ "@lytjs/component": "^4.2.0"
70
70
  },
71
71
  "engines": {
72
72
  "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","../../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/h.ts","../src/plugin.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","../../compiler/dist/types/ast/nodes.d.ts","../../compiler/dist/types/parser/html-parser.d.ts","../../compiler/dist/types/transform/transform.d.ts","../../compiler/dist/types/transform/optimize.d.ts","../../compiler/dist/types/patch-flags.d.ts","../../compiler/dist/types/codegen/codegen.d.ts","../../compiler/dist/types/sfc/parse-sfc.d.ts","../../compiler/dist/types/sfc/compile-sfc.d.ts","../../compiler/dist/types/sfc/index.d.ts","../../compiler/dist/types/index.d.ts","../../component/dist/types/signal-state.d.ts","../../component/dist/types/props.d.ts","../../component/dist/types/emit.d.ts","../../component/dist/types/lifecycle.d.ts","../../component/dist/types/slots.d.ts","../../component/dist/types/composition-api.d.ts","../../component/dist/types/define-component.d.ts","../../component/dist/types/index.d.ts","../../renderer/dist/types/vnode.d.ts","../../renderer/dist/types/renderer-interfaces.d.ts","../../renderer/dist/types/create-renderer.d.ts","../../renderer/dist/types/dom/dom-renderer.d.ts","../../renderer/dist/types/dom/dom-ops.d.ts","../../renderer/dist/types/dom/patch-props.d.ts","../../renderer/dist/types/dom/patch-events.d.ts","../../renderer/dist/types/index.d.ts","../src/create-app.ts","../src/lyt-error.ts","../src/warn.ts","../src/dev-error.ts","../src/error-codes.ts","../src/error-handling.ts","../src/error-entry.ts","../src/index.ts","../src/plugin-entry.ts","../src/shared-entry.ts","../src/web-component.ts","../src/web-component-entry.ts"],"fileIdsList":[[64,65,66,67,68,69,70,71,72,73,74,75,76],[73],[88],[88,89,90,91,92,93,96],[94],[94,95],[87,98,99,100,101,102,103],[98,99,100,101,102,103,104],[85],[78,79,87,97,105,113],[115,116],[77],[115,118,119],[77,78,114],[79],[124],[121],[82],[80,81,82,83,84,85,86],[107],[106,107,108,109,110,111,112],[106]],"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},"0242b74c149e317117aa6c97acce4ad116212ebfd963ae50bcfe8bb4fa6410d2","8220087127ce86b259fdbc78efac6cf14064a970393dd72047205a559a67a4cd","a0c71b9e3689601665669b5ad5a43d6adb2310947a3ca8e63a8bea9bf0602c95","525e3e3f106504c4e62d3564c5fea77ab17d72725981f45042ce51e9f6ae0220","66558f40fbf300cbba390965583590c6e9a874c6f95f42549fe6bf10f2ec35dd","4addbf2b9b6fcad145efc10233ce211a220cbc6a35b069d0a0467dd10ec5d855","5ef34083e9d734dfc751b5a45e046219bc29d4d9b97c51b2fad58f4305b52d7f","290759e0e7e335e470cb0b8fb085232ba92bbf53e3a6d7dfdc65423a4baf644c","0db5120e2a3e67bc5892e63f1bcf4a3d933755d5ac15fb7e1c989deb34fafd61","df3112eeed1593533b757b55fba51326c3984752f79699bc3a9c919c6556e901","1e74c319ebca519283c6be7486b2f44f2bc180f4394b8191801294081169e459","5679cb7e73eb8c28182e6455e3146ec797942cdaa0b52ece0559f1997a1dc420","9555e351c5d92cadc1e3bee2ed9735874050d48f1ab0d2f9339ab6d83865566e","df0f6ffe3276b650678e05f472d35c46ef581bc2d402dcf2c3e452a8b773b7c9",{"version":"ed184145481ac609cc92f49346ec2b396dbeca767fdf4b9801a39335a5db4408","signature":"8da3bbc534c6c3b5a758c92d46029b449f5b450b693a2fadf7f3b5b8e1193dd6"},{"version":"42514c64b82ac01abe410b23d44e644a24a635330d1f3662a124fc1d50bd9d49","signature":"f2ab99ad646b9d11aa9370652f4849fa5a65b3be7b509272600eb1b729c1c92f"},"a931971a0aed3a04be8ef1ef78e4bdd05af6d408bec44f846d3a0794dda5d708","f39120ae19c79ceffa561da071bbf53b5cf418f3ad9c186e895fa55c3c42ae31","5fe944eec62fa00578c1b68dd15a46847218f15c35eca212f86caed1469108e9","1bb4fc70e4d98ca7ef67079adde1ee3bfa3b3829ae948cf2ce5b7a332430ee65","132b0d4b346da8f6d6004dc9eb4bfc09c0d292e9325aff621b2332a12973199f","ecd41394ecea0650d670ed4cdba72fac8f219fdfa1cdcbfdcdeb79413d712d15","fe965a8da8781e4e6cef466ccccd5430dc040ae5f17615301f4203434701237c","5142c441d5148e0b3d8aaa232af01166540bc049913ded34fe2065e0ebe2cf16","8b5bd5ff52710d8bcc95ad06438f124e5035f6f999e0962a625a627c6cbaa021","b672301f6213a14ee5e0ad56a3503f678c35337c6f5dbcfdd785576b289f35b5","acc796ca42aa019c1426ac1400f0ed8cf0c467a8ea153044b2338901fd660ff6","98c3feb377f4ebaf4849b0cf27890325d05f9c5563fb05010a76125c30992eca","f44da91ac3c3129ba19ee963272ed427eb761efc0c6c67ad7e45be5c5016b313","6249f7b74c8b8b2422f29c66d6aea8681f87b77f99a990bc184bd09df5235a3c","f24f1e4dde89fcad8a16d83ee41396c4c0721dbd8589031c3b8b5605052aca10","d0da22a2d67875ae317f6fbd87c7767bf38554e3884b3c3230c6f3da71dc81e0","49254b5de8510bfe5a923535338c04f12c31b315ca448180a929d54b0d0961a8","7ef365e0bf6677c95eb0f59654e08ee4c71ab9c7a57d3d11c593e16a99122198","2234975d1fcdcb753e30d293166f907c926ef9d11af56b6e1050c45bd9975908","d8719f09ad5f2c84672042d065d7a6093f1112a777846773045796d065abaef1","93c1e1ffeda376466dd6ddb1f61bd1f82ee4083349eff033a9f4cd443f2abe04","bccc98e1e0a3a3b3a992843d3b7e1a86902f0d3e40eeb7d2d36fcadf1dd96a6c","20266ce07b679d16d991e0ea49a3b8699b5ed6c6d7962d1bfed43273543bc380","0c593fcd916773a7926a4d2e8b6f8b15fd2adeeb61ecd5639569e402ba72fb43","56bfb70b6d817e80fdea255c24f956e5791e8a1e988513c5e2221c23acfbedae","282c0998963e10c93a89a53a618c76c9f34b33c3ddfe22b4b860d10f2fe07ab7","de20bc27fab21c2c5ca1341569040f132680b4ace695aebe17cf19d55d6a75dd","371b35236cadf3a5614284d37d577ac3868e422715c926c1a5d8e9b4964d3084","21a68a9b94108bb8ea13af27a7ca1010f6b4493ca4b4349c91b7a3eada0ab5b0","fdf11aa8433694f2f5e90835c7384a5056293f75d7e24353612cc1cdccd222c1","51356357dc2b282ba36e0942147a9de1d6379ece336fcc59635e1f5ebe5d7722","076fa2932000bdeb0bdc8e19478a8651c61934b7ebcecba4662cdbe2531694b7","fa8ca9d1a9c2e191d194871cf9c85ab107db82c3f921fc1613da3681a49b3b4c","84f7c054d973b7531378d0791e5e5949d39d09554d8582e1ca75847703f591fc",{"version":"b7020cbf5dff79498a0231fd5286d946160f8b228d273260ee6c4a6226e242c5","signature":"c11319ef2c0b6f387812b87ea439341b4d35f444e502ce1221943e75886a0257"},{"version":"c04f23e059dfca157b651ba3fa8dc132852a85b5c33959067f16ddf82ab14bf9","signature":"9d45c613b7e8e22346616f7aa112249d8c2691f7ee2cf8864194c20d2d9796ad"},{"version":"73456792e3c1447d08958feb5f0e2e40e82ea73f74986bf47f4c53315eecc1ef","signature":"5679cb7e73eb8c28182e6455e3146ec797942cdaa0b52ece0559f1997a1dc420"},{"version":"8af946b6cf28773c62367f7a0b3a4d2d6afac876cc8264366d6e2d2c16ee0d73","signature":"6a570db802fd6c47d92c7a101d1ddee1207f5d431de7a6035b212a976de0c10b"},{"version":"9310d79a11169e04006114c360eea91970c391d1e895ed834b4ea2a4e8edaf78","signature":"db5caaeea7406cfdda7f9abe6a83167ff460dd08ccbdb09aa602039a22749983"},{"version":"2e8c3b24d5b9caee5ea07f163ab82d9f03bb259e021c7a0030f7c9c98ed9752f","signature":"64bdd684816d475a8435b847a9099add637fcdaf293e48a658f64e02e0e7670a"},{"version":"907da4e1b0f94517f1702dc0018fafad335ddba250192718e4de9b65acb17d47","signature":"c35869ee4300019465d34280557c3eb7bd250f6219f2400e3f6400874f27b4b0"},{"version":"e21826b241d4971fa9e85f502299036af3a0f4fa8ddcb5c6e11f15a2997e4429","signature":"869cfc27f8683a60f8e816da5b0bd78916d9f010eb57c35bb013db19b0a603e8"},{"version":"5dc3f873b79be89bf09b8a4efe95266040a69b7ee80d7dbd2a19b0e4ccd6b049","signature":"011b236e9dc204546f321090e3f3a9d72aad57c0646d3f6d78a575a074a9d5aa"},{"version":"afcdcb2388e089cccd3ac59089e47e8e348e95136bc652a58371260b93a27fb8","signature":"923d93ab3b0045896da10aa39dbe304ad854398def41d24d1c77c947370ad20c"},{"version":"5f74c5d31a5f2a729a537ce1cce1c7a86ecb0b17a0661a1469bd2fcb496f217c","signature":"8f965198a23f1073cfdf04ee9f6145c4eff2dc3b2c5be331c736ff6c94917d2d"},{"version":"2f167891f59e027f453b71d47e5379832cd452eb81529d5bb06d00df27bb2b3a","signature":"f55d4ddc8b51a7e4af21e2d311261240b9bf1ab702c9255678f09af781141f9d"}],"root":[78,79,[114,125]],"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":[[77,1],[74,2],[93,3],[97,4],[89,3],[95,5],[96,6],[91,3],[90,3],[104,7],[105,8],[98,9],[114,10],[117,11],[118,12],[120,13],[78,12],[121,14],[115,12],[122,15],[79,12],[123,12],[125,16],[124,17],[83,18],[87,19],[86,9],[84,18],[108,20],[109,20],[113,21],[107,22]],"semanticDiagnosticsPerFile":[[79,[{"start":468,"length":10,"messageText":"'isFunction' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":480,"length":13,"messageText":"'isPlainObject' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true}]],[114,[{"start":701,"length":5,"messageText":"'Props' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":713,"length":8,"messageText":"'Children' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":723,"length":8,"messageText":"'Fragment' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":877,"length":8,"messageText":"'reactive' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":887,"length":8,"messageText":"'nextTick' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":1206,"length":15,"messageText":"'ComponentDefine' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":2442,"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":5614,"length":10,"messageText":"'isFunction' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":5728,"length":13,"messageText":"'isPlainObject' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":6556,"length":8,"messageText":"'instance' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":7342,"length":5,"messageText":"'state' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":14895,"length":5,"messageText":"'oldEl' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true}]],[119,[{"start":5326,"length":2,"messageText":"'vm' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":5506,"length":9,"messageText":"'lastError' is possibly 'undefined'.","category":1,"code":18048},{"start":5523,"length":9,"messageText":"'lastError' is possibly 'undefined'.","category":1,"code":18048},{"start":5537,"length":9,"messageText":"'lastError' is possibly 'undefined'.","category":1,"code":18048},{"start":5951,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type '{ error?: Error; vm?: any; info?: string; timestamp?: number; }' is not assignable to type '{ error: Error; vm: any; info: string; timestamp: number; }'.","category":1,"code":2322,"next":[{"messageText":"Property 'error' is optional in type '{ error?: Error; vm?: any; info?: string; timestamp?: number; }' but required in type '{ error: Error; vm: any; info: string; timestamp: number; }'.","category":1,"code":2327}]}}]],[124,[{"start":1995,"length":12,"messageText":"'camelToKebab' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":4450,"length":9,"messageText":"'lytEvents' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":6499,"length":4,"messageText":"'name' is declared but its value is never read.","category":1,"code":6133,"reportsUnnecessary":true},{"start":22915,"length":16,"messageText":"Object is possibly 'undefined'.","category":1,"code":2532},{"start":23055,"length":14,"messageText":"Object is possibly 'undefined'.","category":1,"code":2532}]]],"latestChangedDtsFile":"./types/web-component-entry.d.ts","version":"6.0.2"}