@fox-js/foxui 4.0.1-81 → 4.0.1-83

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.
@@ -3,19 +3,15 @@ import { compareTo } from '@fox-js/big-decimal';
3
3
  import { ComponentInternalInstance } from 'vue';
4
4
  import { ComponentPublicInstance } from 'vue';
5
5
  import { CSSProperties } from 'vue';
6
+ import { DefineSetupFnComponent } from 'vue';
6
7
  import { divide } from '@fox-js/big-decimal';
7
8
  import { ExecuteValidator } from '@fox-js/validator';
8
- import { FoxComponentPublicInstance } from './types';
9
- import { FoxUI } from './interface';
10
- import { FoxUIOptions } from './interface';
11
- import { HintTextTooltip } from './types';
12
- import { Interceptor } from '../../utils/Interceptor';
13
9
  import { multiply } from '@fox-js/big-decimal';
14
10
  import { negate } from '@fox-js/big-decimal';
15
11
  import { numberFormat } from '@fox-js/big-decimal';
12
+ import { PublicProps } from 'vue';
16
13
  import { Ref } from 'vue';
17
14
  import { Rule } from '@fox-js/validator';
18
- import { ScopeGetter } from './api';
19
15
  import { unNumberFormat } from '@fox-js/big-decimal';
20
16
  import { UnwrapNestedRefs } from 'vue';
21
17
  import { UnwrapRef } from 'vue';
@@ -213,16 +209,25 @@ export declare const DateUtils: {
213
209
  /**
214
210
  * 格式化
215
211
  * @param date
216
- * @param template
212
+ * @param formatTemplate
217
213
  * @returns
218
214
  */
219
- format(date: Date, template: string): string;
215
+ format(date: Date, formatTemplate?: string): string;
220
216
  /**
221
217
  * 解析
222
- * @param str
223
- * @param template
218
+ * @param dateString
219
+ * @param formatTemplate
224
220
  */
225
- parser(str: string, template: string): Date;
221
+ parser(dateString: string, formatTemplate?: string): Date;
222
+ /**
223
+ * 返回日期格式字符串
224
+ * @param i 0返回今天的日期、1返回明天的日期,2返回后天得日期,依次类推
225
+ * @param startDate 起点日期
226
+ * @param formatTemplate 格式化模版
227
+ * @return '2014-12-31'
228
+ *
229
+ */
230
+ getDay(i: number, startDate?: Date, formatTemplate?: string): string;
226
231
  /**
227
232
  * 是否为闫年
228
233
  * @return {Boolse} true|false
@@ -232,12 +237,7 @@ export declare const DateUtils: {
232
237
  * 返回星期数
233
238
  * @return {String}
234
239
  */
235
- getWhatDay(year: number, month: number, day: number): string;
236
- /**
237
- * 返回星期数
238
- * @return {Number}
239
- */
240
- getMonthPreDay(year: number, month: number): number;
240
+ getWhatDay(year: number, month: number, day: number): number;
241
241
  /**
242
242
  * 返回月份天数
243
243
  * @return {Number}
@@ -250,68 +250,49 @@ export declare const DateUtils: {
250
250
  getNumTwoBit(n: number): string;
251
251
  /**
252
252
  * 日期对象转成字符串
253
+ * 转换为YYYY-MM-DD格式
253
254
  * @return {string}
254
255
  */
255
256
  date2Str: (date: Date, split?: string) => string;
256
257
  /**
257
- * 返回日期格式字符串
258
- * @param {Number} 0返回今天的日期、1返回明天的日期,2返回后天得日期,依次类推
259
- * @param {Date} 起点日期
260
- * @param {formatTemplate} 格式化模版
261
- * @return {string} '2014-12-31'
258
+ * 对比
259
+ * 0:相等, 1: x > y, -1: x < y
262
260
  *
263
- */
264
- getDay(i: number, startDate?: Date, formatTemplate?: string): string;
265
- /**
266
- * 时间比较
267
- * @return
268
- */
269
- compareDate(date1: string | Date, date2: string | Date): boolean;
270
- /**
271
- * 时间是否相等
272
- * @return
273
- */
274
- isEqual(date1: string | Date | null, date2: string | Date | null): boolean;
275
- /**
276
- * get month week
277
- * @param year
278
- * @param month
279
- * @param date
280
- * @param firstDayOfWeek
261
+ * @param x
262
+ * @param y
263
+ * @param formatTemplate
281
264
  * @returns
282
265
  */
283
- getMonthWeek: (year: string, month: string, date: string, firstDayOfWeek?: number) => number;
266
+ compare(x: string | Date, y: string | Date, formatTemplate?: string): number;
284
267
  /**
285
- * get year week
286
- * @param year
287
- * @param month
268
+ * 判断
288
269
  * @param date
289
- * @param firstDayOfWeek
290
- * @returns
291
- */
292
- getYearWeek: (year: string, month: string, date: string, firstDayOfWeek?: number) => number;
293
- /**
294
- * get week date
295
- */
296
- getWeekDate: (year: string, month: string, date: string, firstDayOfWeek?: number) => string[];
297
- /**
298
- * format result date
270
+ * @param startDate 开始日期
271
+ * @param span 允许负数
272
+ * @param dateUint span单位 'year'|'month'|'day'
299
273
  */
300
- formatResultDate: (date: string) => string[];
274
+ between(date: Date, startDate: Date, span: number, dateUint: "year" | "month" | "day"): boolean;
301
275
  /**
302
- * 判断日期是否在范围内
276
+ * 判断日期是否在范围内(day)
303
277
  * @param date
304
278
  * @param startDate
305
279
  * @param span 允许负数
306
280
  */
307
281
  inScope4Day(date: Date, startDate: Date, span: number): boolean;
308
282
  /**
309
- * 判断日期是否在范围内
283
+ * 判断日期是否在范围内(month)
310
284
  * @param date
311
285
  * @param startDate
312
286
  * @param span
313
287
  */
314
288
  inScope4Month(date: Date, startDate: Date, span: number): boolean;
289
+ /**
290
+ * 判断日期是否在范围内(year)
291
+ * @param date
292
+ * @param startDate
293
+ * @param span
294
+ */
295
+ inScope4Year(date: Date, startDate: Date, span: number): boolean;
315
296
  };
