@hinen/pro-element-plus 1.7.4 → 1.7.5
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/components/FormFields/FormSelect/FormSelect.vue.d.ts +20 -5
- package/dist/components/FormFields/FormSelect/FormSelect.vue.d.ts.map +1 -1
- package/dist/components/FormFields/FormSelect/props.d.ts +8 -2
- package/dist/components/FormFields/FormSelect/props.d.ts.map +1 -1
- package/dist/components/Select/Select.vue.d.ts +8 -2
- package/dist/components/Select/Select.vue.d.ts.map +1 -1
- package/dist/components/Select/props.d.ts +4 -1
- package/dist/components/Select/props.d.ts.map +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.js +149 -145
- package/package.json +1 -1
|
@@ -258,7 +258,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
258
258
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
259
259
|
__epPropKey: true;
|
|
260
260
|
};
|
|
261
|
-
fitInputWidth:
|
|
261
|
+
fitInputWidth: {
|
|
262
|
+
default: boolean;
|
|
263
|
+
prototype: Boolean;
|
|
264
|
+
};
|
|
262
265
|
suffixIcon: {
|
|
263
266
|
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
264
267
|
readonly required: false;
|
|
@@ -328,6 +331,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
328
331
|
};
|
|
329
332
|
fieldProps: {
|
|
330
333
|
type: import('vue').PropType<{
|
|
334
|
+
fitInputWidth: {
|
|
335
|
+
default: boolean;
|
|
336
|
+
prototype: Boolean;
|
|
337
|
+
};
|
|
331
338
|
options: import('vue').PropType<import('../../Select').SelectOptionType[]>;
|
|
332
339
|
ariaLabel: StringConstructor;
|
|
333
340
|
emptyValues: ArrayConstructor;
|
|
@@ -473,7 +480,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
473
480
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
474
481
|
__epPropKey: true;
|
|
475
482
|
};
|
|
476
|
-
fitInputWidth: BooleanConstructor;
|
|
477
483
|
suffixIcon: {
|
|
478
484
|
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
479
485
|
readonly required: false;
|
|
@@ -806,7 +812,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
806
812
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
807
813
|
__epPropKey: true;
|
|
808
814
|
};
|
|
809
|
-
fitInputWidth:
|
|
815
|
+
fitInputWidth: {
|
|
816
|
+
default: boolean;
|
|
817
|
+
prototype: Boolean;
|
|
818
|
+
};
|
|
810
819
|
suffixIcon: {
|
|
811
820
|
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
812
821
|
readonly required: false;
|
|
@@ -876,6 +885,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
876
885
|
};
|
|
877
886
|
fieldProps: {
|
|
878
887
|
type: import('vue').PropType<{
|
|
888
|
+
fitInputWidth: {
|
|
889
|
+
default: boolean;
|
|
890
|
+
prototype: Boolean;
|
|
891
|
+
};
|
|
879
892
|
options: import('vue').PropType<import('../../Select').SelectOptionType[]>;
|
|
880
893
|
ariaLabel: StringConstructor;
|
|
881
894
|
emptyValues: ArrayConstructor;
|
|
@@ -1021,7 +1034,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1021
1034
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1022
1035
|
__epPropKey: true;
|
|
1023
1036
|
};
|
|
1024
|
-
fitInputWidth: BooleanConstructor;
|
|
1025
1037
|
suffixIcon: {
|
|
1026
1038
|
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
1027
1039
|
readonly required: false;
|
|
@@ -1161,6 +1173,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1161
1173
|
fieldId: any;
|
|
1162
1174
|
formItemProps: import('../FormItem').FormItemPropsType;
|
|
1163
1175
|
fieldProps: {
|
|
1176
|
+
fitInputWidth: {
|
|
1177
|
+
default: boolean;
|
|
1178
|
+
prototype: Boolean;
|
|
1179
|
+
};
|
|
1164
1180
|
options: import('vue').PropType<import('../../Select').SelectOptionType[]>;
|
|
1165
1181
|
ariaLabel: StringConstructor;
|
|
1166
1182
|
emptyValues: ArrayConstructor;
|
|
@@ -1306,7 +1322,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1306
1322
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1307
1323
|
__epPropKey: true;
|
|
1308
1324
|
};
|
|
1309
|
-
fitInputWidth: BooleanConstructor;
|
|
1310
1325
|
suffixIcon: {
|
|
1311
1326
|
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
1312
1327
|
readonly required: false;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FormSelect.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/FormFields/FormSelect/FormSelect.vue"],"names":[],"mappings":"AAGA,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,cAAc,CAAC;AACrD,OAAO,EAAU,KAAK,kBAAkB,EAAE,MAAM,cAAc,CAAC;AA+C/D,iBAAS,cAAc;;;;;;;;;;;;;;;;;;;;;;;;EA6StB;AAkBD,QAAA,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"FormSelect.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/FormFields/FormSelect/FormSelect.vue"],"names":[],"mappings":"AAGA,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,cAAc,CAAC;AACrD,OAAO,EAAU,KAAK,kBAAkB,EAAE,MAAM,cAAc,CAAC;AA+C/D,iBAAS,cAAc;;;;;;;;;;;;;;;;;;;;;;;;EA6StB;AAkBD,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAAvG,wBAAwG;AACxG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
|
|
@@ -232,7 +232,10 @@ export declare const formSelectProps: {
|
|
|
232
232
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
233
233
|
__epPropKey: true;
|
|
234
234
|
};
|
|
235
|
-
fitInputWidth:
|
|
235
|
+
fitInputWidth: {
|
|
236
|
+
default: boolean;
|
|
237
|
+
prototype: Boolean;
|
|
238
|
+
};
|
|
236
239
|
suffixIcon: {
|
|
237
240
|
readonly type: PropType<string | import('vue').Component>;
|
|
238
241
|
readonly required: false;
|
|
@@ -302,6 +305,10 @@ export declare const formSelectProps: {
|
|
|
302
305
|
};
|
|
303
306
|
fieldProps: {
|
|
304
307
|
type: PropType<{
|
|
308
|
+
fitInputWidth: {
|
|
309
|
+
default: boolean;
|
|
310
|
+
prototype: Boolean;
|
|
311
|
+
};
|
|
305
312
|
options: PropType<import('../../Select').SelectOptionType[]>;
|
|
306
313
|
ariaLabel: StringConstructor;
|
|
307
314
|
emptyValues: ArrayConstructor;
|
|
@@ -447,7 +454,6 @@ export declare const formSelectProps: {
|
|
|
447
454
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
448
455
|
__epPropKey: true;
|
|
449
456
|
};
|
|
450
|
-
fitInputWidth: BooleanConstructor;
|
|
451
457
|
suffixIcon: {
|
|
452
458
|
readonly type: PropType<string | import('vue').Component>;
|
|
453
459
|
readonly required: false;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../../../src/components/FormFields/FormSelect/props.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AAKpC,eAAO,MAAM,eAAe;eAEL,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC
|
|
1
|
+
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../../../src/components/FormFields/FormSelect/props.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AAKpC,eAAO,MAAM,eAAe;eAEL,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CACtD,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;CAAc,CAAC"}
|
|
@@ -2,6 +2,10 @@ import { SelectSlotsType } from './types';
|
|
|
2
2
|
|
|
3
3
|
declare function __VLS_template(): Readonly<SelectSlotsType> & SelectSlotsType;
|
|
4
4
|
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
5
|
+
fitInputWidth: {
|
|
6
|
+
default: boolean;
|
|
7
|
+
prototype: Boolean;
|
|
8
|
+
};
|
|
5
9
|
options: import('vue').PropType<import('./props').SelectOptionType[]>;
|
|
6
10
|
ariaLabel: StringConstructor;
|
|
7
11
|
emptyValues: ArrayConstructor;
|
|
@@ -147,7 +151,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
147
151
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
148
152
|
__epPropKey: true;
|
|
149
153
|
};
|
|
150
|
-
fitInputWidth: BooleanConstructor;
|
|
151
154
|
suffixIcon: {
|
|
152
155
|
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
153
156
|
readonly required: false;
|
|
@@ -247,6 +250,10 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
247
250
|
scrollLeft: number;
|
|
248
251
|
}) => void;
|
|
249
252
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
253
|
+
fitInputWidth: {
|
|
254
|
+
default: boolean;
|
|
255
|
+
prototype: Boolean;
|
|
256
|
+
};
|
|
250
257
|
options: import('vue').PropType<import('./props').SelectOptionType[]>;
|
|
251
258
|
ariaLabel: StringConstructor;
|
|
252
259
|
emptyValues: ArrayConstructor;
|
|
@@ -392,7 +399,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
392
399
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
393
400
|
__epPropKey: true;
|
|
394
401
|
};
|
|
395
|
-
fitInputWidth: BooleanConstructor;
|
|
396
402
|
suffixIcon: {
|
|
397
403
|
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
398
404
|
readonly required: false;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Select.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Select/Select.vue"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAsC/C,iBAAS,cAAc,gDAqUtB;AAcD,QAAA,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"Select.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Select/Select.vue"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAsC/C,iBAAS,cAAc,gDAqUtB;AAcD,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAAvG,wBAAwG;AACxG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
|
|
@@ -2,6 +2,10 @@ import { PropType } from 'vue';
|
|
|
2
2
|
|
|
3
3
|
export type SelectOptionType = any;
|
|
4
4
|
export declare const selectProps: {
|
|
5
|
+
fitInputWidth: {
|
|
6
|
+
default: boolean;
|
|
7
|
+
prototype: Boolean;
|
|
8
|
+
};
|
|
5
9
|
options: PropType<SelectOptionType[]>;
|
|
6
10
|
ariaLabel: StringConstructor;
|
|
7
11
|
emptyValues: ArrayConstructor;
|
|
@@ -147,7 +151,6 @@ export declare const selectProps: {
|
|
|
147
151
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
148
152
|
__epPropKey: true;
|
|
149
153
|
};
|
|
150
|
-
fitInputWidth: BooleanConstructor;
|
|
151
154
|
suffixIcon: {
|
|
152
155
|
readonly type: PropType<string | import('vue').Component>;
|
|
153
156
|
readonly required: false;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../../src/components/Select/props.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AAIpC,MAAM,MAAM,gBAAgB,GAAG,GAAG,CAAC;AAEnC,eAAO,MAAM,WAAW
|
|
1
|
+
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../../src/components/Select/props.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AAIpC,MAAM,MAAM,gBAAgB,GAAG,GAAG,CAAC;AAEnC,eAAO,MAAM,WAAW;;;;;aAMJ,QAAQ,CAAC,gBAAgB,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAC/C,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG,GAAG,CAAC;AAElC,eAAO,MAAM,WAAW;iCACO,eAAe,GAAG,eAAe,EAAE;oBAChD,eAAe,GAAG,eAAe,EAAE;mBACpC,UAAU;kBACX,UAAU;;gCAEI,OAAO;0BACb,eAAe;2BACd;QAAE,SAAS,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,MAAM,CAAA;KAAE;qBAC/C,MAAM;CACxB,CAAC"}
|