@vtj/materials 0.13.8 → 0.13.10
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/assets/antdv/index.umd.js +3 -3
- package/dist/assets/charts/index.umd.js +3 -3
- package/dist/assets/element/index.umd.js +4 -4
- package/dist/assets/icons/index.umd.js +3 -3
- package/dist/assets/ui/index.umd.js +3 -3
- package/dist/assets/uni-h5/index.umd.js +3 -3
- package/dist/assets/uni-ui/index.umd.js +3 -3
- package/dist/assets/vant/index.umd.js +4 -4
- package/dist/deps/@vtj/charts/index.umd.js +3 -3
- package/dist/deps/@vtj/icons/index.umd.js +3 -3
- package/dist/deps/@vtj/ui/index.umd.js +9 -9
- package/dist/deps/@vtj/ui/style.css +1 -1
- package/dist/deps/@vtj/utils/index.umd.js +11 -11
- package/dist/deps/element-plus/index.full.min.js +14 -14
- package/dist/deps/element-plus/zh-cn.js +1 -1
- package/dist/deps/uni-app/index.umd.js +1 -1
- package/dist/deps/uni-h5/index.umd.js +4 -4
- package/dist/deps/uni-h5-vue/index.umd.js +3 -3
- package/dist/deps/uni-ui/index.umd.js +1 -1
- package/package.json +7 -7
- package/src/antdv/card.ts +0 -2
- package/src/antdv/comment.ts +0 -1
- package/src/antdv/list.ts +1 -1
- package/src/antdv/popover.ts +0 -1
- package/src/antdv/select.ts +0 -1
- package/src/antdv/tooltip.ts +0 -1
- package/src/version.ts +2 -2
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vtj/materials",
|
3
3
|
"private": false,
|
4
|
-
"version": "0.13.
|
4
|
+
"version": "0.13.10",
|
5
5
|
"type": "module",
|
6
6
|
"keywords": [
|
7
7
|
"低代码引擎",
|
@@ -33,12 +33,12 @@
|
|
33
33
|
"vant": "~4.9.10",
|
34
34
|
"vue": "~3.5.5",
|
35
35
|
"vue-router": "~4.5.0",
|
36
|
-
"@vtj/charts": "~0.13.
|
37
|
-
"@vtj/
|
38
|
-
"@vtj/
|
39
|
-
"@vtj/
|
40
|
-
"@vtj/
|
41
|
-
"@vtj/
|
36
|
+
"@vtj/charts": "~0.13.10",
|
37
|
+
"@vtj/core": "~0.13.10",
|
38
|
+
"@vtj/ui": "~0.13.10",
|
39
|
+
"@vtj/icons": "~0.13.10",
|
40
|
+
"@vtj/utils": "~0.13.10",
|
41
|
+
"@vtj/cli": "~0.12.10"
|
42
42
|
},
|
43
43
|
"files": [
|
44
44
|
"dist",
|
package/src/antdv/card.ts
CHANGED
@@ -102,7 +102,6 @@ const components: MaterialDescription[] = [
|
|
102
102
|
title: 'Default size card',
|
103
103
|
style: { width: '300px' }
|
104
104
|
},
|
105
|
-
slot: 'extra',
|
106
105
|
children: [
|
107
106
|
{
|
108
107
|
name: 'a',
|
@@ -162,7 +161,6 @@ const components: MaterialDescription[] = [
|
|
162
161
|
slots: ['avatar', 'description', 'title'],
|
163
162
|
snippet: {
|
164
163
|
props: { title: 'Europe Street beat' },
|
165
|
-
slot: 'description',
|
166
164
|
children: [
|
167
165
|
{
|
168
166
|
name: 'span',
|
package/src/antdv/comment.ts
CHANGED
package/src/antdv/list.ts
CHANGED
package/src/antdv/popover.ts
CHANGED
package/src/antdv/select.ts
CHANGED
package/src/antdv/tooltip.ts
CHANGED
@@ -126,7 +126,6 @@ const components: MaterialDescription[] = [
|
|
126
126
|
events: ['openChange', 'update:open'],
|
127
127
|
slots: ['default', 'title'],
|
128
128
|
snippet: {
|
129
|
-
slot: 'title',
|
130
129
|
children: [
|
131
130
|
{ name: 'p', slot: { name: 'title' }, children: 'prompt text' },
|
132
131
|
{ name: 'p', children: ' Tooltip will show when mouse enter.' }
|
package/src/version.ts
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
* Copyright (c) 2025, VTJ.PRO All rights reserved.
|
3
3
|
* @name @vtj/materials
|
4
4
|
* @author CHC chenhuachun1549@dingtalk.com
|
5
|
-
* @version 0.13.
|
5
|
+
* @version 0.13.10
|
6
6
|
* @license <a href="https://vtj.pro/license.html">MIT License</a>
|
7
7
|
*/
|
8
|
-
export const version = '0.13.
|
8
|
+
export const version = '0.13.10';
|