316
297
 
317
298
  /**
@@ -338,525 +319,485 @@ export declare function decimalLength(value: string | number): number;
338
319
  declare const _default: FoxUIApp;
339
320
  export default _default;
340
321
 
341
- declare const _default_10: any;
322
+ declare const _default_10: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
342
323
  export { _default_10 as FoxSlotItem }
343
324
  export { _default_10 as SlotItem }
344
325
 
345
- declare const _default_100: any;
346
- export { _default_100 as FoxSteps }
347
- export { _default_100 as Steps }
326
+ declare const _default_100: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
327
+ export { _default_100 as FoxVideo }
328
+ export { _default_100 as Video }
348
329
 
349
- declare const _default_101: any;
350
- export { _default_101 as FoxStep }
351
- export { _default_101 as Step }
330
+ declare const _default_101: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
331
+ export { _default_101 as FoxSteps }
332
+ export { _default_101 as Steps }
352
333
 
353
- declare const _default_102: any;
354
- export { _default_102 as FoxSwiper }
355
- export { _default_102 as Swiper }
334
+ declare const _default_102: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
335
+ export { _default_102 as FoxStep }
336
+ export { _default_102 as Step }
356
337
 
357
- declare const _default_103: any;
358
- export { _default_103 as FoxSwiperItem }
359
- export { _default_103 as SwiperItem }
338
+ declare const _default_103: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
339
+ export { _default_103 as FoxSwiper }
340
+ export { _default_103 as Swiper }
360
341
 
361
- declare const _default_104: any;
362
- export { _default_104 as FoxPrice }
363
- export { _default_104 as Price }
342
+ declare const _default_104: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
343
+ export { _default_104 as FoxSwiperItem }
344
+ export { _default_104 as SwiperItem }
364
345
 
365
- declare const _default_105: any;
366
- export { _default_105 as CountUp }
367
- export { _default_105 as FoxCountUp }
346
+ declare const _default_105: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
347
+ export { _default_105 as FoxPrice }
348
+ export { _default_105 as Price }
368
349
 
369
- declare const _default_106: any;
370
- export { _default_106 as CountDown }
371
- export { _default_106 as FoxCountDown }
350
+ declare const _default_106: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
351
+ export { _default_106 as CountUp }
352
+ export { _default_106 as FoxCountUp }
372
353
 
373
- declare const _default_107: any;
374
- export { _default_107 as Badge }
375
- export { _default_107 as FoxBadge }
354
+ declare const _default_107: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
355
+ export { _default_107 as CountDown }
356
+ export { _default_107 as FoxCountDown }
376
357
 
377
- declare const _default_108: any;
378
- export { _default_108 as FoxTag }
379
- export { _default_108 as Tag }
358
+ declare const _default_108: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
359
+ export { _default_108 as Badge }
360
+ export { _default_108 as FoxBadge }
380
361
 
381
- declare const _default_109: any;
382
- export { _default_109 as FoxPopover }
383
- export { _default_109 as Popover }
362
+ declare const _default_109: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
363
+ export { _default_109 as FoxTag }
364
+ export { _default_109 as Tag }
384
365
 
385
- declare const _default_11: any;
366
+ declare const _default_11: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
386
367
  export { _default_11 as FoxInputItem }
387
368
  export { _default_11 as InputItem }
388
369
 
389
- declare const _default_110: any;
390
- export { _default_110 as FoxSkeleton }
391
- export { _default_110 as Skeleton }
370
+ declare const _default_110: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
371
+ export { _default_110 as FoxPopover }
372
+ export { _default_110 as Popover }
392
373
 
393
- declare const _default_111: any;
394
- export { _default_111 as Collapse }
395
- export { _default_111 as FoxCollapse }
374
+ declare const _default_111: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
375
+ export { _default_111 as FoxSkeleton }
376
+ export { _default_111 as Skeleton }
396
377
 
397
- declare const _default_112: any;
398
- export { _default_112 as CollapseItem }
399
- export { _default_112 as FoxCollapseItem }
378
+ declare const _default_112: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
379
+ export { _default_112 as Collapse }
380
+ export { _default_112 as FoxCollapse }
400
381
 
401
- declare const _default_113: any;
402
- export { _default_113 as FoxTable }
403
- export { _default_113 as Table }
382
+ declare const _default_113: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
383
+ export { _default_113 as CollapseItem }
384
+ export { _default_113 as FoxCollapseItem }
404
385
 
405
- declare const _default_114: any;
406
- export { _default_114 as Ellipsis }
407
- export { _default_114 as FoxEllipsis }
386
+ declare const _default_114: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
387
+ export { _default_114 as FoxTable }
388
+ export { _default_114 as Table }
408
389
 
409
- declare const _default_115: any;
410
- export { _default_115 as Animate }
411
- export { _default_115 as FoxAnimate }
390
+ declare const _default_115: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
391
+ export { _default_115 as Ellipsis }
392
+ export { _default_115 as FoxEllipsis }
412
393
 
413
- declare const _default_116: any;
414
- export { _default_116 as FoxWaterMark }
415
- export { _default_116 as WaterMark }
394
+ declare const _default_116: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
395
+ export { _default_116 as Animate }
396
+ export { _default_116 as FoxAnimate }
416
397
 
417
- declare const _default_117: any;
418
- export { _default_117 as FoxTrendArrow }
419
- export { _default_117 as TrendArrow }
398
+ declare const _default_117: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
399
+ export { _default_117 as FoxWaterMark }
400
+ export { _default_117 as WaterMark }
420
401
 
421
- declare const _default_118: any;
422
- export { _default_118 as FoxTour }
423
- export { _default_118 as Tour }
402
+ declare const _default_118: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
403
+ export { _default_118 as FoxTrendArrow }
404
+ export { _default_118 as TrendArrow }
424
405
 
425
- declare const _default_119: any;
426
- export { _default_119 as Address }
427
- export { _default_119 as FoxAddress }
406
+ declare const _default_119: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
407
+ export { _default_119 as FoxTour }
408
+ export { _default_119 as Tour }
428
409
 
429
- declare const _default_12: any;
410
+ declare const _default_12: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
430
411
  export { _default_12 as FoxMoneyItem }
431
412
  export { _default_12 as MoneyItem }
432
413
 
433
- declare const _default_120: any;
414
+ declare const _default_120: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
434
415
  export { _default_120 as Barrage }
435
416
  export { _default_120 as FoxBarrage }
436
417
 
437
- declare const _default_121: any;
418
+ declare const _default_121: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
438
419
  export { _default_121 as FoxSignature }
439
420
  export { _default_121 as Signature }
440
421
 
441
- declare const _default_122: any;
442
- export { _default_122 as FoxTimeSelect }
443
- export { _default_122 as TimeSelect }
444
-
445
- declare const _default_123: any;
446
- export { _default_123 as FoxTimePannel }
447
- export { _default_123 as TimePannel }
448
-
449
- declare const _default_124: any;
450
- export { _default_124 as FoxTimeDetail }
451
- export { _default_124 as TimeDetail }
452
-
453
- declare const _default_125: any;
454
- export { _default_125 as FoxSku }
455
- export { _default_125 as Sku }
456
-
457
- declare const _default_126: any;
458
- export { _default_126 as Card }
459
- export { _default_126 as FoxCard }
460
-
461
- declare const _default_127: any;
462
- export { _default_127 as Ecard }
463
- export { _default_127 as FoxEcard }
464
-
465
- declare const _default_128: any;
466
- export { _default_128 as AddressList }
467
- export { _default_128 as FoxAddressList }
468
-
469
- declare const _default_129: any;
470
- export { _default_129 as Category }
471
- export { _default_129 as FoxCategory }
472
-
473
- declare const _default_13: any;
422
+ declare const _default_13: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
474
423
  export { _default_13 as FoxTextareaItem }
475
424
  export { _default_13 as TextareaItem }
476
425
 
477
- declare const _default_130: any;
478
- export { _default_130 as CategoryPane }
479
- export { _default_130 as FoxCategoryPane }
480
-
481
- declare const _default_131: any;
482
- export { _default_131 as Comment }
483
- export { _default_131 as FoxComment }
484
-
485
- declare const _default_14: any;
426
+ declare const _default_14: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
486
427
  export { _default_14 as FoxTextarea }
487
428
  export { _default_14 as Textarea }
488
429
 
489
- declare const _default_15: any;
430
+ declare const _default_15: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
490
431
  export { _default_15 as FoxPickerItem }
491
432
  export { _default_15 as PickerItem }
492
433
 
493
- declare const _default_16: any;
434
+ declare const _default_16: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
494
435
  export { _default_16 as CascaderItem }
495
436
  export { _default_16 as FoxCascaderItem }
496
437
 
497
- declare const _default_17: any;
438
+ declare const _default_17: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
498
439
  export { _default_17 as DateItem }
499
440
  export { _default_17 as FoxDateItem }
500
441
 
501
- declare const _default_18: any;
442
+ declare const _default_18: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
502
443
  export { _default_18 as CalendarItem }
503
444
  export { _default_18 as FoxCalendarItem }
504
445
 
505
- declare const _default_19: any;
446
+ declare const _default_19: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
506
447
  export { _default_19 as FoxRadio }
507
448
  export { _default_19 as Radio }
508
449
 
509
- declare const _default_2: any;
450
+ declare const _default_2: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
510
451
  export { _default_2 as FoxPage }
511
452
  export { _default_2 as Page }
512
453
 
513
- declare const _default_20: any;
454
+ declare const _default_20: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
514
455
  export { _default_20 as FoxRadioGroup }
515
456
  export { _default_20 as RadioGroup }
516
457
 
517
- declare const _default_21: any;
458
+ declare const _default_21: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
518
459
  export { _default_21 as FoxRadioItem }
519
460
  export { _default_21 as RadioItem }
520
461
 
521
- declare const _default_22: any;
462
+ declare const _default_22: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
522
463
  export { _default_22 as Checkbox }
523
464
  export { _default_22 as FoxCheckbox }
524
465
 
525
- declare const _default_23: any;
466
+ declare const _default_23: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
526
467
  export { _default_23 as CheckboxGroup }
527
468
  export { _default_23 as FoxCheckboxGroup }
528
469
 
529
- declare const _default_24: any;
470
+ declare const _default_24: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
530
471
  export { _default_24 as CheckboxItem }
531
472
  export { _default_24 as FoxCheckboxItem }
532
473
 
533
- declare const _default_25: any;
474
+ declare const _default_25: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
534
475
  export { _default_25 as FoxSwitchItem }
535
476
  export { _default_25 as SwitchItem }
536
477
 
537
- declare const _default_26: any;
478
+ declare const _default_26: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
538
479
  export { _default_26 as FoxLinkItem }
539
480
  export { _default_26 as LinkItem }
540
481
 
541
- declare const _default_27: any;
482
+ declare const _default_27: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
542
483
  export { _default_27 as FoxRateItem }
543
484
  export { _default_27 as RateItem }
544
485
 
545
- declare const _default_28: any;
486
+ declare const _default_28: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
546
487
  export { _default_28 as ActionsheetPane }
547
488
  export { _default_28 as FoxActionsheetPane }
548
489
 
549
- declare const _default_29: any;
490
+ declare const _default_29: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
550
491
  export { _default_29 as ActionsheetItem }
551
492
  export { _default_29 as FoxActionsheetItem }
552
493
 
553
- declare const _default_3: any;
494
+ declare const _default_3: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
554
495
  export { _default_3 as FoxHeaderBar }
555
496
  export { _default_3 as HeaderBar }
556
497
 
557
- declare const _default_30: any;
498
+ declare const _default_30: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
558
499
  export { _default_30 as FoxInputNumberItem }
559
500
  export { _default_30 as InputNumberItem }
560
501
 
561
- declare const _default_31: any;
502
+ declare const _default_31: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
562
503
  export { _default_31 as FoxTabsBar }
563
504
  export { _default_31 as TabsBar }
564
505
 
565
- declare const _default_32: any;
506
+ declare const _default_32: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
566
507
  export { _default_32 as FoxTabsContainer }
567
508
  export { _default_32 as TabsContainer }
568
509
 
569
- declare const _default_33: any;
510
+ declare const _default_33: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
570
511
  export { _default_33 as FoxTabsPane }
571
512
  export { _default_33 as TabsPane }
572
513
 
573
- declare const _default_34: any;
514
+ declare const _default_34: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
574
515
  export { _default_34 as FoxTabsFrame }
575
516
  export { _default_34 as TabsFrame }
576
517
 
577
- declare const _default_35: any;
518
+ declare const _default_35: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
578
519
  export { _default_35 as FoxStepsBar }
579
520
  export { _default_35 as StepsBar }
580
521
 
581
- declare const _default_36: any;
522
+ declare const _default_36: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
582
523
  export { _default_36 as FloatingButton }
583
524
  export { _default_36 as FoxFloatingButton }
584
525
 
585
- declare const _default_37: any;
526
+ declare const _default_37: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
586
527
  export { _default_37 as FoxMoreButton }
587
528
  export { _default_37 as MoreButton }
588
529
 
589
- declare const _default_38: any;
530
+ declare const _default_38: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
590
531
  export { _default_38 as FoxPopupWrapper }
591
532
  export { _default_38 as PopupWrapper }
592
533
 
593
- declare const _default_39: any;
534
+ declare const _default_39: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
594
535
  export { _default_39 as Dropdown }
595
536
  export { _default_39 as FoxDropdown }
596
537
 
597
- declare const _default_4: any;
538
+ declare const _default_4: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
598
539
  export { _default_4 as FooterBar }
599
540
  export { _default_4 as FoxFooterBar }
600
541
 
601
- declare const _default_40: any;
542
+ declare const _default_40: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
602
543
  export { _default_40 as FoxPopoverDialog }
603
544
  export { _default_40 as PopoverDialog }
604
545
 
605
- declare const _default_41: any;
546
+ declare const _default_41: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
606
547
  export { _default_41 as FoxText }
607
548
  export { _default_41 as Text }
608
549
 
609
- declare const _default_42: any;
550
+ declare const _default_42: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
610
551
  export { _default_42 as FoxMapping }
611
552
  export { _default_42 as Mapping }
612
553
 
613
- declare const _default_43: any;
554
+ declare const _default_43: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
614
555
  export { _default_43 as DomainProvider }
615
556
  export { _default_43 as FoxDomainProvider }
616
557
 
617
- declare const _default_44: any;
558
+ declare const _default_44: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
618
559
  export { _default_44 as FoxRollingProvider }
619
560
  export { _default_44 as RollingProvider }
620
561
 
621
- declare const _default_45: any;
562
+ declare const _default_45: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
622
563
  export { _default_45 as Button }
623
564
  export { _default_45 as FoxButton }
624
565
 
625
- declare const _default_46: any;
566
+ declare const _default_46: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
626
567
  export { _default_46 as Cell }
627
568
  export { _default_46 as FoxCell }
628
569
 
629
- declare const _default_47: any;
630
- export { _default_47 as CellGroup }
631
- export { _default_47 as FoxCellGroup }
570
+ declare const _default_47: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
571
+ export { _default_47 as FoxIcon }
572
+ export { _default_47 as Icon }
632
573
 
633
- declare const _default_48: any;
634
- export { _default_48 as FoxOverLay }
635
- export { _default_48 as OverLay }
574
+ declare const _default_48: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
575
+ export { _default_48 as CellGroup }
576
+ export { _default_48 as FoxCellGroup }
636
577
 
637
- declare const _default_49: any;
638
- export { _default_49 as FoxPopup }
639
- export { _default_49 as Popup }
578
+ declare const _default_49: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
579
+ export { _default_49 as FoxOverLay }
580
+ export { _default_49 as OverLay }
640
581
 
641
- declare const _default_5: any;
582
+ declare const _default_5: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
642
583
  export { _default_5 as Content }
643
584
  export { _default_5 as FoxContent }
644
585
 
645
- declare const _default_50: any;
646
- export { _default_50 as FoxImage }
647
- export { _default_50 as Image }
586
+ declare const _default_50: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
587
+ export { _default_50 as FoxPopup }
588
+ export { _default_50 as Popup }
648
589
 
649
- declare const _default_51: any;
650
- export { _default_51 as FoxLayout }
651
- export { _default_51 as Layout }
590
+ declare const _default_51: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
591
+ export { _default_51 as FoxImage }
592
+ export { _default_51 as Image }
652
593
 
653
- declare const _default_52: any;
654
- export { _default_52 as Col }
655
- export { _default_52 as FoxCol }
594
+ declare const _default_52: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
595
+ export { _default_52 as FoxLayout }
596
+ export { _default_52 as Layout }
656
597
 
657
- declare const _default_53: any;
658
- export { _default_53 as FoxRow }
659
- export { _default_53 as Row }
598
+ declare const _default_53: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
599
+ export { _default_53 as Col }
600
+ export { _default_53 as FoxCol }
660
601
 
661
- declare const _default_54: any;
662
- export { _default_54 as FoxSticky }
663
- export { _default_54 as Sticky }
602
+ declare const _default_54: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
603
+ export { _default_54 as FoxRow }
604
+ export { _default_54 as Row }
664
605
 
665
- declare const _default_55: any;
666
- export { _default_55 as Divider }
667
- export { _default_55 as FoxDivider }
606
+ declare const _default_55: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
607
+ export { _default_55 as FoxSticky }
608
+ export { _default_55 as Sticky }
668
609
 
669
- declare const _default_56: any;
670
- export { _default_56 as FoxGrid }
671
- export { _default_56 as Grid }
610
+ declare const _default_56: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
611
+ export { _default_56 as Divider }
612
+ export { _default_56 as FoxDivider }
672
613
 
673
- declare const _default_57: any;
674
- export { _default_57 as FoxGridItem }
675
- export { _default_57 as GridItem }
614
+ declare const _default_57: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
615
+ export { _default_57 as FoxGrid }
616
+ export { _default_57 as Grid }
676
617
 
677
- declare const _default_58: any;
678
- export { _default_58 as FoxNavbar }
679
- export { _default_58 as Navbar }
618
+ declare const _default_58: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
619
+ export { _default_58 as FoxGridItem }
620
+ export { _default_58 as GridItem }
680
621
 
681
- declare const _default_59: any;
682
- export { _default_59 as FixedNav }
683
- export { _default_59 as FoxFixedNav }
622
+ declare const _default_59: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
623
+ export { _default_59 as FoxNavbar }
624
+ export { _default_59 as Navbar }
684
625
 
685
- declare const _default_6: any;
626
+ declare const _default_6: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
686
627
  export { _default_6 as FoxGroup }
687
628
  export { _default_6 as Group }
688
629
 
689
- declare const _default_60: any;
690
- export { _default_60 as FoxMenu }
691
- export { _default_60 as Menu }
630
+ declare const _default_60: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
631
+ export { _default_60 as FixedNav }
632
+ export { _default_60 as FoxFixedNav }
692
633
 
693
- declare const _default_61: any;
694
- export { _default_61 as FoxMenuItem }
695
- export { _default_61 as MenuItem }
634
+ declare const _default_61: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
635
+ export { _default_61 as FoxMenu }
636
+ export { _default_61 as Menu }
696
637
 
697
- declare const _default_62: any;
698
- export { _default_62 as FoxTabbar }
699
- export { _default_62 as Tabbar }
638
+ declare const _default_62: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
639
+ export { _default_62 as FoxMenuItem }
640
+ export { _default_62 as MenuItem }
700
641
 
701
- declare const _default_63: any;
702
- export { _default_63 as FoxTabbarItem }
703
- export { _default_63 as TabbarItem }
642
+ declare const _default_63: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
643
+ export { _default_63 as FoxTabbar }
644
+ export { _default_63 as Tabbar }
704
645
 
705
- declare const _default_64: any;
706
- export { _default_64 as Elevator }
707
- export { _default_64 as FoxElevator }
646
+ declare const _default_64: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
647
+ export { _default_64 as FoxTabbarItem }
648
+ export { _default_64 as TabbarItem }
708
649
 
709
- declare const _default_65: any;
710
- export { _default_65 as FoxPagination }
711
- export { _default_65 as Pagination }
650
+ declare const _default_65: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
651
+ export { _default_65 as Elevator }
652
+ export { _default_65 as FoxElevator }
712
653
 
713
- declare const _default_66: any;
714
- export { _default_66 as FoxTabs }
715
- export { _default_66 as Tabs }
654
+ declare const _default_66: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
655
+ export { _default_66 as FoxPagination }
656
+ export { _default_66 as Pagination }
716
657
 
717
- declare const _default_67: any;
718
- export { _default_67 as FoxTabPane }
719
- export { _default_67 as TabPane }
658
+ declare const _default_67: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
659
+ export { _default_67 as FoxTabs }
660
+ export { _default_67 as Tabs }
720
661
 
721
- declare const _default_68: any;
722
- export { _default_68 as FoxIndicator }
723
- export { _default_68 as Indicator }
662
+ declare const _default_68: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
663
+ export { _default_68 as FoxTabPane }
664
+ export { _default_68 as TabPane }
724
665
 
725
- declare const _default_69: any;
726
- export { _default_69 as FoxSideNavBar }
727
- export { _default_69 as SideNavBar }
666
+ declare const _default_69: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
667
+ export { _default_69 as FoxIndicator }
668
+ export { _default_69 as Indicator }
728
669
 
729
- declare const _default_7: any;
670
+ declare const _default_7: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
730
671
  export { _default_7 as FoxItem }
731
672
  export { _default_7 as Item }
732
673
 
733
- declare const _default_70: any;
734
- export { _default_70 as FoxSideNavBarItem }
735
- export { _default_70 as SideNavBarItem }
674
+ declare const _default_70: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
675
+ export { _default_70 as FoxSideNavBar }
676
+ export { _default_70 as SideNavBar }
736
677
 
737
- declare const _default_71: any;
738
- export { _default_71 as FoxSubSideNavBar }
739
- export { _default_71 as SubSideNavBar }
678
+ declare const _default_71: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
679
+ export { _default_71 as FoxSideNavBarItem }
680
+ export { _default_71 as SideNavBarItem }
740
681
 
741
- declare const _default_72: any;
742
- export { _default_72 as FoxRange }
743
- export { _default_72 as Range }
682
+ declare const _default_72: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
683
+ export { _default_72 as FoxSubSideNavBar }
684
+ export { _default_72 as SubSideNavBar }
744
685
 
745
- declare const _default_73: any;
746
- export { _default_73 as FoxSearchBar }
747
- export { _default_73 as SearchBar }
686
+ declare const _default_73: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
687
+ export { _default_73 as FoxRange }
688
+ export { _default_73 as Range }
748
689
 
749
- declare const _default_74: any;
750
- export { _default_74 as Cascader }
751
- export { _default_74 as FoxCascader }
690
+ declare const _default_74: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
691
+ export { _default_74 as FoxSearchBar }
692
+ export { _default_74 as SearchBar }
752
693
 
753
- declare const _default_75: any;
754
- export { _default_75 as Calendar }
755
- export { _default_75 as FoxCalendar }
694
+ declare const _default_75: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
695
+ export { _default_75 as Cascader }
696
+ export { _default_75 as FoxCascader }
756
697
 
757
- declare const _default_76: any;
758
- export { _default_76 as DatePicker }
759
- export { _default_76 as FoxDatePicker }
698
+ declare const _default_76: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
699
+ export { _default_76 as Calendar }
700
+ export { _default_76 as FoxCalendar }
760
701
 
761
- declare const _default_77: any;
762
- export { _default_77 as FoxInputNumber }
763
- export { _default_77 as InputNumber }
702
+ declare const _default_77: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
703
+ export { _default_77 as DatePicker }
704
+ export { _default_77 as FoxDatePicker }
764
705
 
765
- declare const _default_78: any;
766
- export { _default_78 as FoxRate }
767
- export { _default_78 as Rate }
706
+ declare const _default_78: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
707
+ export { _default_78 as FoxInputNumber }
708
+ export { _default_78 as InputNumber }
768
709
 
769
- declare const _default_79: any;
770
- export { _default_79 as FoxPicker }
771
- export { _default_79 as Picker }
710
+ declare const _default_79: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
711
+ export { _default_79 as FoxRate }
712
+ export { _default_79 as Rate }
772
713
 
773
- declare const _default_8: any;
714
+ declare const _default_8: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
774
715
  export { _default_8 as FoxRowItem }
775
716
  export { _default_8 as RowItem }
776
717
 
777
- declare const _default_80: any;
778
- export { _default_80 as FoxShortPassword }
779
- export { _default_80 as ShortPassword }
718
+ declare const _default_80: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
719
+ export { _default_80 as FoxPicker }
720
+ export { _default_80 as Picker }
780
721
 
781
- declare const _default_81: any;
782
- export { _default_81 as FoxUploader }
783
- export { _default_81 as Uploader }
722
+ declare const _default_81: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
723
+ export { _default_81 as FoxShortPassword }
724
+ export { _default_81 as ShortPassword }
784
725
 
785
- declare const _default_82: any;
786
- export { _default_82 as FoxNumberKeyboard }
787
- export { _default_82 as NumberKeyboard }
726
+ declare const _default_82: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
727
+ export { _default_82 as FoxUploader }
728
+ export { _default_82 as Uploader }
788
729
 
789
- declare const _default_83: any;
790
- export { _default_83 as FoxSwipe }
791
- export { _default_83 as Swipe }
730
+ declare const _default_83: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
731
+ export { _default_83 as FoxNumberKeyboard }
732
+ export { _default_83 as NumberKeyboard }
792
733
 
793
- declare const _default_84: any;
794
- export { _default_84 as ActionSheet }
795
- export { _default_84 as FoxActionSheet }
734
+ declare const _default_84: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
735
+ export { _default_84 as FoxSwipe }
736
+ export { _default_84 as Swipe }
796
737
 
797
- declare const _default_85: any;
798
- export { _default_85 as BackTop }
799
- export { _default_85 as FoxBackTop }
738
+ declare const _default_85: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
739
+ export { _default_85 as ActionSheet }
740
+ export { _default_85 as FoxActionSheet }
800
741
 
801
- declare const _default_86: any;
802
- export { _default_86 as Drag }
803
- export { _default_86 as FoxDrag }
742
+ declare const _default_86: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
743
+ export { _default_86 as BackTop }
744
+ export { _default_86 as FoxBackTop }
804
745
 
805
- declare const _default_87: any;
806
- export { _default_87 as FoxInfiniteLoading }
807
- export { _default_87 as InfiniteLoading }
746
+ declare const _default_87: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
747
+ export { _default_87 as Drag }
748
+ export { _default_87 as FoxDrag }
808
749
 
809
- declare const _default_88: any;
810
- export { _default_88 as FoxPullRefresh }
811
- export { _default_88 as PullRefresh }
750
+ declare const _default_88: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
751
+ export { _default_88 as FoxInfiniteLoading }
752
+ export { _default_88 as InfiniteLoading }
812
753
 
813
- declare const _default_89: any;
814
- export { _default_89 as FoxSwitch }
815
- export { _default_89 as Switch }
754
+ declare const _default_89: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
755
+ export { _default_89 as FoxPullRefresh }
756
+ export { _default_89 as PullRefresh }
816
757
 
817
- declare const _default_9: any;
758
+ declare const _default_9: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
818
759
  export { _default_9 as ButtonsItem }
819
760
  export { _default_9 as FoxButtonsItem }
820
761
 
821
- declare const _default_90: any;
822
- export { _default_90 as Audio }
823
- export { _default_90 as FoxAudio }
762
+ declare const _default_90: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
763
+ export { _default_90 as FoxSwitch }
764
+ export { _default_90 as Switch }
824
765
 
825
- declare const _default_91: any;
826
- export { _default_91 as AudioOperate }
827
- export { _default_91 as FoxAudioOperate }
766
+ declare const _default_91: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
767
+ export { _default_91 as Audio }
768
+ export { _default_91 as FoxAudio }
828
769
 
829
- declare const _default_92: any;
830
- export { _default_92 as Avatar }
831
- export { _default_92 as FoxAvatar }
770
+ declare const _default_92: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
771
+ export { _default_92 as AudioOperate }
772
+ export { _default_92 as FoxAudioOperate }
832
773
 
833
- declare const _default_93: any;
834
- export { _default_93 as AvatarGroup }
835
- export { _default_93 as FoxAvatarGroup }
774
+ declare const _default_93: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
775
+ export { _default_93 as Avatar }
776
+ export { _default_93 as FoxAvatar }
836
777
 
837
- declare const _default_94: any;
838
- export { _default_94 as FoxList }
839
- export { _default_94 as List }
778
+ declare const _default_94: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
779
+ export { _default_94 as AvatarGroup }
780
+ export { _default_94 as FoxAvatarGroup }
840
781
 
841
- declare const _default_95: any;
842
- export { _default_95 as FoxProgress }
843
- export { _default_95 as Progress }
782
+ declare const _default_95: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
783
+ export { _default_95 as FoxList }
784
+ export { _default_95 as List }
844
785
 
845
- declare const _default_96: any;
846
- export { _default_96 as CircleProgress }
847
- export { _default_96 as FoxCircleProgress }
786
+ declare const _default_96: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
787
+ export { _default_96 as FoxProgress }
788
+ export { _default_96 as Progress }
848
789
 
849
- declare const _default_97: any;
850
- export { _default_97 as FoxNoticeBar }
851
- export { _default_97 as NoticeBar }
790
+ declare const _default_97: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
791
+ export { _default_97 as CircleProgress }
792
+ export { _default_97 as FoxCircleProgress }
852
793
 
853
- declare const _default_98: any;
854
- export { _default_98 as Empty }
855
- export { _default_98 as FoxEmpty }
794
+ declare const _default_98: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
795
+ export { _default_98 as FoxNoticeBar }
796
+ export { _default_98 as NoticeBar }
856
797
 
857
- declare const _default_99: any;
858
- export { _default_99 as FoxVideo }
859
- export { _default_99 as Video }
798
+ declare const _default_99: DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>;
799
+ export { _default_99 as Empty }
800
+ export { _default_99 as FoxEmpty }
860
801
 
861
802
  /**
862
803
  * anyNode
@@ -1139,6 +1080,65 @@ export declare function extend(...args: any[]): any;
1139
1080
  */
