@vtj/materials 0.9.21 → 0.9.23

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vtj/materials",
3
3
  "private": false,
4
- "version": "0.9.21",
4
+ "version": "0.9.23",
5
5
  "type": "module",
6
6
  "devDependencies": {
7
7
  "@vueuse/core": "~12.2.0",
@@ -11,11 +11,11 @@
11
11
  "vant": "~4.9.10",
12
12
  "vue": "~3.5.5",
13
13
  "vue-router": "~4.5.0",
14
- "@vtj/charts": "~0.9.21",
15
- "@vtj/core": "~0.9.21",
16
- "@vtj/ui": "~0.9.21",
14
+ "@vtj/charts": "~0.9.23",
15
+ "@vtj/core": "~0.9.23",
16
+ "@vtj/ui": "~0.9.23",
17
17
  "@vtj/cli": "~0.9.8",
18
- "@vtj/utils": "~0.9.21"
18
+ "@vtj/utils": "~0.9.23"
19
19
  },
20
20
  "files": [
21
21
  "dist",
@@ -133,6 +133,9 @@ const components: MaterialDescription = {
133
133
  },
134
134
  {
135
135
  name: 'close-auto-focus'
136
+ },
137
+ {
138
+ name: 'update:modelValue'
136
139
  }
137
140
  ],
138
141
  slots: [
@@ -88,11 +88,6 @@ const Mention: MaterialDescription = {
88
88
  options: ['text', 'textarea'],
89
89
  setters: ['SelectSetter', 'InputSetter']
90
90
  },
91
- {
92
- name: 'modelValue',
93
- defaultValue: '',
94
- setters: ['InputSetter', 'NumberSetter']
95
- },
96
91
  {
97
92
  name: 'maxlength',
98
93
  defaultValue: '',
@@ -25,6 +25,11 @@ const Segmented: MaterialDescription[] = [
25
25
  options: ['', 'large', 'default', 'small'],
26
26
  setters: 'SelectSetter'
27
27
  },
28
+ {
29
+ name: 'block',
30
+ defaultValue: false,
31
+ setters: 'BooleanSetter'
32
+ },
28
33
  {
29
34
  name: 'disabled',
30
35
  defaultValue: false,
@@ -3,7 +3,7 @@ import type { MaterialDescription } from '@vtj/core';
3
3
  const Tabs: MaterialDescription[] = [
4
4
  {
5
5
  name: 'ElTabs',
6
- childIncludes: ['ElTabPane'],
6
+ // childIncludes: ['ElTabPane'],
7
7
  label: '标签页',
8
8
 
9
9
  doc: 'https://element-plus.org/zh-CN/component/tabs.html',
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.9.21
5
+ * @version 0.9.23
6
6
  * @license <a href="https://vtj.pro/license.html">MIT License</a>
7
7
  */
8
- export const version = '0.9.21';
8
+ export const version = '0.9.23';