ll-plus 2.6.23 → 2.6.24

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.
Files changed (54) hide show
  1. package/es/components/easy-cron/index.d.ts +0 -438
  2. package/es/components/easy-cron/src/easy-cron.vue.d.ts +0 -438
  3. package/es/components/icon-picker/index.d.ts +10 -0
  4. package/es/components/icon-picker/src/components/search.vue.d.ts +10 -0
  5. package/es/components/icon-picker/src/icon-picker.vue.d.ts +10 -0
  6. package/es/components/input/index.d.ts +3 -0
  7. package/es/components/input/src/input.vue.d.ts +3 -0
  8. package/es/packages/components/easy-cron/src/easy-cron.vue2.mjs +33 -22
  9. package/es/packages/components/easy-cron/src/easy-cron.vue2.mjs.map +1 -1
  10. package/es/packages/components/icon-picker/src/components/search.vue2.mjs +12 -5
  11. package/es/packages/components/icon-picker/src/components/search.vue2.mjs.map +1 -1
  12. package/es/packages/components/input/src/input.mjs +1 -1
  13. package/es/packages/components/input/src/input.mjs.map +1 -1
  14. package/es/packages/components/input/src/input.vue2.mjs +74 -40
  15. package/es/packages/components/input/src/input.vue2.mjs.map +1 -1
  16. package/es/packages/components/table/src/components/main-table.vue2.mjs +199 -189
  17. package/es/packages/components/table/src/components/main-table.vue2.mjs.map +1 -1
  18. package/es/utils/props/runtime.d.ts +2 -2
  19. package/index.full.js +312 -252
  20. package/index.full.min.js +3 -3
  21. package/index.full.min.js.map +1 -1
  22. package/index.full.min.mjs +18 -18
  23. package/index.full.min.mjs.map +1 -1
  24. package/index.full.mjs +313 -253
  25. package/lib/components/easy-cron/index.d.ts +0 -438
  26. package/lib/components/easy-cron/src/easy-cron.vue.d.ts +0 -438
  27. package/lib/components/icon-picker/index.d.ts +10 -0
  28. package/lib/components/icon-picker/src/components/search.vue.d.ts +10 -0
  29. package/lib/components/icon-picker/src/icon-picker.vue.d.ts +10 -0
  30. package/lib/components/input/index.d.ts +3 -0
  31. package/lib/components/input/src/input.vue.d.ts +3 -0
  32. package/lib/packages/components/easy-cron/src/easy-cron.vue2.js +31 -20
  33. package/lib/packages/components/easy-cron/src/easy-cron.vue2.js.map +1 -1
  34. package/lib/packages/components/icon-picker/src/components/search.vue2.js +11 -4
  35. package/lib/packages/components/icon-picker/src/components/search.vue2.js.map +1 -1
  36. package/lib/packages/components/input/src/input.js +1 -1
  37. package/lib/packages/components/input/src/input.js.map +1 -1
  38. package/lib/packages/components/input/src/input.vue2.js +73 -39
  39. package/lib/packages/components/input/src/input.vue2.js.map +1 -1
  40. package/lib/packages/components/table/src/components/main-table.vue2.js +198 -188
  41. package/lib/packages/components/table/src/components/main-table.vue2.js.map +1 -1
  42. package/lib/utils/props/runtime.d.ts +2 -2
  43. package/package.json +1 -1
  44. package/theme-chalk/css/easy-cron.css +1 -1
  45. package/theme-chalk/css/icon-picker.css +1 -1
  46. package/theme-chalk/css/index.css +1 -1
  47. package/types/packages/components/easy-cron/index.d.ts +0 -438
  48. package/types/packages/components/easy-cron/src/easy-cron.vue.d.ts +0 -438
  49. package/types/packages/components/icon-picker/index.d.ts +10 -0
  50. package/types/packages/components/icon-picker/src/components/search.vue.d.ts +10 -0
  51. package/types/packages/components/icon-picker/src/icon-picker.vue.d.ts +10 -0
  52. package/types/packages/components/input/index.d.ts +3 -0
  53. package/types/packages/components/input/src/input.vue.d.ts +3 -0
  54. package/types/packages/utils/props/runtime.d.ts +2 -2