1140
1081
  export declare const floatData: (format: any, dataOp: any, mapOps: any) => any;
1141
1082
 
1083
+ declare type FoxComponentPublicInstance = any;
1084
+
1085
+ /**
1086
+ * Fox UI
1087
+ */
1088
+ declare interface FoxUI {
1089
+ /**
1090
+ * 版本号
1091
+ */
1092
+ version: string;
1093
+ /**
1094
+ * 安装
1095
+ * @param app
1096
+ * @param options
1097
+ */
1098
+ install(app: App, ...options: any[]): any;
1099
+ /**
1100
+ * 更新Layout
1101
+ *
1102
+ * @param options
1103
+ * @param rootDomain
1104
+ */
1105
+ updateLayout(options: FoxUIOptions, rootDomain?: Domain): void;
1106
+ /**
1107
+ * 设置scope getter
1108
+ * @param getter
1109
+ */
1110
+ setScopeGetter(getter: ScopeGetter): void;
1111
+ /**
1112
+ * 设置API
1113
+ * @param name
1114
+ * @param func
1115
+ * @param scope
1116
+ */
1117
+ setAPI(name: string, func: any, scope?: string): void;
1118
+ /**
1119
+ * 获取API
1120
+ * @param proxy
1121
+ * @param name
1122
+ * @param scope
1123
+ */
1124
+ getAPI(proxy: ComponentPublicInstance, name: string, scope?: string): any | null;
1125
+ /**
1126
+ * 批量增加api
1127
+ * @param apis
1128
+ * @param scope
1129
+ */
1130
+ batchSetAPI(apis: Record<string, any>, scope?: string): void;
1131
+ /**
1132
+ * 清空scope apis
1133
+ * @param scope
1134
+ */
1135
+ clearScopeAPI(scope: string): void;
1136
+ /**
1137
+ * 获取root domain
1138
+ */
1139
+ getRootDomain(): Domain;
1140
+ }
1141
+
1142
1142
  /**
1143
1143
  * Fox UI App
1144
1144
  */
