create-weapp-vite 2.0.55 → 2.0.58
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/dist/cli.js +1 -1
- package/dist/index.js +1 -1
- package/dist/{src-nL81L3Ai.js → src-hBW5b5RM.js} +2 -2
- package/package.json +1 -1
- package/templates/default/package.json +1 -1
- package/templates/lib/package.json +1 -1
- package/templates/tailwindcss/package.json +1 -1
- package/templates/tdesign/package.json +1 -1
- package/templates/vant/package.json +1 -1
- package/templates/wevu/package.json +1 -1
- package/templates/wevu/src/app.vue +7 -7
- package/templates/wevu/src/layouts/admin.vue +4 -6
- package/templates/wevu/src/layouts/default.vue +6 -6
- package/templates/wevu/src/pages/layouts/index.vue +4 -6
- package/templates/wevu-tdesign/package.json +1 -1
- package/templates/wevu-tdesign/src/app.vue +3 -3
- package/templates/wevu-tdesign/src/hooks/useDialog.ts +56 -14
- package/templates/wevu-tdesign/src/hooks/useToast.ts +42 -15
- package/templates/wevu-tdesign/src/layouts/admin.vue +4 -6
- package/templates/wevu-tdesign/src/layouts/default.vue +6 -6
- package/templates/wevu-tdesign/src/pages/ability/index.vue +2 -4
- package/templates/wevu-tdesign/src/pages/form/index.vue +0 -1
- package/templates/wevu-tdesign/src/pages/index/index.vue +2 -3
- package/templates/wevu-tdesign/src/pages/layouts/index.vue +2 -3
- package/templates/wevu-tdesign/src/pages/list/index.vue +0 -1
- package/templates/default/auto-import-components.json +0 -3
- package/templates/default/src/vite-env.d.ts +0 -1
- package/templates/lib/auto-import-components.json +0 -3
- package/templates/lib/src/vite-env.d.ts +0 -1
- package/templates/tailwindcss/auto-import-components.json +0 -3
- package/templates/tailwindcss/src/vite-env.d.ts +0 -1
- package/templates/tdesign/auto-import-components.json +0 -84
- package/templates/tdesign/src/vite-env.d.ts +0 -1
- package/templates/vant/auto-import-components.json +0 -71
- package/templates/vant/src/vite-env.d.ts +0 -1
- package/templates/wevu/auto-import-components.json +0 -4
- package/templates/wevu/src/vite-env.d.ts +0 -1
- package/templates/wevu-tdesign/auto-import-components.json +0 -84
- package/templates/wevu-tdesign/mini-program.html-data.json +0 -6784
- package/templates/wevu-tdesign/src/vite-env.d.ts +0 -1
package/dist/cli.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { n as TemplateName, t as createProject } from "./src-
|
|
1
|
+
import { n as TemplateName, t as createProject } from "./src-hBW5b5RM.js";
|
|
2
2
|
export { TemplateName, createProject };
|
|
@@ -4,10 +4,10 @@ import fs from "fs-extra";
|
|
|
4
4
|
import path from "pathe";
|
|
5
5
|
import https from "node:https";
|
|
6
6
|
//#region ../weapp-vite/package.json
|
|
7
|
-
var version$1 = "6.11.
|
|
7
|
+
var version$1 = "6.11.3";
|
|
8
8
|
//#endregion
|
|
9
9
|
//#region ../wevu/package.json
|
|
10
|
-
var version = "6.11.
|
|
10
|
+
var version = "6.11.3";
|
|
11
11
|
//#endregion
|
|
12
12
|
//#region src/enums.ts
|
|
13
13
|
let TemplateName = /* @__PURE__ */ function(TemplateName) {
|
package/package.json
CHANGED
|
@@ -24,7 +24,7 @@ const router = createRouter({
|
|
|
24
24
|
})
|
|
25
25
|
|
|
26
26
|
router.beforeEach((to, from) => {
|
|
27
|
-
|
|
27
|
+
wx.getLogManager({ level: 1 }).info('[wevu-template-router] beforeEach', {
|
|
28
28
|
to: to?.fullPath,
|
|
29
29
|
from: from.fullPath,
|
|
30
30
|
})
|
|
@@ -32,7 +32,7 @@ router.beforeEach((to, from) => {
|
|
|
32
32
|
})
|
|
33
33
|
|
|
34
34
|
router.beforeResolve((to, from) => {
|
|
35
|
-
|
|
35
|
+
wx.getLogManager({ level: 1 }).info('[wevu-template-router] beforeResolve', {
|
|
36
36
|
to: to?.fullPath,
|
|
37
37
|
from: from.fullPath,
|
|
38
38
|
})
|
|
@@ -40,7 +40,7 @@ router.beforeResolve((to, from) => {
|
|
|
40
40
|
})
|
|
41
41
|
|
|
42
42
|
router.afterEach((to, from, failure) => {
|
|
43
|
-
|
|
43
|
+
wx.getLogManager({ level: 1 }).info('[wevu-template-router] afterEach', {
|
|
44
44
|
to: to?.fullPath,
|
|
45
45
|
from: from.fullPath,
|
|
46
46
|
failureType: failure?.type,
|
|
@@ -48,7 +48,7 @@ router.afterEach((to, from, failure) => {
|
|
|
48
48
|
})
|
|
49
49
|
|
|
50
50
|
router.onError((error, context) => {
|
|
51
|
-
|
|
51
|
+
wx.getLogManager({ level: 1 }).info('[wevu-template-router] onError', {
|
|
52
52
|
error: error instanceof Error ? error.message : String(error),
|
|
53
53
|
mode: context.mode,
|
|
54
54
|
to: context.to?.fullPath,
|
|
@@ -58,15 +58,15 @@ router.onError((error, context) => {
|
|
|
58
58
|
})
|
|
59
59
|
|
|
60
60
|
onShow(() => {
|
|
61
|
-
|
|
61
|
+
wx.getLogManager({ level: 1 }).info('[weapp-vite-wevu-template] app show')
|
|
62
62
|
})
|
|
63
63
|
|
|
64
64
|
onHide(() => {
|
|
65
|
-
|
|
65
|
+
wx.getLogManager({ level: 1 }).info('[weapp-vite-wevu-template] app hide')
|
|
66
66
|
})
|
|
67
67
|
|
|
68
68
|
onLaunch(() => {
|
|
69
|
-
|
|
69
|
+
wx.getLogManager({ level: 1 }).info('[weapp-vite-wevu-template] app launch')
|
|
70
70
|
})
|
|
71
71
|
</script>
|
|
72
72
|
|
|
@@ -3,6 +3,10 @@ const props = defineProps<{
|
|
|
3
3
|
subtitle?: string
|
|
4
4
|
title?: string
|
|
5
5
|
}>()
|
|
6
|
+
|
|
7
|
+
defineComponentJson({
|
|
8
|
+
component: true,
|
|
9
|
+
})
|
|
6
10
|
</script>
|
|
7
11
|
|
|
8
12
|
<template>
|
|
@@ -67,9 +71,3 @@ const props = defineProps<{
|
|
|
67
71
|
padding-bottom: 32rpx;
|
|
68
72
|
}
|
|
69
73
|
</style>
|
|
70
|
-
|
|
71
|
-
<json>
|
|
72
|
-
{
|
|
73
|
-
"component": true
|
|
74
|
-
}
|
|
75
|
-
</json>
|
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
defineComponentJson({
|
|
3
|
+
component: true,
|
|
4
|
+
})
|
|
5
|
+
</script>
|
|
6
|
+
|
|
1
7
|
<template>
|
|
2
8
|
<view class="layout-default">
|
|
3
9
|
<slot />
|
|
@@ -9,9 +15,3 @@
|
|
|
9
15
|
min-height: 100%;
|
|
10
16
|
}
|
|
11
17
|
</style>
|
|
12
|
-
|
|
13
|
-
<json>
|
|
14
|
-
{
|
|
15
|
-
"component": true
|
|
16
|
-
}
|
|
17
|
-
</json>
|
|
@@ -45,6 +45,10 @@ function clearLayout() {
|
|
|
45
45
|
async function backHome() {
|
|
46
46
|
await router.push('/pages/index/index')
|
|
47
47
|
}
|
|
48
|
+
|
|
49
|
+
definePageJson({
|
|
50
|
+
navigationBarTitleText: '页面布局',
|
|
51
|
+
})
|
|
48
52
|
</script>
|
|
49
53
|
|
|
50
54
|
<template>
|
|
@@ -163,9 +167,3 @@ async function backHome() {
|
|
|
163
167
|
background: #dbeafe;
|
|
164
168
|
}
|
|
165
169
|
</style>
|
|
166
|
-
|
|
167
|
-
<json>
|
|
168
|
-
{
|
|
169
|
-
"navigationBarTitleText": "页面布局"
|
|
170
|
-
}
|
|
171
|
-
</json>
|
|
@@ -70,15 +70,15 @@ defineAppJson({
|
|
|
70
70
|
})
|
|
71
71
|
|
|
72
72
|
onShow(() => {
|
|
73
|
-
|
|
73
|
+
wx.getLogManager({ level: 1 }).info('[weapp-vite-wevu-template] app show')
|
|
74
74
|
})
|
|
75
75
|
|
|
76
76
|
onHide(() => {
|
|
77
|
-
|
|
77
|
+
wx.getLogManager({ level: 1 }).info('[weapp-vite-wevu-template] app hide')
|
|
78
78
|
})
|
|
79
79
|
|
|
80
80
|
onLaunch(() => {
|
|
81
|
-
|
|
81
|
+
wx.getLogManager({ level: 1 }).info('[weapp-vite-wevu-template] app launch')
|
|
82
82
|
})
|
|
83
83
|
</script>
|
|
84
84
|
|
|
@@ -2,31 +2,73 @@ import Dialog from 'tdesign-miniprogram/dialog/index'
|
|
|
2
2
|
import { getCurrentInstance } from 'wevu'
|
|
3
3
|
|
|
4
4
|
export interface DialogOptions {
|
|
5
|
+
context?: any
|
|
5
6
|
selector?: string
|
|
6
7
|
}
|
|
7
8
|
|
|
8
9
|
export interface AlertOptions {
|
|
9
|
-
|
|
10
|
+
confirmBtn?: string
|
|
10
11
|
content: string
|
|
12
|
+
context?: any
|
|
13
|
+
selector?: string
|
|
14
|
+
title: string
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface ConfirmOptions {
|
|
18
|
+
cancelBtn?: string
|
|
11
19
|
confirmBtn?: string
|
|
20
|
+
content: string
|
|
21
|
+
context?: any
|
|
22
|
+
selector?: string
|
|
23
|
+
title: string
|
|
12
24
|
}
|
|
13
25
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
26
|
+
function resolveDialogContext(context?: any) {
|
|
27
|
+
return context ?? getCurrentInstance()
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export function alertDialog(payload: AlertOptions) {
|
|
31
|
+
const context = resolveDialogContext(payload.context)
|
|
32
|
+
if (!context) {
|
|
33
|
+
return
|
|
34
|
+
}
|
|
35
|
+
const { selector = '#t-dialog', ...rest } = payload
|
|
36
|
+
return Dialog.alert({
|
|
37
|
+
selector,
|
|
38
|
+
context: context as any,
|
|
39
|
+
...rest,
|
|
40
|
+
})
|
|
41
|
+
}
|
|
17
42
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
Dialog.alert({
|
|
23
|
-
selector,
|
|
24
|
-
context: mpContext as any,
|
|
25
|
-
...payload,
|
|
26
|
-
})
|
|
43
|
+
export function confirmDialog(payload: ConfirmOptions) {
|
|
44
|
+
const context = resolveDialogContext(payload.context)
|
|
45
|
+
if (!context) {
|
|
46
|
+
return
|
|
27
47
|
}
|
|
48
|
+
const { selector = '#t-dialog', ...rest } = payload
|
|
49
|
+
return Dialog.confirm({
|
|
50
|
+
selector,
|
|
51
|
+
context: context as any,
|
|
52
|
+
...rest,
|
|
53
|
+
})
|
|
54
|
+
}
|
|
28
55
|
|
|
56
|
+
export function useDialog(options: DialogOptions = {}) {
|
|
57
|
+
const context = options.context ?? getCurrentInstance()
|
|
29
58
|
return {
|
|
30
|
-
alert
|
|
59
|
+
alert(payload: AlertOptions) {
|
|
60
|
+
return alertDialog({
|
|
61
|
+
...payload,
|
|
62
|
+
context: payload.context ?? context,
|
|
63
|
+
selector: payload.selector ?? options.selector,
|
|
64
|
+
})
|
|
65
|
+
},
|
|
66
|
+
confirm(payload: ConfirmOptions) {
|
|
67
|
+
return confirmDialog({
|
|
68
|
+
...payload,
|
|
69
|
+
context: payload.context ?? context,
|
|
70
|
+
selector: payload.selector ?? options.selector,
|
|
71
|
+
})
|
|
72
|
+
},
|
|
31
73
|
}
|
|
32
74
|
}
|
|
@@ -3,32 +3,59 @@ import { getCurrentInstance } from 'wevu'
|
|
|
3
3
|
|
|
4
4
|
export type ToastTheme = 'success' | 'warning' | 'error' | 'default' | 'loading'
|
|
5
5
|
|
|
6
|
+
export interface ShowToastPayload {
|
|
7
|
+
context?: any
|
|
8
|
+
duration?: number
|
|
9
|
+
icon?: string
|
|
10
|
+
message?: string
|
|
11
|
+
placement?: string
|
|
12
|
+
selector?: string
|
|
13
|
+
theme?: ToastTheme
|
|
14
|
+
title?: string
|
|
15
|
+
}
|
|
16
|
+
|
|
6
17
|
export interface ToastOptions {
|
|
7
18
|
selector?: string
|
|
8
19
|
duration?: number
|
|
9
20
|
theme?: ToastTheme
|
|
10
21
|
}
|
|
11
22
|
|
|
12
|
-
export function
|
|
23
|
+
export function showToast(payload: string | ShowToastPayload, theme?: ToastTheme) {
|
|
13
24
|
const mpContext = getCurrentInstance()
|
|
25
|
+
const normalized = typeof payload === 'string'
|
|
26
|
+
? { message: payload, theme }
|
|
27
|
+
: payload
|
|
28
|
+
|
|
29
|
+
const context = normalized.context ?? mpContext
|
|
30
|
+
if (!context) {
|
|
31
|
+
return
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
const { selector = '#t-toast', theme: nextTheme, title, message, ...rest } = normalized
|
|
35
|
+
Toast({
|
|
36
|
+
selector,
|
|
37
|
+
context: context as any,
|
|
38
|
+
message: message ?? title ?? '',
|
|
39
|
+
...rest,
|
|
40
|
+
...(nextTheme && nextTheme !== 'default' ? { theme: nextTheme } : {}),
|
|
41
|
+
} as any)
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export function useToast(options: ToastOptions = {}) {
|
|
45
|
+
const context = getCurrentInstance()
|
|
14
46
|
const selector = options.selector ?? '#t-toast'
|
|
15
47
|
const duration = options.duration ?? 1200
|
|
16
48
|
const defaultTheme = options.theme ?? 'success'
|
|
17
49
|
|
|
18
|
-
function showToast(message: string, theme: ToastTheme = defaultTheme) {
|
|
19
|
-
if (!mpContext) {
|
|
20
|
-
return
|
|
21
|
-
}
|
|
22
|
-
Toast({
|
|
23
|
-
selector,
|
|
24
|
-
context: mpContext as any,
|
|
25
|
-
message,
|
|
26
|
-
...(theme === 'default' ? {} : { theme }),
|
|
27
|
-
duration,
|
|
28
|
-
})
|
|
29
|
-
}
|
|
30
|
-
|
|
31
50
|
return {
|
|
32
|
-
showToast,
|
|
51
|
+
showToast(message: string, theme: ToastTheme = defaultTheme) {
|
|
52
|
+
return showToast({
|
|
53
|
+
context,
|
|
54
|
+
selector,
|
|
55
|
+
message,
|
|
56
|
+
duration,
|
|
57
|
+
...(theme === 'default' ? {} : { theme }),
|
|
58
|
+
})
|
|
59
|
+
},
|
|
33
60
|
}
|
|
34
61
|
}
|
|
@@ -3,6 +3,10 @@ const props = defineProps<{
|
|
|
3
3
|
subtitle?: string
|
|
4
4
|
title?: string
|
|
5
5
|
}>()
|
|
6
|
+
|
|
7
|
+
defineComponentJson({
|
|
8
|
+
component: true,
|
|
9
|
+
})
|
|
6
10
|
</script>
|
|
7
11
|
|
|
8
12
|
<template>
|
|
@@ -29,9 +33,3 @@ const props = defineProps<{
|
|
|
29
33
|
min-height: 100%;
|
|
30
34
|
}
|
|
31
35
|
</style>
|
|
32
|
-
|
|
33
|
-
<json>
|
|
34
|
-
{
|
|
35
|
-
"component": true
|
|
36
|
-
}
|
|
37
|
-
</json>
|
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
defineComponentJson({
|
|
3
|
+
component: true,
|
|
4
|
+
})
|
|
5
|
+
</script>
|
|
6
|
+
|
|
1
7
|
<template>
|
|
2
8
|
<view class="layout-default">
|
|
3
9
|
<slot />
|
|
@@ -9,9 +15,3 @@
|
|
|
9
15
|
min-height: 100%;
|
|
10
16
|
}
|
|
11
17
|
</style>
|
|
12
|
-
|
|
13
|
-
<json>
|
|
14
|
-
{
|
|
15
|
-
"component": true
|
|
16
|
-
}
|
|
17
|
-
</json>
|
|
@@ -43,8 +43,7 @@ const capabilityCards = ref([
|
|
|
43
43
|
|
|
44
44
|
const subscribeTemplateId = ''
|
|
45
45
|
|
|
46
|
-
function handleCapability(key: string
|
|
47
|
-
console.log('handleCapability', key, what)
|
|
46
|
+
function handleCapability(key: string) {
|
|
48
47
|
switch (key) {
|
|
49
48
|
case 'scan':
|
|
50
49
|
wx.scanCode({
|
|
@@ -130,7 +129,7 @@ function navigateTo(url: string) {
|
|
|
130
129
|
v-for="item in capabilityCards"
|
|
131
130
|
:key="item.key"
|
|
132
131
|
class="rounded-[18rpx] bg-[#f0f9ff] p-[16rpx]"
|
|
133
|
-
@tap="handleCapability(item.key
|
|
132
|
+
@tap="handleCapability(item.key)"
|
|
134
133
|
>
|
|
135
134
|
<text class="text-[24rpx] font-semibold text-[#1f1a3f]">
|
|
136
135
|
{{ item.title }}
|
|
@@ -157,7 +156,6 @@ function navigateTo(url: string) {
|
|
|
157
156
|
</t-cell-group>
|
|
158
157
|
</view>
|
|
159
158
|
</view>
|
|
160
|
-
|
|
161
159
|
<t-toast id="t-toast" />
|
|
162
160
|
<t-dialog id="t-dialog" />
|
|
163
161
|
</view>
|
|
@@ -151,13 +151,13 @@ watch(refreshSeed, () => {
|
|
|
151
151
|
lastUpdated.value = `更新于 ${new Date().toLocaleTimeString()}`
|
|
152
152
|
})
|
|
153
153
|
|
|
154
|
-
usePullDownRefresh(refreshDashboard)
|
|
155
|
-
|
|
156
154
|
function refreshDashboard() {
|
|
157
155
|
refreshSeed.value = Math.max(1, Math.floor(Math.random() * 9))
|
|
158
156
|
showToast('指标已刷新')
|
|
159
157
|
}
|
|
160
158
|
|
|
159
|
+
usePullDownRefresh(refreshDashboard)
|
|
160
|
+
|
|
161
161
|
function onQuickAction(action: QuickActionItem) {
|
|
162
162
|
if (!action.path) {
|
|
163
163
|
showToast('该入口暂未配置')
|
|
@@ -313,7 +313,6 @@ function onQuickAction(action: QuickActionItem) {
|
|
|
313
313
|
</t-cell-group>
|
|
314
314
|
</view>
|
|
315
315
|
</view>
|
|
316
|
-
|
|
317
316
|
<t-toast id="t-toast" />
|
|
318
317
|
</view>
|
|
319
318
|
</template>
|
|
@@ -82,15 +82,14 @@ function clearLayout() {
|
|
|
82
82
|
<t-button block theme="primary" @tap="applyDefaultLayout">
|
|
83
83
|
使用 default 布局
|
|
84
84
|
</t-button>
|
|
85
|
-
<t-button block theme="
|
|
85
|
+
<t-button block theme="primary" variant="outline" @tap="applyAdminLayout">
|
|
86
86
|
切到 admin 布局
|
|
87
87
|
</t-button>
|
|
88
|
-
<t-button block theme="
|
|
88
|
+
<t-button block theme="danger" variant="outline" @tap="clearLayout">
|
|
89
89
|
关闭布局
|
|
90
90
|
</t-button>
|
|
91
91
|
</view>
|
|
92
92
|
</view>
|
|
93
|
-
|
|
94
93
|
<t-toast id="t-toast" />
|
|
95
94
|
</view>
|
|
96
95
|
</template>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/// <reference types="weapp-vite/client" />
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/// <reference types="weapp-vite/client" />
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/// <reference types="weapp-vite/client" />
|
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"t-action-sheet": "tdesign-miniprogram/action-sheet/action-sheet",
|
|
3
|
-
"t-avatar": "tdesign-miniprogram/avatar/avatar",
|
|
4
|
-
"t-avatar-group": "tdesign-miniprogram/avatar-group/avatar-group",
|
|
5
|
-
"t-back-top": "tdesign-miniprogram/back-top/back-top",
|
|
6
|
-
"t-badge": "tdesign-miniprogram/badge/badge",
|
|
7
|
-
"t-button": "tdesign-miniprogram/button/button",
|
|
8
|
-
"t-calendar": "tdesign-miniprogram/calendar/calendar",
|
|
9
|
-
"t-cascader": "tdesign-miniprogram/cascader/cascader",
|
|
10
|
-
"t-cell": "tdesign-miniprogram/cell/cell",
|
|
11
|
-
"t-cell-group": "tdesign-miniprogram/cell-group/cell-group",
|
|
12
|
-
"t-check-tag": "tdesign-miniprogram/check-tag/check-tag",
|
|
13
|
-
"t-checkbox": "tdesign-miniprogram/checkbox/checkbox",
|
|
14
|
-
"t-checkbox-group": "tdesign-miniprogram/checkbox-group/checkbox-group",
|
|
15
|
-
"t-col": "tdesign-miniprogram/col/col",
|
|
16
|
-
"t-collapse": "tdesign-miniprogram/collapse/collapse",
|
|
17
|
-
"t-collapse-panel": "tdesign-miniprogram/collapse-panel/collapse-panel",
|
|
18
|
-
"t-color-picker": "tdesign-miniprogram/color-picker/color-picker",
|
|
19
|
-
"t-count-down": "tdesign-miniprogram/count-down/count-down",
|
|
20
|
-
"t-date-time-picker": "tdesign-miniprogram/date-time-picker/date-time-picker",
|
|
21
|
-
"t-dialog": "tdesign-miniprogram/dialog/dialog",
|
|
22
|
-
"t-divider": "tdesign-miniprogram/divider/divider",
|
|
23
|
-
"t-drawer": "tdesign-miniprogram/drawer/drawer",
|
|
24
|
-
"t-dropdown-item": "tdesign-miniprogram/dropdown-item/dropdown-item",
|
|
25
|
-
"t-dropdown-menu": "tdesign-miniprogram/dropdown-menu/dropdown-menu",
|
|
26
|
-
"t-empty": "tdesign-miniprogram/empty/empty",
|
|
27
|
-
"t-fab": "tdesign-miniprogram/fab/fab",
|
|
28
|
-
"t-footer": "tdesign-miniprogram/footer/footer",
|
|
29
|
-
"t-form": "tdesign-miniprogram/form/form",
|
|
30
|
-
"t-form-item": "tdesign-miniprogram/form-item/form-item",
|
|
31
|
-
"t-grid": "tdesign-miniprogram/grid/grid",
|
|
32
|
-
"t-grid-item": "tdesign-miniprogram/grid-item/grid-item",
|
|
33
|
-
"t-guide": "tdesign-miniprogram/guide/guide",
|
|
34
|
-
"t-icon": "tdesign-miniprogram/icon/icon",
|
|
35
|
-
"t-image": "tdesign-miniprogram/image/image",
|
|
36
|
-
"t-image-viewer": "tdesign-miniprogram/image-viewer/image-viewer",
|
|
37
|
-
"t-indexes": "tdesign-miniprogram/indexes/indexes",
|
|
38
|
-
"t-indexes-anchor": "tdesign-miniprogram/indexes-anchor/indexes-anchor",
|
|
39
|
-
"t-input": "tdesign-miniprogram/input/input",
|
|
40
|
-
"t-link": "tdesign-miniprogram/link/link",
|
|
41
|
-
"t-loading": "tdesign-miniprogram/loading/loading",
|
|
42
|
-
"t-message": "tdesign-miniprogram/message/message",
|
|
43
|
-
"t-message-item": "tdesign-miniprogram/message-item/message-item",
|
|
44
|
-
"t-navbar": "tdesign-miniprogram/navbar/navbar",
|
|
45
|
-
"t-notice-bar": "tdesign-miniprogram/notice-bar/notice-bar",
|
|
46
|
-
"t-overlay": "tdesign-miniprogram/overlay/overlay",
|
|
47
|
-
"t-picker": "tdesign-miniprogram/picker/picker",
|
|
48
|
-
"t-picker-item": "tdesign-miniprogram/picker-item/picker-item",
|
|
49
|
-
"t-popover": "tdesign-miniprogram/popover/popover",
|
|
50
|
-
"t-popup": "tdesign-miniprogram/popup/popup",
|
|
51
|
-
"t-progress": "tdesign-miniprogram/progress/progress",
|
|
52
|
-
"t-pull-down-refresh": "tdesign-miniprogram/pull-down-refresh/pull-down-refresh",
|
|
53
|
-
"t-qrcode": "tdesign-miniprogram/qrcode/qrcode",
|
|
54
|
-
"t-radio": "tdesign-miniprogram/radio/radio",
|
|
55
|
-
"t-radio-group": "tdesign-miniprogram/radio-group/radio-group",
|
|
56
|
-
"t-rate": "tdesign-miniprogram/rate/rate",
|
|
57
|
-
"t-result": "tdesign-miniprogram/result/result",
|
|
58
|
-
"t-row": "tdesign-miniprogram/row/row",
|
|
59
|
-
"t-scroll-view": "tdesign-miniprogram/scroll-view/scroll-view",
|
|
60
|
-
"t-search": "tdesign-miniprogram/search/search",
|
|
61
|
-
"t-side-bar": "tdesign-miniprogram/side-bar/side-bar",
|
|
62
|
-
"t-side-bar-item": "tdesign-miniprogram/side-bar-item/side-bar-item",
|
|
63
|
-
"t-skeleton": "tdesign-miniprogram/skeleton/skeleton",
|
|
64
|
-
"t-slider": "tdesign-miniprogram/slider/slider",
|
|
65
|
-
"t-step-item": "tdesign-miniprogram/step-item/step-item",
|
|
66
|
-
"t-stepper": "tdesign-miniprogram/stepper/stepper",
|
|
67
|
-
"t-steps": "tdesign-miniprogram/steps/steps",
|
|
68
|
-
"t-sticky": "tdesign-miniprogram/sticky/sticky",
|
|
69
|
-
"t-swipe-cell": "tdesign-miniprogram/swipe-cell/swipe-cell",
|
|
70
|
-
"t-swiper": "tdesign-miniprogram/swiper/swiper",
|
|
71
|
-
"t-swiper-nav": "tdesign-miniprogram/swiper-nav/swiper-nav",
|
|
72
|
-
"t-switch": "tdesign-miniprogram/switch/switch",
|
|
73
|
-
"t-tab-bar": "tdesign-miniprogram/tab-bar/tab-bar",
|
|
74
|
-
"t-tab-bar-item": "tdesign-miniprogram/tab-bar-item/tab-bar-item",
|
|
75
|
-
"t-tab-panel": "tdesign-miniprogram/tab-panel/tab-panel",
|
|
76
|
-
"t-tabs": "tdesign-miniprogram/tabs/tabs",
|
|
77
|
-
"t-tag": "tdesign-miniprogram/tag/tag",
|
|
78
|
-
"t-textarea": "tdesign-miniprogram/textarea/textarea",
|
|
79
|
-
"t-toast": "tdesign-miniprogram/toast/toast",
|
|
80
|
-
"t-transition": "tdesign-miniprogram/transition/transition",
|
|
81
|
-
"t-tree-select": "tdesign-miniprogram/tree-select/tree-select",
|
|
82
|
-
"t-upload": "tdesign-miniprogram/upload/upload",
|
|
83
|
-
"t-watermark": "tdesign-miniprogram/watermark/watermark"
|
|
84
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/// <reference types="weapp-vite/client" />
|