@@ -39,444 +39,6 @@ declare const _default: import("vue").DefineComponent<{
39
39
  easyCronModalRef: import("vue").Ref<any>;
40
40
  showConfigModal: () => void;
41
41
  handleSubmit: () => void;
42
- readonly Button: {
43
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
44
- prefixCls: StringConstructor;
45
- type: import("vue").PropType<import("ant-design-vue/es/button").ButtonType>;
46
- htmlType: {
47
- type: import("vue").PropType<import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType>;
48
- default: string;
49
- };
50
- shape: {
51
- type: import("vue").PropType<import("ant-design-vue/es/button").ButtonShape>;
52
- };
53
- size: {
54
- type: import("vue").PropType<import("ant-design-vue/es/button").ButtonSize>;
55
- };
56
- loading: {
57
- type: import("vue").PropType<boolean | {
58
- delay?: number | undefined;
59
- }>;
60
- default: () => boolean | {
61
- delay?: number | undefined;
62
- };
63
- };
64
- disabled: {
65
- type: BooleanConstructor;
66
- default: any;
67
- };
68
- ghost: {
69
- type: BooleanConstructor;
70
- default: any;
71
- };
72
- block: {
73
- type: BooleanConstructor;
74
- default: any;
75
- };
76
- danger: {
77
- type: BooleanConstructor;
78
- default: any;
79
- };
80
- icon: import("vue-types").VueTypeValidableDef<any>;
81
- href: StringConstructor;
82
- target: StringConstructor;
83
- title: StringConstructor;
84
- onClick: {
85
- type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
86
- };
87
- onMousedown: {
88
- type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
89
- };
90
- }>>, () => import("ant-design-vue/es/_util/type").VueNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
91
- prefixCls: StringConstructor;
92
- type: import("vue").PropType<import("ant-design-vue/es/button").ButtonType>;
93
- htmlType: {
94
- type: import("vue").PropType<import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType>;
95
- default: string;
96
- };
97
- shape: {
98
- type: import("vue").PropType<import("ant-design-vue/es/button").ButtonShape>;
99
- };
100
- size: {
101
- type: import("vue").PropType<import("ant-design-vue/es/button").ButtonSize>;
102
- };
103
- loading: {
104
- type: import("vue").PropType<boolean | {
105
- delay?: number | undefined;
106
- }>;
107
- default: () => boolean | {
108
- delay?: number | undefined;
109
- };
110
- };
111
- disabled: {
112
- type: BooleanConstructor;
113
- default: any;
114
- };
115
- ghost: {
116
- type: BooleanConstructor;
117
- default: any;
118
- };
119
- block: {
120
- type: BooleanConstructor;
121
- default: any;
122
- };
123
- danger: {
124
- type: BooleanConstructor;
125
- default: any;
126
- };
127
- icon: import("vue-types").VueTypeValidableDef<any>;
128
- href: StringConstructor;
129
- target: StringConstructor;
130
- title: StringConstructor;
131
- onClick: {
132
- type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
133
- };
134
- onMousedown: {
135
- type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
136
- };
137
- }>>, {
138
- block: boolean;
139
- disabled: boolean;
140
- danger: boolean;
141
- ghost: boolean;
142
- htmlType: import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType;
143
- loading: boolean | {
144
- delay?: number | undefined;
145
- };
146
- }, true, {}, import("ant-design-vue/es/_util/type").CustomSlotsType<{
147
- icon: any;
148
- default: any;
149
- }>, {
150
- P: {};
151
- B: {};
152
- D: {};
153
- C: {};
154
- M: {};
155
- Defaults: {};
156
- }, Readonly<import("vue").ExtractPropTypes<{
157
- prefixCls: StringConstructor;
158
- type: import("vue").PropType<import("ant-design-vue/es/button").ButtonType>;
159
- htmlType: {
160
- type: import("vue").PropType<import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType>;
161
- default: string;
162
- };
163
- shape: {
164
- type: import("vue").PropType<import("ant-design-vue/es/button").ButtonShape>;
165
- };
166
- size: {
167
- type: import("vue").PropType<import("ant-design-vue/es/button").ButtonSize>;
168
- };
169
- loading: {
170
- type: import("vue").PropType<boolean | {
171
- delay?: number | undefined;
172
- }>;
173
- default: () => boolean | {
174
- delay?: number | undefined;
175
- };
176
- };
177
- disabled: {
178
- type: BooleanConstructor;
179
- default: any;
180
- };
181
- ghost: {
182
- type: BooleanConstructor;
183
- default: any;
184
- };
185
- block: {
186
- type: BooleanConstructor;
187
- default: any;
188
- };
189
- danger: {
190
- type: BooleanConstructor;
191
- default: any;
192
- };
193
- icon: import("vue-types").VueTypeValidableDef<any>;
194
- href: StringConstructor;
195
- target: StringConstructor;
196
- title: StringConstructor;
197
- onClick: {
198
- type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
199
- };
200
- onMousedown: {
201
- type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
202
- };
203
- }>>, () => import("ant-design-vue/es/_util/type").VueNode, {}, {}, {}, {
204
- block: boolean;
205
- disabled: boolean;
206
- danger: boolean;
207
- ghost: boolean;
208
- htmlType: import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType;
209
- loading: boolean | {
210
- delay?: number | undefined;
211
- };
212
- }>;
213
- __isFragment?: undefined;
214
- __isTeleport?: undefined;
215
- __isSuspense?: undefined;
216
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
217
- prefixCls: StringConstructor;
218
- type: import("vue").PropType<import("ant-design-vue/es/button").ButtonType>;
219
- htmlType: {
220
- type: import("vue").PropType<import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType>;
221
- default: string;
222
- };
223
- shape: {
224
- type: import("vue").PropType<import("ant-design-vue/es/button").ButtonShape>;
225
- };
226
- size: {
227
- type: import("vue").PropType<import("ant-design-vue/es/button").ButtonSize>;
228
- };
229
- loading: {
230
- type: import("vue").PropType<boolean | {
231
- delay?: number | undefined;
232
- }>;
233
- default: () => boolean | {
234
- delay?: number | undefined;
235
- };
236
- };
237
- disabled: {
238
- type: BooleanConstructor;
239
- default: any;
240
- };
241
- ghost: {
242
- type: BooleanConstructor;
243
- default: any;
244
- };
245
- block: {
246
- type: BooleanConstructor;
247
- default: any;
248
- };
249
- danger: {
250
- type: BooleanConstructor;
251
- default: any;
252
- };
253
- icon: import("vue-types").VueTypeValidableDef<any>;
254
- href: StringConstructor;
255
- target: StringConstructor;
256
- title: StringConstructor;
257
- onClick: {
258
- type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
259
- };
260
- onMousedown: {
261
- type: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler | import("ant-design-vue/es/_util/EventInterface").MouseEventHandler[]>;
262
- };
263
- }>>, () => import("ant-design-vue/es/_util/type").VueNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
264
- block: boolean;
265
- disabled: boolean;
266
- danger: boolean;
267
- ghost: boolean;
268
- htmlType: import("ant-design-vue/es/button/buttonTypes").ButtonHTMLType;
269
- loading: boolean | {
270
- delay?: number | undefined;
271
- };
272
- }, {}, string, import("ant-design-vue/es/_util/type").CustomSlotsType<{
273
- icon: any;
274
- default: any;
275
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin<any[]> & {
276
- readonly Group: import("vue").DefineComponent<{
277
- prefixCls: StringConstructor;
278
- size: {
279
- type: import("vue").PropType<import("ant-design-vue/es/button").ButtonSize>;
280
- };
281
- }, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
282
- prefixCls: StringConstructor;
283
- size: {
284
- type: import("vue").PropType<import("ant-design-vue/es/button").ButtonSize>;
285
- };
286
- }>>, {}, {}>;
287
- };
288
- readonly InputSearch: import("vue").DefineComponent<{
289
- inputPrefixCls: StringConstructor;
290
- enterButton: import("vue-types").VueTypeValidableDef<any>;
291
- onSearch: {
292
- type: import("vue").PropType<(value: string, event?: MouseEvent | KeyboardEvent | import("ant-design-vue/es/_util/EventInterface").ChangeEvent | undefined) => void>;
293
- };
294
- size: {
295
- type: import("vue").PropType<import("ant-design-vue/es/button").ButtonSize>;
296
- };
297
- value: {
298
- type: import("vue").PropType<string | number>;
299
- default: any;
300
- };
301
- name: StringConstructor;
302
- type: {
303
- type: import("vue").PropType<"number" | "month" | "reset" | "submit" | "color" | "hidden" | "search" | "date" | "url" | "email" | "time" | "week" | "text" | "button" | "checkbox" | "radio" | "image" | "range" | "datetime-local" | "file" | "password" | "tel">;
304
- default: "number" | "month" | "reset" | "submit" | "color" | "hidden" | "search" | "date" | "url" | "email" | "time" | "week" | "text" | "button" | "checkbox" | "radio" | "image" | "range" | "datetime-local" | "file" | "password" | "tel";
305
- };
306
- onCompositionend: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").CompositionEventHandler>;
307
- onCompositionstart: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").CompositionEventHandler>;
308
- onFocus: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").FocusEventHandler>;
309
- onBlur: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").FocusEventHandler>;
310
- onChange: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").ChangeEventHandler>;
311
- onInput: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").ChangeEventHandler>;
312
- onKeydown: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").KeyboardEventHandler>;
313
- onKeyup: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").KeyboardEventHandler>;
314
- focused: {
315
- type: BooleanConstructor;
316
- default: any;
317
- };
318
- hidden: {
319
- type: BooleanConstructor;
320
- default: any;
321
- };
322
- disabled: {
323
- type: BooleanConstructor;
324
- default: any;
325
- };
326
- prefixCls: StringConstructor;
327
- id: StringConstructor;
328
- prefix: import("vue-types").VueTypeValidableDef<any>;
329
- autofocus: {
330
- type: BooleanConstructor;
331
- default: any;
332
- };
333
- autocomplete: StringConstructor;
334
- readonly: {
335
- type: BooleanConstructor;
336
- default: any;
337
- };
338
- status: import("vue").PropType<"" | "error" | "warning">;
339
- defaultValue: {
340
- type: import("vue").PropType<string | number>;
341
- default: any;
342
- };
343
- 'onUpdate:value': import("vue").PropType<(val: string) => void>;
344
- suffix: import("vue-types").VueTypeValidableDef<any>;
345
- placeholder: {
346
- type: import("vue").PropType<string | number>;
347
- };
348
- loading: {
349
- type: BooleanConstructor;
350
- default: any;
351
- };
352
- lazy: {
353
- type: BooleanConstructor;
354
- default: boolean;
355
- };
356
- maxlength: NumberConstructor;
357
- bordered: {
358
- type: BooleanConstructor;
359
- default: any;
360
- };
361
- showCount: {
362
- type: import("vue").PropType<boolean | import("ant-design-vue/es/vc-input/inputProps").ShowCountProps>;
363
- };
364
- htmlSize: NumberConstructor;
365
- onPressEnter: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").KeyboardEventHandler>;
366
- valueModifiers: ObjectConstructor;
367
- inputElement: import("vue-types").VueTypeValidableDef<any>;
368
- triggerFocus: import("vue").PropType<() => void>;
369
- handleReset: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler>;
370
- addonBefore: import("vue-types").VueTypeValidableDef<any>;
371
- addonAfter: import("vue-types").VueTypeValidableDef<any>;
372
- clearIcon: import("vue-types").VueTypeValidableDef<any>;
373
- allowClear: {
374
- type: BooleanConstructor;
375
- default: any;
376
- };
377
- }, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
378
- inputPrefixCls: StringConstructor;
379
- enterButton: import("vue-types").VueTypeValidableDef<any>;
380
- onSearch: {
381
- type: import("vue").PropType<(value: string, event?: MouseEvent | KeyboardEvent | import("ant-design-vue/es/_util/EventInterface").ChangeEvent | undefined) => void>;
382
- };
383
- size: {
384
- type: import("vue").PropType<import("ant-design-vue/es/button").ButtonSize>;
385
- };
386
- value: {
387
- type: import("vue").PropType<string | number>;
388
- default: any;
389
- };
390
- name: StringConstructor;
391
- type: {
392
- type: import("vue").PropType<"number" | "month" | "reset" | "submit" | "color" | "hidden" | "search" | "date" | "url" | "email" | "time" | "week" | "text" | "button" | "checkbox" | "radio" | "image" | "range" | "datetime-local" | "file" | "password" | "tel">;
393
- default: "number" | "month" | "reset" | "submit" | "color" | "hidden" | "search" | "date" | "url" | "email" | "time" | "week" | "text" | "button" | "checkbox" | "radio" | "image" | "range" | "datetime-local" | "file" | "password" | "tel";
394
- };
395
- onCompositionend: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").CompositionEventHandler>;
396
- onCompositionstart: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").CompositionEventHandler>;
397
- onFocus: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").FocusEventHandler>;
398
- onBlur: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").FocusEventHandler>;
399
- onChange: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").ChangeEventHandler>;
400
- onInput: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").ChangeEventHandler>;
401
- onKeydown: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").KeyboardEventHandler>;
402
- onKeyup: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").KeyboardEventHandler>;
403
- focused: {
404
- type: BooleanConstructor;
405
- default: any;
406
- };
407
- hidden: {
408
- type: BooleanConstructor;
409
- default: any;
410
- };
411
- disabled: {
412
- type: BooleanConstructor;
413
- default: any;
414
- };
415
- prefixCls: StringConstructor;
416
- id: StringConstructor;
417
- prefix: import("vue-types").VueTypeValidableDef<any>;
418
- autofocus: {
419
- type: BooleanConstructor;
420
- default: any;
421
- };
422
- autocomplete: StringConstructor;
423
- readonly: {
424
- type: BooleanConstructor;
425
- default: any;
426
- };
427
- status: import("vue").PropType<"" | "error" | "warning">;
428
- defaultValue: {
429
- type: import("vue").PropType<string | number>;
430
- default: any;
431
- };
432
- 'onUpdate:value': import("vue").PropType<(val: string) => void>;
433
- suffix: import("vue-types").VueTypeValidableDef<any>;
434
- placeholder: {
435
- type: import("vue").PropType<string | number>;
436
- };
437
- loading: {
438
- type: BooleanConstructor;
439
- default: any;
440
- };
441
- lazy: {
442
- type: BooleanConstructor;
443
- default: boolean;
444
- };
445
- maxlength: NumberConstructor;
446
- bordered: {
447
- type: BooleanConstructor;
448
- default: any;
449
- };
450
- showCount: {
451
- type: import("vue").PropType<boolean | import("ant-design-vue/es/vc-input/inputProps").ShowCountProps>;
452
- };
453
- htmlSize: NumberConstructor;
454
- onPressEnter: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").KeyboardEventHandler>;
455
- valueModifiers: ObjectConstructor;
456
- inputElement: import("vue-types").VueTypeValidableDef<any>;
457
- triggerFocus: import("vue").PropType<() => void>;
458
- handleReset: import("vue").PropType<import("ant-design-vue/es/_util/EventInterface").MouseEventHandler>;
459
- addonBefore: import("vue-types").VueTypeValidableDef<any>;
460
- addonAfter: import("vue-types").VueTypeValidableDef<any>;
461
- clearIcon: import("vue-types").VueTypeValidableDef<any>;
462
- allowClear: {
463
- type: BooleanConstructor;
464
- default: any;
465
- };
466
- }>>, {
467
- value: string | number;
468
- type: "number" | "month" | "reset" | "submit" | "color" | "hidden" | "search" | "date" | "url" | "email" | "time" | "week" | "text" | "button" | "checkbox" | "radio" | "image" | "range" | "datetime-local" | "file" | "password" | "tel";
469
- focused: boolean;
470
- hidden: boolean;
471
- disabled: boolean;
472
- autofocus: boolean;
473
- readonly: boolean;
474
- defaultValue: string | number;
475
- loading: boolean;
476
- lazy: boolean;
477
- bordered: boolean;
478
- allowClear: boolean;
479
- }, {}>;
480
42
  EasyCronModal: import("vue").DefineComponent<{}, {
481
43
  bem: {
482
44
  b: (blockSuffix?: string) => string;
@@ -47,6 +47,16 @@ export declare const LlIconPicker: import("ll-plus/es/utils").SFCWithInstall<imp
47
47
  attrs: {
48
48
  [x: string]: unknown;
49
49
  };
50
+ bem: {
51
+ b: (blockSuffix?: string) => string;
52
+ e: (element?: string) => string;
53
+ m: (modifier?: string) => string;
54
+ be: (blockSuffix?: string, element?: string) => string;
55
+ em: (element: string, modifier: string) => string;
56
+ bm: (blockSuffix: string, modifier: string) => string;
57
+ bem: (blockSuffix: string, element: string, modifier: string) => string;
58
+ is: (name?: string) => string;
59
+ };
50
60
  handleCloseModalVisible: () => void;
51
61
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
52
62
  handleModalVisible: (bool: boolean) => boolean;
@@ -14,6 +14,16 @@ declare const _default: import("vue").DefineComponent<{
14
14
  attrs: {
15
15
  [x: string]: unknown;
16
16
  };
17
+ bem: {
18
+ b: (blockSuffix?: string) => string;
19
+ e: (element?: string) => string;
20
+ m: (modifier?: string) => string;
21
+ be: (blockSuffix?: string, element?: string) => string;
22
+ em: (element: string, modifier: string) => string;
23
+ bm: (blockSuffix: string, modifier: string) => string;
24
+ bem: (blockSuffix: string, element: string, modifier: string) => string;
25
+ is: (name?: string) => string;
26
+ };
17
27
  handleCloseModalVisible: () => void;
18
28
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
19
29
  handleModalVisible: (bool: boolean) => boolean;
@@ -46,6 +46,16 @@ declare const _default: import("vue").DefineComponent<{
46
46
  attrs: {
47
47
  [x: string]: unknown;
48
48
  };
49
+ bem: {
50
+ b: (blockSuffix?: string) => string;
51
+ e: (element?: string) => string;
52
+ m: (modifier?: string) => string;
53
+ be: (blockSuffix?: string, element?: string) => string;
54
+ em: (element: string, modifier: string) => string;
55
+ bm: (blockSuffix: string, modifier: string) => string;
56
+ bem: (blockSuffix: string, element: string, modifier: string) => string;
57
+ is: (name?: string) => string;
58
+ };
49
59
  handleCloseModalVisible: () => void;
50
60
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
51
61
  handleModalVisible: (bool: boolean) => boolean;
@@ -45,6 +45,9 @@ export declare const LlInput: import("ll-plus/es/utils").SFCWithInstall<import("
45
45
  } & {}>;
46
46
  innerValue: import("vue").Ref<string | number | undefined>;
47
47
  inputRef: import("vue").Ref<any>;
48
+ allowClear: import("vue").Ref<import("ll-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>>;
49
+ handleMouseOver: () => void;
50
+ handleMouseOut: (e: any) => void;
48
51
  componentType: ({
49
52
  new (...args: any[]): import("@vue/runtime-core").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<Omit<{
50
53
  id: StringConstructor;
@@ -44,6 +44,9 @@ declare const _default: import("vue").DefineComponent<{
44
44
  } & {}>;
45
45
  innerValue: import("vue").Ref<string | number | undefined>;
46
46
  inputRef: import("vue").Ref<any>;
47
+ allowClear: import("vue").Ref<import("ll-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>>;
48
+ handleMouseOver: () => void;
49
+ handleMouseOut: (e: any) => void;
47
50
  componentType: ({
48
51
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<Omit<{
49
52
  id: StringConstructor;
@@ -1,5 +1,5 @@
1
- import { defineComponent, ref, watch, resolveComponent, openBlock, createElementBlock, normalizeClass, unref, createVNode, withCtx } from 'vue';
2
- import { Form, InputSearch, Button } from 'ant-design-vue';
1
+ import { defineComponent, ref, watch, resolveComponent, openBlock, createElementBlock, normalizeClass, unref, createVNode, withCtx, renderSlot, createElementVNode } from 'vue';
2
+ import { Form } from 'ant-design-vue';
3
3
  import '../../../utils/index.mjs';
4
4
  import EasyCronModal from './components/easy-cron-modal.vue.mjs';
5
5
  import './config/index.mjs';
@@ -38,35 +38,46 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
38
38
  formItemContext.onFieldChange();
39
39
  }
40
40
  return (_ctx, _cache) => {
41
+ const _component_a_input = resolveComponent("a-input");
41
42
  const _component_ll_icon = resolveComponent("ll-icon");
43
+ const _component_a_button = resolveComponent("a-button");
44
+ const _component_a_input_group = resolveComponent("a-input-group");
42
45
  return openBlock(), createElementBlock(
43
46
  "div",
44
47
  {
45
48
  class: normalizeClass(unref(bem).b())
46
49
  },
47
50
  [
48
- createVNode(unref(InputSearch), {
49
- value: _ctx.value,
50
- "onUpdate:value": _cache[0] || (_cache[0] = ($event) => _ctx.value = $event),
51
- placeholder: _ctx.placeholder,
52
- readonly: "",
53
- onSearch: showConfigModal
51
+ createVNode(_component_a_input_group, {
52
+ compact: "",
53
+ class: normalizeClass(unref(bem).e("search"))
54
54
  }, {
55
- enterButton: withCtx(() => [
56
- createVNode(unref(Button), null, {
57
- default: withCtx(() => [
58
- createVNode(_component_ll_icon, {
59
- "icon-name": "icon-select",
60
- style: { "font-size": "16px", "display": "flex", "align-items": "center" }
61
- })
62
- ]),
63
- _: 1
64
- /* STABLE */
65
- })
55
+ default: withCtx(() => [
56
+ createVNode(_component_a_input, {
57
+ value: _ctx.value,
58
+ "onUpdate:value": _cache[0] || (_cache[0] = ($event) => _ctx.value = $event),
59
+ readonly: "",
60
+ placeholder: _ctx.placeholder,
61
+ style: { "width": "calc(100% - 36px)" }
62
+ }, null, 8, ["value", "placeholder"]),
63
+ renderSlot(_ctx.$slots, "rightButton", {}, () => [
64
+ createVNode(_component_a_button, {
65
+ class: normalizeClass(unref(bem).e("search-btn")),
66
+ onClick: showConfigModal
67
+ }, {
68
+ default: withCtx(() => [
69
+ createElementVNode("div", null, [
70
+ createVNode(_component_ll_icon, { "icon-name": "icon-select" })
71
+ ])
72
+ ]),
73
+ _: 1
74
+ /* STABLE */
75
+ }, 8, ["class"])
76
+ ])
66
77
  ]),
67
- _: 1
68
- /* STABLE */
69
- }, 8, ["value", "placeholder"]),
78
+ _: 3
79
+ /* FORWARDED */
80
+ }, 8, ["class"]),
70
81
  createVNode(EasyCronModal, {
71
82
  ref_key: "easyCronModalRef",
72
83
  ref: easyCronModalRef,
@@ -1 +1 @@
1
- {"version":3,"file":"easy-cron.vue2.mjs","sources":["../../../../../../packages/components/easy-cron/src/easy-cron.vue"],"sourcesContent":["<template>\n <div :class=\"bem.b()\">\n <InputSearch\n v-model:value=\"value\"\n :placeholder=\"placeholder\"\n readonly\n @search=\"showConfigModal\"\n >\n <template #enterButton>\n <Button>\n <ll-icon\n icon-name=\"icon-select\"\n style=\"font-size: 16px; display: flex; align-items: center\"\n />\n </Button>\n </template>\n </InputSearch>\n <EasyCronModal\n ref=\"easyCronModalRef\"\n v-model:value=\"editCronValue\"\n :exe-start-time=\"exeStartTime\"\n :hide-year=\"hideYear\"\n :remote=\"remote\"\n :hide-second=\"hideSecond\"\n @ok=\"handleSubmit\"\n />\n </div>\n</template>\n\n<script lang=\"ts\" setup>\nimport { ref, watch } from 'vue'\nimport { Form, Button, InputSearch } from 'ant-design-vue'\nimport { createNamespace } from '@ll-plus/utils'\nimport EasyCronModal from './components/easy-cron-modal.vue'\nimport { easyCronEmits, easyCronProps } from './config'\n\ndefineOptions({ name: 'LlEasyCron' })\n// namespace\nconst bem = createNamespace('easy-cron')\n//props\nconst props = defineProps(easyCronProps)\n//emits\nconst emits = defineEmits(easyCronEmits)\n\nconst editCronValue = ref(props.value)\nconst formItemContext = Form.useInjectFormItemContext()\nconst easyCronModalRef = ref()\n\nwatch(\n () => props.value,\n newVal => {\n if (newVal !== editCronValue.value) {\n editCronValue.value = newVal\n }\n }\n)\n\nfunction showConfigModal() {\n if (props.disabled) return\n easyCronModalRef.value?.openModal()\n}\nfunction handleSubmit() {\n emits('change', editCronValue.value)\n emits('update:value', editCronValue.value)\n formItemContext.onFieldChange()\n}\n</script>\n<!-- \n<style lang=\"less\">\n@import 'easy.cron.input.less';\n@import './index.less';\n</style> -->\n"],"names":[],"mappings":";;;;;;;;;;;;;;;AAsCA,IAAM,MAAA,GAAA,GAAM,gBAAgB,WAAW,CAAA,CAAA;AAEvC,IAAA,MAAM,KAAQ,GAAA,OAAA,CAAA;AAEd,IAAA,MAAM,KAAQ,GAAA,MAAA,CAAA;AAEd,IAAM,MAAA,aAAA,GAAgB,GAAI,CAAA,KAAA,CAAM,KAAK,CAAA,CAAA;AACrC,IAAM,MAAA,eAAA,GAAkB,KAAK,wBAAyB,EAAA,CAAA;AACtD,IAAA,MAAM,mBAAmB,GAAI,EAAA,CAAA;AAE7B,IAAA,KAAA;AAAA,MACE,MAAM,KAAM,CAAA,KAAA;AAAA,MACZ,CAAU,MAAA,KAAA;AACR,QAAI,IAAA,MAAA,KAAW,cAAc,KAAO,EAAA;AAClC,UAAA,aAAA,CAAc,KAAQ,GAAA,MAAA,CAAA;AAAA,SACxB;AAAA,OACF;AAAA,KACF,CAAA;AAEA,IAAA,SAAS,eAAkB,GAAA;AACzB,MAAA,IAAI,KAAM,CAAA,QAAA;AAAU,QAAA,OAAA;AACpB,MAAA,gBAAA,CAAiB,OAAO,SAAU,EAAA,CAAA;AAAA,KACpC;AACA,IAAA,SAAS,YAAe,GAAA;AACtB,MAAM,KAAA,CAAA,QAAA,EAAU,cAAc,KAAK,CAAA,CAAA;AACnC,MAAM,KAAA,CAAA,cAAA,EAAgB,cAAc,KAAK,CAAA,CAAA;AACzC,MAAA,eAAA,CAAgB,aAAc,EAAA,CAAA;AAAA,KAChC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"easy-cron.vue2.mjs","sources":["../../../../../../packages/components/easy-cron/src/easy-cron.vue"],"sourcesContent":["<template>\n <div :class=\"bem.b()\">\n <a-input-group compact :class=\"bem.e('search')\">\n <a-input\n v-model:value=\"value\"\n readonly\n :placeholder=\"placeholder\"\n style=\"width: calc(100% - 36px)\"\n />\n\n <slot name=\"rightButton\">\n <a-button :class=\"bem.e('search-btn')\" @click=\"showConfigModal\">\n <div>\n <ll-icon icon-name=\"icon-select\" />\n </div>\n </a-button>\n </slot>\n </a-input-group>\n\n <EasyCronModal\n ref=\"easyCronModalRef\"\n v-model:value=\"editCronValue\"\n :exe-start-time=\"exeStartTime\"\n :hide-year=\"hideYear\"\n :remote=\"remote\"\n :hide-second=\"hideSecond\"\n @ok=\"handleSubmit\"\n />\n </div>\n</template>\n\n<script lang=\"ts\" setup>\nimport { ref, watch } from 'vue'\nimport { Form } from 'ant-design-vue'\nimport { createNamespace } from '@ll-plus/utils'\nimport EasyCronModal from './components/easy-cron-modal.vue'\nimport { easyCronEmits, easyCronProps } from './config'\n\ndefineOptions({ name: 'LlEasyCron' })\n// namespace\nconst bem = createNamespace('easy-cron')\n//props\nconst props = defineProps(easyCronProps)\n//emits\nconst emits = defineEmits(easyCronEmits)\n\nconst editCronValue = ref(props.value)\nconst formItemContext = Form.useInjectFormItemContext()\nconst easyCronModalRef = ref()\n\nwatch(\n () => props.value,\n newVal => {\n if (newVal !== editCronValue.value) {\n editCronValue.value = newVal\n }\n }\n)\n\nfunction showConfigModal() {\n if (props.disabled) return\n easyCronModalRef.value?.openModal()\n}\nfunction handleSubmit() {\n emits('change', editCronValue.value)\n emits('update:value', editCronValue.value)\n formItemContext.onFieldChange()\n}\n</script>\n<!-- \n<style lang=\"less\">\n@import 'easy.cron.input.less';\n@import './index.less';\n</style> -->\n"],"names":[],"mappings":";;;;;;;;;;;;;;;AAwCA,IAAM,MAAA,GAAA,GAAM,gBAAgB,WAAW,CAAA,CAAA;AAEvC,IAAA,MAAM,KAAQ,GAAA,OAAA,CAAA;AAEd,IAAA,MAAM,KAAQ,GAAA,MAAA,CAAA;AAEd,IAAM,MAAA,aAAA,GAAgB,GAAI,CAAA,KAAA,CAAM,KAAK,CAAA,CAAA;AACrC,IAAM,MAAA,eAAA,GAAkB,KAAK,wBAAyB,EAAA,CAAA;AACtD,IAAA,MAAM,mBAAmB,GAAI,EAAA,CAAA;AAE7B,IAAA,KAAA;AAAA,MACE,MAAM,KAAM,CAAA,KAAA;AAAA,MACZ,CAAU,MAAA,KAAA;AACR,QAAI,IAAA,MAAA,KAAW,cAAc,KAAO,EAAA;AAClC,UAAA,aAAA,CAAc,KAAQ,GAAA,MAAA,CAAA;AAAA,SACxB;AAAA,OACF;AAAA,KACF,CAAA;AAEA,IAAA,SAAS,eAAkB,GAAA;AACzB,MAAA,IAAI,KAAM,CAAA,QAAA;AAAU,QAAA,OAAA;AACpB,MAAA,gBAAA,CAAiB,OAAO,SAAU,EAAA,CAAA;AAAA,KACpC;AACA,IAAA,SAAS,YAAe,GAAA;AACtB,MAAM,KAAA,CAAA,QAAA,EAAU,cAAc,KAAK,CAAA,CAAA;AACnC,MAAM,KAAA,CAAA,cAAA,EAAgB,cAAc,KAAK,CAAA,CAAA;AACzC,MAAA,eAAA,CAAgB,aAAc,EAAA,CAAA;AAAA,KAChC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}