@@ -1207,6 +1207,23 @@ declare class FoxUIApp implements FoxUI {
1207
1207
  getRootDomain(): Domain;
1208
1208
  }
1209
1209
 
1210
+ /**
1211
+ * UI Options
1212
+ */
1213
+ declare interface FoxUIOptions {
1214
+ install?: boolean;
1215
+ componentPrefix?: string;
1216
+ headerBarHeight?: number;
1217
+ footerBarHeight?: number;
1218
+ safeAreaInset?: SafeAreaInset;
1219
+ pageLayout?: PageLayout;
1220
+ headerPadding?: Rect_2;
1221
+ contentPadding?: Rect_2;
1222
+ groupLayout?: GroupLayout;
1223
+ labelWidth?: number | string;
1224
+ [propName: string]: any;
1225
+ }
1226
+
1210
1227
  /**
1211
1228
  * 通用函数接口
1212
1229
  */
@@ -1276,6 +1293,16 @@ declare type GroupContent = {
1276
1293
  content: Array<string> | string;
1277
1294
  };
1278
1295
 
1296
+ /**
1297
+ * Layout信息接口
1298
+ */
1299
+ declare interface GroupLayout {
1300
+ type?: string;
1301
+ width?: number | string;
1302
+ column?: number;
1303
+ gutter?: number | string;
1304
+ }
1305
+
1279
1306
  /**
1280
1307
  * 是否支持symbol
1281
1308
  */
