actview 1.0.26 → 1.0.28
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 +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +40 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -41,7 +41,7 @@ createApp(<App />).mount('#app')
|
|
|
41
41
|
| 组件 | `defineComponent` |
|
|
42
42
|
| 响应式 | `reactive` / `shallowReactive` / `readonly` / `markRaw` / `ref` / `isRef` / `unref` / `toRef` / `toRefs` / `computed` / `watch` / `watchEffect` / `nextTick` |
|
|
43
43
|
| 生命周期 | `onMounted` / `onUpdated` / `onBeforeUnmount` / `onUnmounted` |
|
|
44
|
-
| 依赖注入 | `provide` / `
|
|
44
|
+
| 依赖注入 | `provide` / `useInjects` |
|
|
45
45
|
| 内置组件 | `Teleport` / `Transition` / `KeepAlive` / `ErrorBoundary` / `Suspense` / `lazy` |
|
|
46
46
|
| SSR / 其他 | `renderToString` / `getCurrentScope` |
|
|
47
47
|
| 类型 | `App` / `SetupContext` / `ComponentOptions` |
|
package/dist/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { App, ComponentOptions, ErrorBoundary, KeepAlive, SetupContext, Suspense, Teleport, Transition, computed, createApp, defineComponent, getCurrentScope, isRef, lazy, markRaw, nextTick, onBeforeUnmount, onMounted, onUnmounted, onUpdated, provide, reactive, readonly, ref, renderToString, shallowReactive, toRef, toRefs,
|
|
1
|
+
export { App, ComponentOptions, ErrorBoundary, KeepAlive, SetupContext, Suspense, Teleport, Transition, TransitionGroup, computed, createApp, defineComponent, effectScope, getCurrentScope, isProxy, isReactive, isReadonly, isRef, isShallow, lazy, markRaw, nextTick, onActivated, onBeforeMount, onBeforeUnmount, onDeactivated, onErrorCaptured, onMounted, onRenderTracked, onRenderTriggered, onScopeDispose, onServerPrefetch, onUnmounted, onUpdated, onWatcherCleanup, provide, reactive, readonly, ref, renderToString, shallowReactive, shallowReadonly, shallowRef, toRaw, toRef, toRefs, toValue, triggerRef, unref, useInjects, watch, watchEffect } from '@actview/core';
|
package/dist/index.js
CHANGED
|
@@ -5,26 +5,45 @@ import {
|
|
|
5
5
|
reactive,
|
|
6
6
|
shallowReactive,
|
|
7
7
|
readonly,
|
|
8
|
+
shallowReadonly,
|
|
8
9
|
markRaw,
|
|
10
|
+
toRaw,
|
|
11
|
+
isReactive,
|
|
12
|
+
isReadonly,
|
|
13
|
+
isProxy,
|
|
14
|
+
isShallow,
|
|
9
15
|
nextTick,
|
|
10
16
|
computed,
|
|
11
17
|
ref,
|
|
18
|
+
shallowRef,
|
|
19
|
+
triggerRef,
|
|
12
20
|
isRef,
|
|
13
21
|
unref,
|
|
22
|
+
toValue,
|
|
14
23
|
toRef,
|
|
15
24
|
toRefs,
|
|
16
25
|
watch,
|
|
17
26
|
watchEffect,
|
|
27
|
+
onWatcherCleanup,
|
|
28
|
+
effectScope,
|
|
29
|
+
onScopeDispose,
|
|
30
|
+
onBeforeMount,
|
|
18
31
|
onMounted,
|
|
19
32
|
onUpdated,
|
|
20
33
|
onBeforeUnmount,
|
|
21
34
|
onUnmounted,
|
|
35
|
+
onActivated,
|
|
36
|
+
onDeactivated,
|
|
37
|
+
onErrorCaptured,
|
|
38
|
+
onServerPrefetch,
|
|
39
|
+
onRenderTracked,
|
|
40
|
+
onRenderTriggered,
|
|
22
41
|
provide,
|
|
23
|
-
useAttrs,
|
|
24
42
|
useInjects,
|
|
25
43
|
renderToString,
|
|
26
44
|
Teleport,
|
|
27
45
|
Transition,
|
|
46
|
+
TransitionGroup,
|
|
28
47
|
KeepAlive,
|
|
29
48
|
ErrorBoundary,
|
|
30
49
|
Suspense,
|
|
@@ -37,28 +56,47 @@ export {
|
|
|
37
56
|
Suspense,
|
|
38
57
|
Teleport,
|
|
39
58
|
Transition,
|
|
59
|
+
TransitionGroup,
|
|
40
60
|
computed,
|
|
41
61
|
createApp,
|
|
42
62
|
defineComponent,
|
|
63
|
+
effectScope,
|
|
43
64
|
getCurrentScope,
|
|
65
|
+
isProxy,
|
|
66
|
+
isReactive,
|
|
67
|
+
isReadonly,
|
|
44
68
|
isRef,
|
|
69
|
+
isShallow,
|
|
45
70
|
lazy,
|
|
46
71
|
markRaw,
|
|
47
72
|
nextTick,
|
|
73
|
+
onActivated,
|
|
74
|
+
onBeforeMount,
|
|
48
75
|
onBeforeUnmount,
|
|
76
|
+
onDeactivated,
|
|
77
|
+
onErrorCaptured,
|
|
49
78
|
onMounted,
|
|
79
|
+
onRenderTracked,
|
|
80
|
+
onRenderTriggered,
|
|
81
|
+
onScopeDispose,
|
|
82
|
+
onServerPrefetch,
|
|
50
83
|
onUnmounted,
|
|
51
84
|
onUpdated,
|
|
85
|
+
onWatcherCleanup,
|
|
52
86
|
provide,
|
|
53
87
|
reactive,
|
|
54
88
|
readonly,
|
|
55
89
|
ref,
|
|
56
90
|
renderToString,
|
|
57
91
|
shallowReactive,
|
|
92
|
+
shallowReadonly,
|
|
93
|
+
shallowRef,
|
|
94
|
+
toRaw,
|
|
58
95
|
toRef,
|
|
59
96
|
toRefs,
|
|
97
|
+
toValue,
|
|
98
|
+
triggerRef,
|
|
60
99
|
unref,
|
|
61
|
-
useAttrs,
|
|
62
100
|
useInjects,
|
|
63
101
|
watch,
|
|
64
102
|
watchEffect
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "actview",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.28",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
}
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@actview/core": "1.0.
|
|
13
|
-
"@actview/jsx": "1.0.
|
|
12
|
+
"@actview/core": "1.0.29",
|
|
13
|
+
"@actview/jsx": "1.0.15"
|
|
14
14
|
},
|
|
15
15
|
"files": [
|
|
16
16
|
"dist"
|