@opentiny/vue-renderless 3.27.0 → 3.28.1

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.
@@ -104,9 +104,45 @@ declare const datePickerProps: {
104
104
  prefixIcon: ObjectConstructor;
105
105
  clearIcon: {
106
106
  type: ObjectConstructor;
107
- default(): vue.Raw<_opentiny_vue_common.DefineComponent<{}, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
107
+ default(): vue.Raw<_opentiny_vue_common.DefineComponent<{
108
+ shape: {
109
+ type: StringConstructor;
110
+ default: string;
111
+ };
112
+ firstColor: {
113
+ type: StringConstructor;
114
+ default: string;
115
+ };
116
+ secondColor: {
117
+ type: StringConstructor;
118
+ default: string;
119
+ };
120
+ underlay: {
121
+ type: ObjectConstructor;
122
+ };
123
+ }, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
108
124
  [key: string]: any;
109
- }>, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<_opentiny_vue_common.ExtractPropTypes<{}>>, {}, {}>>;
125
+ }>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<_opentiny_vue_common.ExtractPropTypes<{
126
+ shape: {
127
+ type: StringConstructor;
128
+ default: string;
129
+ };
130
+ firstColor: {
131
+ type: StringConstructor;
132
+ default: string;
133
+ };
134
+ secondColor: {
135
+ type: StringConstructor;
136
+ default: string;
137
+ };
138
+ underlay: {
139
+ type: ObjectConstructor;
140
+ };
141
+ }>>, {
142
+ shape: string;
143
+ firstColor: string;
144
+ secondColor: string;
145
+ }, {}>>;
110
146
  };
111
147
  name: {
112
148
  default: string;
@@ -1,3 +1,3 @@
1
1
  import 'vue';
2
- export { i as IFormItemApi, f as IFormItemConstants, I as IFormItemDisplayedValueParam, k as IFormItemInstance, c as IFormItemLabelStyle, g as IFormItemProps, j as IFormItemRenderlessParamUtils, h as IFormItemRenderlessParams, d as IFormItemRule, e as IFormItemState, b as IFormItemTrigger, a as IFormItemValidateStatus } from './form.type-dd403065.js';
2
+ export { i as IFormItemApi, f as IFormItemConstants, I as IFormItemDisplayedValueParam, k as IFormItemInstance, c as IFormItemLabelStyle, g as IFormItemProps, j as IFormItemRenderlessParamUtils, h as IFormItemRenderlessParams, d as IFormItemRule, e as IFormItemState, b as IFormItemTrigger, a as IFormItemValidateStatus } from './form.type-a54e1c06.js';
3
3
  import './shared.type.js';
@@ -269,12 +269,12 @@ interface IFormItemState {
269
269
  isBasicComp: boolean;
270
270
  showTooltip: boolean;
271
271
  typeName: string;
272
- formInstance: IFormInstance;
272
+ formInstance: IFormInstance | undefined;
273
273
  labelFor: string;
274
274
  labelStyle: IFormItemLabelStyle;
275
275
  valueStyle: StyleValue;
276
276
  contentStyle: StyleValue;
277
- form: IFormInstance;
277
+ form: IFormInstance | undefined;
278
278
  fieldValue: any;
279
279
  isRequired: boolean;
280
280
  formInline: boolean | undefined;
@@ -1,3 +1,3 @@
1
1
  import 'vue';
2
- export { p as IFormApi, r as IFormInstance, n as IFormProps, q as IFormRenderlessParamUtils, o as IFormRenderlessParams, l as IFormRules, m as IFormState } from './form.type-dd403065.js';
2
+ export { p as IFormApi, r as IFormInstance, n as IFormProps, q as IFormRenderlessParamUtils, o as IFormRenderlessParams, l as IFormRules, m as IFormState } from './form.type-a54e1c06.js';
3
3
  import './shared.type.js';
@@ -142,6 +142,10 @@ declare const modalProps: {
142
142
  type: ObjectConstructor;
143
143
  default: () => {};
144
144
  };
145
+ headerDragable: {
146
+ type: BooleanConstructor;
147
+ default: boolean;
148
+ };
145
149
  footerDragable: BooleanConstructor;
146
150
  tiny_theme: StringConstructor;
147
151
  slots: ObjectConstructor;
@@ -31,9 +31,45 @@ declare const pickerProps: {
31
31
  tip: StringConstructor;
32
32
  clearIcon: {
33
33
  type: ObjectConstructor;
34
- default(): vue.Raw<vue.DefineComponent<{}, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
34
+ default(): vue.Raw<vue.DefineComponent<{
35
+ shape: {
36
+ type: StringConstructor;
37
+ default: string;
38
+ };
39
+ firstColor: {
40
+ type: StringConstructor;
41
+ default: string;
42
+ };
43
+ secondColor: {
44
+ type: StringConstructor;
45
+ default: string;
46
+ };
47
+ underlay: {
48
+ type: ObjectConstructor;
49
+ };
50
+ }, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
35
51
  [key: string]: any;
36
- }>, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{}>>, {}, {}>>;
52
+ }>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
53
+ shape: {
54
+ type: StringConstructor;
55
+ default: string;
56
+ };
57
+ firstColor: {
58
+ type: StringConstructor;
59
+ default: string;
60
+ };
61
+ secondColor: {
62
+ type: StringConstructor;
63
+ default: string;
64
+ };
65
+ underlay: {
66
+ type: ObjectConstructor;
67
+ };
68
+ }>>, {
69
+ shape: string;
70
+ firstColor: string;
71
+ secondColor: string;
72
+ }, {}>>;
37
73
  };