@@ -1288,6 +1315,30 @@ declare const HintTextFunction: HintTextTooltip;
1288
1315
  export { HintTextFunction as FoxHintText }
1289
1316
  export { HintTextFunction as HintText }
1290
1317
 
1318
+ /**
1319
+ * HintTextTooltip
1320
+ */
1321
+ declare interface HintTextTooltip {
1322
+ /**
1323
+ * 显示
1324
+ * @param reference
1325
+ * @param message
1326
+ * @param opts
1327
+ * @param only
1328
+ * @returns
1329
+ */
1330
+ show(reference: HTMLElement, message: string, opts: Record<string, any>, only?: boolean): string;
1331
+ /**
1332
+ * 隐藏
1333
+ * @param id
1334
+ */
1335
+ hide(id?: string): void;
1336
+ /**
1337
+ * 额外属性
1338
+ */
1339
+ [propName: string]: any;
1340
+ }
1341
+
1291
1342
  declare type Icons = {
1292
1343
  headerbar: {
1293
1344
  Left?: any;
@@ -1361,13 +1412,13 @@ export declare function indexOf(x: unknown, arr: unknown[]): number;
1361
1412
  * 获取是否为虚拟页面范围
1362
1413
  * @param defaultValue
1363
1414
  */
1364
- export declare function injectAbstractPageScope(defaultValue?: boolean): any;
1415
+ export declare function injectAbstractPageScope(defaultValue?: boolean): boolean;
1365
1416
 
1366
1417
  /**
1367
1418
  * 获取是否为内部页面范围
1368
1419
  * @param defaultValue
1369
1420
  */
1370
- export declare function injectInnerPageScope(defaultValue?: boolean): any;
1421
+ export declare function injectInnerPageScope(defaultValue?: boolean): boolean;
1371
1422
 
1372
1423
  /**
1373
1424
  * inner page scope key(内部页面,默认适配父亲容器尺寸,not watch resize)
@@ -1380,6 +1431,8 @@ export declare const InnerPageScopeKey: unique symbol;
1380
1431
  */
1381
1432
  export declare function integerLength(value: string | number): number;
1382
1433
 
1434
+ declare type Interceptor = (...args: any[]) => Promise<boolean> | boolean | undefined | void;
1435
+
1383
1436
  /**
1384
1437
  * 是否数组
1385
1438
  */
@@ -1404,6 +1457,13 @@ export declare const isBrowser: boolean;
1404
1457
  */
1405
1458
  export declare const isDate: (val: unknown) => val is Date;
1406
1459
 
1460
+ /**
1461
+ * 是否display none
1462
+ * @param el
1463
+ * @returns
1464
+ */
1465
+ export declare function isDisplayNone(el: HTMLElement): boolean;
1466
+
1407
1467
  /**
1408
1468
  * 是否空字符串
1409
1469
  * @param v
@@ -1636,11 +1696,21 @@ export declare function nextTick(fn: {
1636
1696
  }, ...args: any[]): void;
1637
1697
 
1638
1698
  declare const NotifyFunction: {
1639
- text(msg: string, obj?: {}): any;
1640
- primary(msg: string, obj?: {}): any;
1641
- success(msg: string, obj?: {}): any;
1642
- danger(msg: string, obj?: {}): any;
1643
- warn(msg: string, obj?: {}): any;
1699
+ text(msg: string, obj?: {}): {
1700
+ [x: string]: unknown;
1701
+ };
1702
+ primary(msg: string, obj?: {}): {
1703
+ [x: string]: unknown;
1704
+ };
1705
+ success(msg: string, obj?: {}): {
1706
+ [x: string]: unknown;
1707
+ };
1708
+ danger(msg: string, obj?: {}): {
1709
+ [x: string]: unknown;
1710
+ };
1711
+ warn(msg: string, obj?: {}): {
1712
+ [x: string]: unknown;
1713
+ };
1644
1714
  hide(): void;
1645
1715
  install(app: any): void;
1646
1716
  };
@@ -1689,10 +1759,10 @@ export declare function overrideGlobalValidateHandler(validateHandler: Partial<V
1689
1759
  * padding
1690
1760
  */
1691
1761
  export declare interface Padding {
1692
- left: number | null;
1693
- top: number | null;
1694
- right: number | null;
1695
- bottom: number | null;
1762
+ left: number | string | null;
1763
+ top: number | string | null;
1764
+ right: number | string | null;
1765
+ bottom: number | string | null;
1696
1766
  }
1697
1767
 
1698
1768
  /**
@@ -1708,9 +1778,9 @@ export declare interface PageLayout {
1708
1778
  height?: number | string;
1709
1779
  headerHeight?: number | string;
1710
1780
  footerHeight?: number | string;
1711
- headerPadding?: Padding;
1712
- footerPadding?: Padding;
1713
- contentPadding?: Padding;
1781
+ headerPadding?: Partial<Padding>;
1782
+ footerPadding?: Partial<Padding>;
1783
+ contentPadding?: Partial<Padding>;
1714
1784
  }
1715
1785
 
1716
1786
  /**
@@ -1816,6 +1886,16 @@ export declare interface Rect {
1816
1886
  height: number;
1817
1887
  }
1818
1888
 
1889
+ /**
1890
+ * Rect类型
1891
+ */
1892
+ declare interface Rect_2 {
1893
+ left: number;
1894
+ top: number;
1895
+ right: number;
1896
+ bottom: number;
1897
+ }
1898
+
1819
1899
  /**
1820
1900
  * 消息确认函数
1821
1901
  */
@@ -1841,6 +1921,13 @@ export declare interface SafeAreaInset {
1841
1921
  bottom: number | string;
1842
1922
  }
1843
1923
 
1924
+ /**
1925
+ * scope getter
1926
+ */
1927
+ declare interface ScopeGetter {
1928
+ (proxy: ComponentPublicInstance): string | null;
1929
+ }
1930
+
1844
1931
  /**
1845
1932
  * 设置公共校验检查事件
1846
1933
  * @param events
@@ -2080,6 +2167,15 @@ export declare const useRect: (elementRef: (Element | Window) | Ref<Element | Wi
2080
2167
  */
2081
2168
  export declare function useSize(elementRef: Element | Ref<Element>): Size;
2082
2169
 
2170
+ /**
2171
+ * 获取child slot
2172
+ * @param slot
2173
+ * @returns
2174
+ */
2175
+ export declare function useSlotChildren(slot?: () => VNode[]): {
2176
+ getChildren: () => VNode[];
2177
+ };
2178
+
2083
2179
  /**
2084
2180
  * 获取响应式touch对象
2085
2181
  * @returns
@@ -2088,17 +2184,17 @@ export declare function useTouch(): {
2088
2184
  move: EventListener;
2089
2185
  start: EventListener;
2090
2186
  reset: () => void;
2091
- startX: any;
2092
- startY: any;
2093
- startTime: any;
2094
- duration: any;
2095
- moveX: any;
2096
- moveY: any;
2097
- deltaX: any;
2098
- deltaY: any;
2099
- offsetX: any;
2100
- offsetY: any;
2101
- direction: any;
2187
+ startX: Ref<number, number>;
2188
+ startY: Ref<number, number>;
2189
+ startTime: Ref<number, number>;
2190
+ duration: Ref<number, number>;
2191
+ moveX: Ref<number, number>;
2192
+ moveY: Ref<number, number>;
2193
+ deltaX: Ref<number, number>;
2194
+ deltaY: Ref<number, number>;
2195
+ offsetX: Ref<number, number>;
2196
+ offsetY: Ref<number, number>;
2197
+ direction: Ref<Direction, Direction>;
2102
2198
  isVertical: () => boolean;
2103
2199
  isHorizontal: () => boolean;
2104
2200
  };