@opentinyvue/vue-form-item 3.21.0 → 3.22.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/lib/index.js +1 -1
- package/lib/label-wrap.js +1 -1
- package/lib/pc.js +2 -2
- package/package.json +5 -5
- package/src/index.d.ts +4 -4
- package/src/mobile-first.vue.d.ts +3 -3
- package/src/pc.vue.d.ts +4 -4
package/lib/index.js
CHANGED
|
@@ -7,7 +7,7 @@ function _extends() {
|
|
|
7
7
|
return n;
|
|
8
8
|
}, _extends.apply(null, arguments);
|
|
9
9
|
}
|
|
10
|
-
import { defineComponent, $
|
|
10
|
+
import { defineComponent, $props, $setup, $prefix } from "@opentinyvue/vue-common";
|
|
11
11
|
import PcTemplate from "./pc.js";
|
|
12
12
|
import MobileFirstTemplate from "./mobile-first.js";
|
|
13
13
|
var template = function template2(mode) {
|
package/lib/label-wrap.js
CHANGED
|
@@ -7,7 +7,7 @@ function _extends() {
|
|
|
7
7
|
return n;
|
|
8
8
|
}, _extends.apply(null, arguments);
|
|
9
9
|
}
|
|
10
|
-
import { defineComponent, $props,
|
|
10
|
+
import { defineComponent, $props, setup as _setup, h } from "@opentinyvue/vue-common";
|
|
11
11
|
var labelWrap = defineComponent({
|
|
12
12
|
props: _extends({}, $props, {
|
|
13
13
|
isAutoWidth: Boolean,
|
package/lib/pc.js
CHANGED
|
@@ -8,8 +8,8 @@ function _extends() {
|
|
|
8
8
|
}, _extends.apply(null, arguments);
|
|
9
9
|
}
|
|
10
10
|
import { createVNode } from "vue";
|
|
11
|
-
import { defineComponent, $
|
|
12
|
-
import {
|
|
11
|
+
import { defineComponent, $props, h, isVue2, parseVnode, hooks, stringifyCssClass, deduplicateCssClass, setup as _setup, $prefix } from "@opentinyvue/vue-common";
|
|
12
|
+
import { api, renderless } from "@opentinyvue/vue-renderless/form-item/vue";
|
|
13
13
|
import LabelWrap from "./label-wrap";
|
|
14
14
|
import Tooltip from "@opentinyvue/vue-tooltip";
|
|
15
15
|
import { iconError } from "@opentinyvue/vue-icon";
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-form-item",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.22.0",
|
|
5
5
|
"description": "",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"main": "./lib/index.js",
|
|
9
9
|
"module": "./lib/index.js",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@opentinyvue/vue-common": "~3.
|
|
12
|
-
"@opentinyvue/vue-icon": "~3.
|
|
13
|
-
"@opentinyvue/vue-renderless": "~3.
|
|
14
|
-
"@opentinyvue/vue-tooltip": "~3.
|
|
11
|
+
"@opentinyvue/vue-common": "~3.22.0",
|
|
12
|
+
"@opentinyvue/vue-icon": "~3.22.0",
|
|
13
|
+
"@opentinyvue/vue-renderless": "~3.22.0",
|
|
14
|
+
"@opentinyvue/vue-tooltip": "~3.22.0"
|
|
15
15
|
},
|
|
16
16
|
"types": "index.d.ts",
|
|
17
17
|
"scripts": {
|
package/src/index.d.ts
CHANGED
|
@@ -194,13 +194,13 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
194
194
|
}>>, {
|
|
195
195
|
error: string;
|
|
196
196
|
ellipsis: boolean;
|
|
197
|
-
|
|
198
|
-
_constants: Record<string, any>;
|
|
197
|
+
required: boolean;
|
|
199
198
|
appendToBody: boolean;
|
|
199
|
+
vertical: boolean;
|
|
200
200
|
manual: boolean;
|
|
201
|
+
tiny_mode_root: boolean;
|
|
202
|
+
_constants: Record<string, any>;
|
|
201
203
|
popperOptions: Record<string, any>;
|
|
202
|
-
vertical: boolean;
|
|
203
|
-
required: boolean;
|
|
204
204
|
inlineMessage: boolean;
|
|
205
205
|
showMessage: boolean;
|
|
206
206
|
validateDisabled: boolean;
|
|
@@ -96,12 +96,12 @@ declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
|
96
96
|
tiny_theme: StringConstructor;
|
|
97
97
|
tiny_chart_theme: ObjectConstructor;
|
|
98
98
|
}>>, {
|
|
99
|
-
|
|
100
|
-
_constants: Record<string, any>;
|
|
99
|
+
required: boolean;
|
|
101
100
|
appendToBody: boolean;
|
|
102
101
|
manual: boolean;
|
|
102
|
+
tiny_mode_root: boolean;
|
|
103
|
+
_constants: Record<string, any>;
|
|
103
104
|
popperOptions: Record<string, any>;
|
|
104
|
-
required: boolean;
|
|
105
105
|
inlineMessage: string | boolean;
|
|
106
106
|
showMessage: boolean;
|
|
107
107
|
validateDisabled: boolean;
|
package/src/pc.vue.d.ts
CHANGED
|
@@ -124,13 +124,13 @@ declare const _default: hooks.DefineComponent<{
|
|
|
124
124
|
tiny_chart_theme: ObjectConstructor;
|
|
125
125
|
}>>, {
|
|
126
126
|
ellipsis: boolean;
|
|
127
|
-
|
|
128
|
-
_constants: Record<string, any>;
|
|
127
|
+
required: boolean;
|
|
129
128
|
appendToBody: boolean;
|
|
129
|
+
vertical: boolean;
|
|
130
130
|
manual: boolean;
|
|
131
|
+
tiny_mode_root: boolean;
|
|
132
|
+
_constants: Record<string, any>;
|
|
131
133
|
popperOptions: Record<string, any>;
|
|
132
|
-
vertical: boolean;
|
|
133
|
-
required: boolean;
|
|
134
134
|
inlineMessage: boolean;
|
|
135
135
|
showMessage: boolean;
|
|
136
136
|
validateDisabled: boolean;
|