38
74
  name: {
39
75
  default: string;
@@ -78,15 +78,87 @@ declare const popeditorProps: {
78
78
  };
79
79
  icon: {
80
80
  type: ObjectConstructor;
81
- default(): vue.Raw<_opentiny_vue_common.DefineComponent<{}, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
81
+ default(): vue.Raw<_opentiny_vue_common.DefineComponent<{
82
+ shape: {
83
+ type: StringConstructor;
84
+ default: string;
85
+ };
86
+ firstColor: {
87
+ type: StringConstructor;
88
+ default: string;
89
+ };
90
+ secondColor: {
91
+ type: StringConstructor;
92
+ default: string;
93
+ };
94
+ underlay: {
95
+ type: ObjectConstructor;
96
+ };
97
+ }, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
82
98
  [key: string]: any;
83
- }>, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<_opentiny_vue_common.ExtractPropTypes<{}>>, {}, {}>>;
99
+ }>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<_opentiny_vue_common.ExtractPropTypes<{
100
+ shape: {
101
+ type: StringConstructor;
102
+ default: string;
103
+ };
104
+ firstColor: {
105
+ type: StringConstructor;
106
+ default: string;
107
+ };
108
+ secondColor: {
109
+ type: StringConstructor;
110
+ default: string;
111
+ };
112
+ underlay: {
113
+ type: ObjectConstructor;
114
+ };
115
+ }>>, {
116
+ shape: string;
117
+ firstColor: string;
118
+ secondColor: string;
119
+ }, {}>>;
84
120
  };
85
121
  iconSearch: {
86
122
  type: ObjectConstructor;
87
- default(): vue.Raw<_opentiny_vue_common.DefineComponent<{}, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
123
+ default(): vue.Raw<_opentiny_vue_common.DefineComponent<{
124
+ shape: {
125
+ type: StringConstructor;
126
+ default: string;
127
+ };
128
+ firstColor: {
129
+ type: StringConstructor;
130
+ default: string;
131
+ };
132
+ secondColor: {
133
+ type: StringConstructor;
134
+ default: string;
135
+ };
136
+ underlay: {
137
+ type: ObjectConstructor;
138
+ };
139
+ }, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
88
140
  [key: string]: any;
89
- }>, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<_opentiny_vue_common.ExtractPropTypes<{}>>, {}, {}>>;
141
+ }>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<_opentiny_vue_common.ExtractPropTypes<{
142
+ shape: {
143
+ type: StringConstructor;
144
+ default: string;
145
+ };
146
+ firstColor: {
147
+ type: StringConstructor;
148
+ default: string;
149
+ };
150
+ secondColor: {
151
+ type: StringConstructor;
152
+ default: string;
153
+ };
154
+ underlay: {
155
+ type: ObjectConstructor;
156
+ };
157
+ }>>, {
158
+ shape: string;
159
+ firstColor: string;
160
+ secondColor: string;
161
+ }, {}>>;
90
162
  };
91
163
  title: {
92
164
  type: StringConstructor;
@@ -60,6 +60,7 @@ declare const switchProps: {
60
60
  type: BooleanConstructor;
61
61
  default: boolean;
62
62
  };
63
+ width: (StringConstructor | NumberConstructor)[];
63
64
  tiny_mode: StringConstructor;
64
65
  tiny_mode_root: BooleanConstructor;
65
66
  tiny_template: (FunctionConstructor | ObjectConstructor)[];
@@ -14,9 +14,45 @@ declare const treeMenuProps: {
14
14
  suffixIcon: ObjectConstructor;
15
15
  searchIcon: {
16
16
  type: ObjectConstructor;
17
- default: () => vue.Raw<_opentiny_vue_common.DefineComponent<{}, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
17
+ default: () => vue.Raw<_opentiny_vue_common.DefineComponent<{
18
+ shape: {
19
+ type: StringConstructor;
20
+ default: string;
21
+ };
22
+ firstColor: {
23
+ type: StringConstructor;
24
+ default: string;
25
+ };
26
+ secondColor: {
27
+ type: StringConstructor;
28
+ default: string;
29
+ };
30
+ underlay: {
31
+ type: ObjectConstructor;
32
+ };
33
+ }, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
18
34
  [key: string]: any;
19
- }>, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<_opentiny_vue_common.ExtractPropTypes<{}>>, {}, {}>>;
35
+ }>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<_opentiny_vue_common.ExtractPropTypes<{
36
+ shape: {
37
+ type: StringConstructor;
38
+ default: string;
39
+ };
40
+ firstColor: {
41
+ type: StringConstructor;
42
+ default: string;
43
+ };
44
+ secondColor: {
45
+ type: StringConstructor;
46
+ default: string;
47
+ };
48
+ underlay: {
49
+ type: ObjectConstructor;
50
+ };
51
+ }>>, {
52
+ shape: string;
53
+ firstColor: string;
54
+ secondColor: string;
55
+ }, {}>>;
20
56
  };
21
57
  props: ObjectConstructor;
22
58
  draggable: {