@fmdeui/fmui 1.0.99 → 1.0.100
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/es/components/fm-autocomplete/index.d.ts +4 -4
- package/es/components/fm-autocomplete/index.vue.d.ts +4 -4
- package/es/packages/components/fm-inputdropdown/index.vue2.mjs +2 -1
- package/index.js +3 -2
- package/index.min.js +2 -2
- package/index.min.mjs +2 -2
- package/index.mjs +3 -2
- package/lib/components/fm-autocomplete/index.d.ts +4 -4
- package/lib/components/fm-autocomplete/index.vue.d.ts +4 -4
- package/lib/packages/components/fm-inputdropdown/index.vue2.js +2 -1
- package/locale/en.js +1 -1
- package/locale/en.min.js +1 -1
- package/locale/en.min.mjs +1 -1
- package/locale/en.mjs +1 -1
- package/locale/zh-cn.js +1 -1
- package/locale/zh-cn.min.js +1 -1
- package/locale/zh-cn.min.mjs +1 -1
- package/locale/zh-cn.mjs +1 -1
- package/package.json +1 -1
- /package/es/{version.css → make-installer.css} +0 -0
- /package/lib/{index.css → defaults.css} +0 -0
|
@@ -65,13 +65,13 @@ export declare const FmAutocomplete: DefineComponent<ExtractPropTypes<{
|
|
|
65
65
|
required: true;
|
|
66
66
|
};
|
|
67
67
|
id: {
|
|
68
|
-
type: PropType<
|
|
68
|
+
type: PropType<number>;
|
|
69
69
|
required: true;
|
|
70
70
|
};
|
|
71
71
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
72
72
|
reset: (...args: any[]) => void;
|
|
73
73
|
select: (...args: any[]) => void;
|
|
74
|
-
"update:id": (value:
|
|
74
|
+
"update:id": (value: number) => void;
|
|
75
75
|
"update:name": (value: string) => void;
|
|
76
76
|
}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
77
77
|
placeholder: {
|
|
@@ -139,13 +139,13 @@ export declare const FmAutocomplete: DefineComponent<ExtractPropTypes<{
|
|
|
139
139
|
required: true;
|
|
140
140
|
};
|
|
141
141
|
id: {
|
|
142
|
-
type: PropType<
|
|
142
|
+
type: PropType<number>;
|
|
143
143
|
required: true;
|
|
144
144
|
};
|
|
145
145
|
}>> & Readonly<{
|
|
146
146
|
onReset?: ((...args: any[]) => any) | undefined;
|
|
147
147
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
148
|
-
"onUpdate:id"?: ((value:
|
|
148
|
+
"onUpdate:id"?: ((value: number) => any) | undefined;
|
|
149
149
|
"onUpdate:name"?: ((value: string) => any) | undefined;
|
|
150
150
|
}>, {
|
|
151
151
|
top: number;
|
|
@@ -84,13 +84,13 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
84
84
|
required: true;
|
|
85
85
|
};
|
|
86
86
|
id: {
|
|
87
|
-
type: PropType<
|
|
87
|
+
type: PropType<number>;
|
|
88
88
|
required: true;
|
|
89
89
|
};
|
|
90
90
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
91
91
|
reset: (...args: any[]) => void;
|
|
92
92
|
select: (...args: any[]) => void;
|
|
93
|
-
"update:id": (value:
|
|
93
|
+
"update:id": (value: number) => void;
|
|
94
94
|
"update:name": (value: string) => void;
|
|
95
95
|
}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
96
96
|
placeholder: {
|
|
@@ -177,13 +177,13 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
177
177
|
required: true;
|
|
178
178
|
};
|
|
179
179
|
id: {
|
|
180
|
-
type: PropType<
|
|
180
|
+
type: PropType<number>;
|
|
181
181
|
required: true;
|
|
182
182
|
};
|
|
183
183
|
}>> & Readonly<{
|
|
184
184
|
onReset?: ((...args: any[]) => any) | undefined;
|
|
185
185
|
onSelect?: ((...args: any[]) => any) | undefined;
|
|
186
|
-
"onUpdate:id"?: ((value:
|
|
186
|
+
"onUpdate:id"?: ((value: number) => any) | undefined;
|
|
187
187
|
"onUpdate:name"?: ((value: string) => any) | undefined;
|
|
188
188
|
}>, {
|
|
189
189
|
top: number;
|
|
@@ -172,9 +172,10 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
172
172
|
style: normalizeStyle({ width: __props.inputWidth }),
|
|
173
173
|
onChange: handelChange
|
|
174
174
|
}, {
|
|
175
|
-
|
|
175
|
+
suffix: withCtx(() => [
|
|
176
176
|
createVNode(_component_el_icon, {
|
|
177
177
|
color: "#13c2c2",
|
|
178
|
+
size: 22,
|
|
178
179
|
onClick: handRestdata
|
|
179
180
|
}, {
|
|
180
181
|
default: withCtx(() => [
|
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! fmdeui-fmui v1.0.
|
|
1
|
+
/*! fmdeui-fmui v1.0.100 */
|
|
2
2
|
(function (global, factory) {
|
|
3
3
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('vxe-table'), require('@vxe-ui/plugin-render-element'), require('@vxe-ui/plugin-export-xlsx'), require('vxe-pc-ui'), require('exceljs'), require('@element-plus/icons-vue'), require('vue'), require('element-plus'), require('lodash-es'), require('js-cookie'), require('pinia'), require('vue-router'), require('@vueuse/core'), require('crypto-js'), require('xlsx-js-style'), require('vue-i18n'), require('sortablejs'), require('screenfull'), require('push.js'), require('mitt'), require('@microsoft/signalr'), require('axios')) :
|
|
4
4
|
typeof define === 'function' && define.amd ? define(['exports', 'vxe-table', '@vxe-ui/plugin-render-element', '@vxe-ui/plugin-export-xlsx', 'vxe-pc-ui', 'exceljs', '@element-plus/icons-vue', 'vue', 'element-plus', 'lodash-es', 'js-cookie', 'pinia', 'vue-router', '@vueuse/core', 'crypto-js', 'xlsx-js-style', 'vue-i18n', 'sortablejs', 'screenfull', 'push.js', 'mitt', '@microsoft/signalr', 'axios'], factory) :
|
|
@@ -26818,9 +26818,10 @@
|
|
|
26818
26818
|
style: vue.normalizeStyle({ width: __props.inputWidth }),
|
|
26819
26819
|
onChange: handelChange
|
|
26820
26820
|
}, {
|
|
26821
|
-
|
|
26821
|
+
suffix: vue.withCtx(() => [
|
|
26822
26822
|
vue.createVNode(_component_el_icon, {
|
|
26823
26823
|
color: "#13c2c2",
|
|
26824
|
+
size: 22,
|
|
26824
26825
|
onClick: handRestdata
|
|
26825
26826
|
}, {
|
|
26826
26827
|
default: vue.withCtx(() => [
|