@hoci/components 0.4.3 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -1,6 +1,8 @@
1
1
  import * as vue from 'vue';
2
- import { App } from 'vue';
2
+ import { PropType, KeepAliveProps, App } from 'vue';
3
3
  import * as _hoci_core from '@hoci/core';
4
+ import * as _hoci_shared from '@hoci/shared';
5
+ import { ElementLike, ActivateEvent } from '@hoci/shared';
4
6
 
5
7
  declare const HiAffix: vue.DefineComponent<{
6
8
  as: {
@@ -15,7 +17,7 @@ declare const HiAffix: vue.DefineComponent<{
15
17
  type: NumberConstructor;
16
18
  default: number;
17
19
  };
18
- offsetType: {
20
+ position: {
19
21
  type: vue.PropType<"top" | "bottom">;
20
22
  default: string;
21
23
  };
@@ -41,7 +43,7 @@ declare const HiAffix: vue.DefineComponent<{
41
43
  type: NumberConstructor;
42
44
  default: number;
43
45
  };
44
- offsetType: {
46
+ position: {
45
47
  type: vue.PropType<"top" | "bottom">;
46
48
  default: string;
47
49
  };
@@ -55,7 +57,7 @@ declare const HiAffix: vue.DefineComponent<{
55
57
  }>>, {
56
58
  fixedClass: string;
57
59
  offset: number;
58
- offsetType: "top" | "bottom";
60
+ position: "top" | "bottom";
59
61
  zIndex: number;
60
62
  as: string;
61
63
  }, {}>;
@@ -362,6 +364,313 @@ declare const HiSwitch: vue.DefineComponent<{
362
364
  as: string;
363
365
  }, {}>;
364
366
 
367
+ declare const HiConfigProvider: vue.DefineComponent<{
368
+ as: {
369
+ type: StringConstructor;
370
+ };
371
+ icon: {
372
+ type: vue.PropType<Partial<{
373
+ size: number | undefined;
374
+ sizeUnit: string | undefined;
375
+ }>>;
376
+ };
377
+ activateEvent: {
378
+ type: vue.PropType<Partial<_hoci_core.ActivateEvent>>;
379
+ };
380
+ }, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
381
+ [key: string]: any;
382
+ }>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
383
+ as: {
384
+ type: StringConstructor;
385
+ };
386
+ icon: {
387
+ type: vue.PropType<Partial<{
388
+ size: number | undefined;
389
+ sizeUnit: string | undefined;
390
+ }>>;
391
+ };
392
+ activateEvent: {
393
+ type: vue.PropType<Partial<_hoci_core.ActivateEvent>>;
394
+ };
395
+ }>>, {}, {}>;
396
+
397
+ declare const HiTabs: vue.DefineComponent<{
398
+ headerClass: {
399
+ type: PropType<string | string[] | Record<string, boolean>>;
400
+ };
401
+ as: {
402
+ type: StringConstructor;
403
+ default: string;
404
+ };
405
+ headerAs: {
406
+ type: StringConstructor;
407
+ default: string;
408
+ };
409
+ contentAs: {
410
+ type: StringConstructor;
411
+ default: string;
412
+ };
413
+ contentClass: {
414
+ type: PropType<string | string[] | Record<string, boolean>>;
415
+ };
416
+ keepAlive: {
417
+ type: PropType<boolean | KeepAliveProps>;
418
+ default: boolean;
419
+ };
420
+ modelValue: {
421
+ type: PropType<any>;
422
+ default: () => null;
423
+ };
424
+ activeClass: {
425
+ type: PropType<string | string[] | Record<string, boolean>>;
426
+ default: string;
427
+ };
428
+ itemClass: {
429
+ type: PropType<string | string[] | Record<string, boolean>>;
430
+ default: string;
431
+ };
432
+ disabledClass: {
433
+ type: PropType<string | string[] | Record<string, boolean>>;
434
+ default: string;
435
+ };
436
+ unactiveClass: {
437
+ type: PropType<string | string[] | Record<string, boolean>>;
438
+ default: string;
439
+ };
440
+ label: {
441
+ type: PropType<string | ((val?: any) => string) | null>;
442
+ };
443
+ multiple: {
444
+ type: (NumberConstructor | BooleanConstructor)[];
445
+ default: () => false;
446
+ };
447
+ clearable: {
448
+ type: BooleanConstructor;
449
+ };
450
+ defaultValue: {
451
+ type: PropType<any>;
452
+ default: () => null;
453
+ };
454
+ activateEvent: {
455
+ type: PropType<_hoci_shared.ActivateEvent>;
456
+ };
457
+ }, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
458
+ [key: string]: any;
459
+ }>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
460
+ headerClass: {
461
+ type: PropType<string | string[] | Record<string, boolean>>;
462
+ };
463
+ as: {
464
+ type: StringConstructor;
465
+ default: string;
466
+ };
467
+ headerAs: {
468
+ type: StringConstructor;
469
+ default: string;
470
+ };
471
+ contentAs: {
472
+ type: StringConstructor;
473
+ default: string;
474
+ };
475
+ contentClass: {
476
+ type: PropType<string | string[] | Record<string, boolean>>;
477
+ };
478
+ keepAlive: {
479
+ type: PropType<boolean | KeepAliveProps>;
480
+ default: boolean;
481
+ };
482
+ modelValue: {
483
+ type: PropType<any>;
484
+ default: () => null;
485
+ };
486
+ activeClass: {
487
+ type: PropType<string | string[] | Record<string, boolean>>;
488
+ default: string;
489
+ };
490
+ itemClass: {
491
+ type: PropType<string | string[] | Record<string, boolean>>;
492
+ default: string;
493
+ };
494
+ disabledClass: {
495
+ type: PropType<string | string[] | Record<string, boolean>>;
496
+ default: string;
497
+ };
498
+ unactiveClass: {
499
+ type: PropType<string | string[] | Record<string, boolean>>;
500
+ default: string;
501
+ };
502
+ label: {
503
+ type: PropType<string | ((val?: any) => string) | null>;
504
+ };
505
+ multiple: {
506
+ type: (NumberConstructor | BooleanConstructor)[];
507
+ default: () => false;
508
+ };
509
+ clearable: {
510
+ type: BooleanConstructor;
511
+ };
512
+ defaultValue: {
513
+ type: PropType<any>;
514
+ default: () => null;
515
+ };
516
+ activateEvent: {
517
+ type: PropType<_hoci_shared.ActivateEvent>;
518
+ };
519
+ }>>, {
520
+ multiple: number | boolean;
521
+ modelValue: any;
522
+ activeClass: string | string[] | Record<string, boolean>;
523
+ itemClass: string | string[] | Record<string, boolean>;
524
+ disabledClass: string | string[] | Record<string, boolean>;
525
+ unactiveClass: string | string[] | Record<string, boolean>;
526
+ clearable: boolean;
527
+ defaultValue: any;
528
+ keepAlive: boolean | KeepAliveProps;
529
+ as: string;
530
+ headerAs: string;
531
+ contentAs: string;
532
+ }, {}>;
533
+
534
+ declare const HiTabPane: vue.DefineComponent<{
535
+ value: {
536
+ type: vue.PropType<any>;
537
+ default(): string;
538
+ };
539
+ label: {
540
+ type: vue.PropType<ElementLike | ((val: any) => string) | null>;
541
+ };
542
+ keepAlive: {
543
+ type: BooleanConstructor;
544
+ default: () => true;
545
+ };
546
+ key: {
547
+ type: vue.PropType<string | number | symbol>;
548
+ };
549
+ activateEvent: {
550
+ type: vue.PropType<ActivateEvent>;
551
+ };
552
+ disabled: {
553
+ type: BooleanConstructor;
554
+ default: boolean;
555
+ };
556
+ }, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
557
+ [key: string]: any;
558
+ }>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
559
+ value: {
560
+ type: vue.PropType<any>;
561
+ default(): string;
562
+ };
563
+ label: {
564
+ type: vue.PropType<ElementLike | ((val: any) => string) | null>;
565
+ };
566
+ keepAlive: {
567
+ type: BooleanConstructor;
568
+ default: () => true;
569
+ };
570
+ key: {
571
+ type: vue.PropType<string | number | symbol>;
572
+ };
573
+ activateEvent: {
574
+ type: vue.PropType<ActivateEvent>;
575
+ };
576
+ disabled: {
577
+ type: BooleanConstructor;
578
+ default: boolean;
579
+ };
580
+ }>>, {
581
+ value: any;
582
+ disabled: boolean;
583
+ keepAlive: boolean;
584
+ }, {}>;
585
+
586
+ declare const HiPopover: vue.DefineComponent<{
587
+ as: {
588
+ type: StringConstructor;
589
+ default: string;
590
+ };
591
+ popupClass: {
592
+ type: StringConstructor;
593
+ };
594
+ placement: {
595
+ type: vue.PropType<_hoci_core.Placement>;
596
+ default: () => "auto";
597
+ };
598
+ triggerEvent: {
599
+ type: vue.PropType<_hoci_core.TriggerEvent>;
600
+ default: () => "hover";
601
+ };
602
+ offset: {
603
+ type: NumberConstructor;
604
+ default: () => 8;
605
+ };
606
+ lazy: {
607
+ type: BooleanConstructor;
608
+ default: () => false;
609
+ };
610
+ visible: {
611
+ type: BooleanConstructor;
612
+ default: () => false;
613
+ };
614
+ disabled: {
615
+ type: BooleanConstructor;
616
+ default: () => false;
617
+ };
618
+ teleport: {
619
+ type: vue.PropType<string | boolean | HTMLElement>;
620
+ default: () => true;
621
+ };
622
+ }, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
623
+ [key: string]: any;
624
+ }>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, ("change" | "update:visible")[], "change" | "update:visible", vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
625
+ as: {
626
+ type: StringConstructor;
627
+ default: string;
628
+ };
629
+ popupClass: {
630
+ type: StringConstructor;
631
+ };
632
+ placement: {
633
+ type: vue.PropType<_hoci_core.Placement>;
634
+ default: () => "auto";
635
+ };
636
+ triggerEvent: {
637
+ type: vue.PropType<_hoci_core.TriggerEvent>;
638
+ default: () => "hover";
639
+ };
640
+ offset: {
641
+ type: NumberConstructor;
642
+ default: () => 8;
643
+ };
644
+ lazy: {
645
+ type: BooleanConstructor;
646
+ default: () => false;
647
+ };
648
+ visible: {
649
+ type: BooleanConstructor;
650
+ default: () => false;
651
+ };
652
+ disabled: {
653
+ type: BooleanConstructor;
654
+ default: () => false;
655
+ };
656
+ teleport: {
657
+ type: vue.PropType<string | boolean | HTMLElement>;
658
+ default: () => true;
659
+ };
660
+ }>> & {
661
+ onChange?: ((...args: any[]) => any) | undefined;
662
+ "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
663
+ }, {
664
+ offset: number;
665
+ visible: boolean;
666
+ disabled: boolean;
667
+ placement: _hoci_core.Placement;
668
+ triggerEvent: _hoci_core.TriggerEvent;
669
+ lazy: boolean;
670
+ teleport: string | boolean | HTMLElement;
671
+ as: string;
672
+ }, {}>;
673
+
365
674
  declare const install: (app: App) => void;
366
675
 
367
- export { HiAffix, HiIcon, HiItem, HiSelection, HiSwitch, install };
676
+ export { HiAffix, HiConfigProvider, HiIcon, HiItem, HiPopover, HiSelection, HiSwitch, HiTabPane, HiTabs, install };
package/dist/index.d.mts CHANGED
@@ -1,6 +1,8 @@
1
1
  import * as vue from 'vue';
2
- import { App } from 'vue';
2
+ import { PropType, KeepAliveProps, App } from 'vue';
3
3
  import * as _hoci_core from '@hoci/core';
4
+ import * as _hoci_shared from '@hoci/shared';
5
+ import { ElementLike, ActivateEvent } from '@hoci/shared';
4
6
 
5
7
  declare const HiAffix: vue.DefineComponent<{
6
8
  as: {
@@ -15,7 +17,7 @@ declare const HiAffix: vue.DefineComponent<{
15
17
  type: NumberConstructor;
16
18
  default: number;
17
19
  };
18
- offsetType: {
20
+ position: {
19
21
  type: vue.PropType<"top" | "bottom">;
20
22
  default: string;
21
23
  };
@@ -41,7 +43,7 @@ declare const HiAffix: vue.DefineComponent<{
41
43
  type: NumberConstructor;
42
44
  default: number;
43
45
  };
44
- offsetType: {
46
+ position: {
45
47
  type: vue.PropType<"top" | "bottom">;
46
48
  default: string;
47
49
  };
@@ -55,7 +57,7 @@ declare const HiAffix: vue.DefineComponent<{
55
57
  }>>, {
56
58
  fixedClass: string;
57
59
  offset: number;
58
- offsetType: "top" | "bottom";
60
+ position: "top" | "bottom";
59
61
  zIndex: number;
60
62
  as: string;
61
63
  }, {}>;
@@ -362,6 +364,313 @@ declare const HiSwitch: vue.DefineComponent<{
362
364
  as: string;
363
365
  }, {}>;
364
366
 
367
+ declare const HiConfigProvider: vue.DefineComponent<{
368
+ as: {
369
+ type: StringConstructor;
370
+ };
371
+ icon: {
372
+ type: vue.PropType<Partial<{
373
+ size: number | undefined;
374
+ sizeUnit: string | undefined;
375
+ }>>;
376
+ };
377
+ activateEvent: {
378
+ type: vue.PropType<Partial<_hoci_core.ActivateEvent>>;
379
+ };
380
+ }, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
381
+ [key: string]: any;
382
+ }>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
383
+ as: {
384
+ type: StringConstructor;
385
+ };
386
+ icon: {
387
+ type: vue.PropType<Partial<{
388
+ size: number | undefined;
389
+ sizeUnit: string | undefined;
390
+ }>>;
391
+ };
392
+ activateEvent: {
393
+ type: vue.PropType<Partial<_hoci_core.ActivateEvent>>;
394
+ };
395
+ }>>, {}, {}>;
396
+
397
+ declare const HiTabs: vue.DefineComponent<{
398
+ headerClass: {
399
+ type: PropType<string | string[] | Record<string, boolean>>;
400
+ };
401
+ as: {
402
+ type: StringConstructor;
403
+ default: string;
404
+ };
405
+ headerAs: {
406
+ type: StringConstructor;
407
+ default: string;
408
+ };
409
+ contentAs: {
410
+ type: StringConstructor;
411
+ default: string;
412
+ };
413
+ contentClass: {
414
+ type: PropType<string | string[] | Record<string, boolean>>;
415
+ };
416
+ keepAlive: {
417
+ type: PropType<boolean | KeepAliveProps>;
418
+ default: boolean;
419
+ };
420
+ modelValue: {
421
+ type: PropType<any>;
422
+ default: () => null;
423
+ };
424
+ activeClass: {
425
+ type: PropType<string | string[] | Record<string, boolean>>;
426
+ default: string;
427
+ };
428
+ itemClass: {
429
+ type: PropType<string | string[] | Record<string, boolean>>;
430
+ default: string;
431
+ };
432
+ disabledClass: {
433
+ type: PropType<string | string[] | Record<string, boolean>>;
434
+ default: string;
435
+ };
436
+ unactiveClass: {
437
+ type: PropType<string | string[] | Record<string, boolean>>;
438
+ default: string;
439
+ };
440
+ label: {
441
+ type: PropType<string | ((val?: any) => string) | null>;
442
+ };
443
+ multiple: {
444
+ type: (NumberConstructor | BooleanConstructor)[];
445
+ default: () => false;
446
+ };
447
+ clearable: {
448
+ type: BooleanConstructor;
449
+ };
450
+ defaultValue: {
451
+ type: PropType<any>;
452
+ default: () => null;
453
+ };
454
+ activateEvent: {
455
+ type: PropType<_hoci_shared.ActivateEvent>;
456
+ };
457
+ }, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
458
+ [key: string]: any;
459
+ }>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
460
+ headerClass: {
461
+ type: PropType<string | string[] | Record<string, boolean>>;
462
+ };
463
+ as: {
464
+ type: StringConstructor;
465
+ default: string;
466
+ };
467
+ headerAs: {
468
+ type: StringConstructor;
469
+ default: string;
470
+ };
471
+ contentAs: {
472
+ type: StringConstructor;
473
+ default: string;
474
+ };
475
+ contentClass: {
476
+ type: PropType<string | string[] | Record<string, boolean>>;
477
+ };
478
+ keepAlive: {
479
+ type: PropType<boolean | KeepAliveProps>;
480
+ default: boolean;
481
+ };
482
+ modelValue: {
483
+ type: PropType<any>;
484
+ default: () => null;
485
+ };
486
+ activeClass: {
487
+ type: PropType<string | string[] | Record<string, boolean>>;
488
+ default: string;
489
+ };
490
+ itemClass: {
491
+ type: PropType<string | string[] | Record<string, boolean>>;
492
+ default: string;
493
+ };
494
+ disabledClass: {
495
+ type: PropType<string | string[] | Record<string, boolean>>;
496
+ default: string;
497
+ };
498
+ unactiveClass: {
499
+ type: PropType<string | string[] | Record<string, boolean>>;
500
+ default: string;
501
+ };
502
+ label: {
503
+ type: PropType<string | ((val?: any) => string) | null>;
504
+ };
505
+ multiple: {
506
+ type: (NumberConstructor | BooleanConstructor)[];
507
+ default: () => false;
508
+ };
509
+ clearable: {
510
+ type: BooleanConstructor;
511
+ };
512
+ defaultValue: {
513
+ type: PropType<any>;
514
+ default: () => null;
515
+ };
516
+ activateEvent: {
517
+ type: PropType<_hoci_shared.ActivateEvent>;
518
+ };
519
+ }>>, {
520
+ multiple: number | boolean;
521
+ modelValue: any;
522
+ activeClass: string | string[] | Record<string, boolean>;
523
+ itemClass: string | string[] | Record<string, boolean>;
524
+ disabledClass: string | string[] | Record<string, boolean>;
525
+ unactiveClass: string | string[] | Record<string, boolean>;
526
+ clearable: boolean;
527
+ defaultValue: any;
528
+ keepAlive: boolean | KeepAliveProps;
529
+ as: string;
530
+ headerAs: string;
531
+ contentAs: string;
532
+ }, {}>;
533
+
534
+ declare const HiTabPane: vue.DefineComponent<{
535
+ value: {
536
+ type: vue.PropType<any>;
537
+ default(): string;
538
+ };
539
+ label: {
540
+ type: vue.PropType<ElementLike | ((val: any) => string) | null>;
541
+ };
542
+ keepAlive: {
543
+ type: BooleanConstructor;
544
+ default: () => true;
545
+ };
546
+ key: {
547
+ type: vue.PropType<string | number | symbol>;
548
+ };
549
+ activateEvent: {
550
+ type: vue.PropType<ActivateEvent>;
551
+ };
552
+ disabled: {
553
+ type: BooleanConstructor;
554
+ default: boolean;
555
+ };
556
+ }, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
557
+ [key: string]: any;
558
+ }>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
559
+ value: {
560
+ type: vue.PropType<any>;
561
+ default(): string;
562
+ };
563
+ label: {
564
+ type: vue.PropType<ElementLike | ((val: any) => string) | null>;
565
+ };
566
+ keepAlive: {
567
+ type: BooleanConstructor;
568
+ default: () => true;
569
+ };
570
+ key: {
571
+ type: vue.PropType<string | number | symbol>;
572
+ };
573
+ activateEvent: {
574
+ type: vue.PropType<ActivateEvent>;
575
+ };
576
+ disabled: {
577
+ type: BooleanConstructor;
578
+ default: boolean;
579
+ };
580
+ }>>, {
581
+ value: any;
582
+ disabled: boolean;
583
+ keepAlive: boolean;
584
+ }, {}>;
585
+
586
+ declare const HiPopover: vue.DefineComponent<{
587
+ as: {
588
+ type: StringConstructor;
589
+ default: string;
590
+ };
591
+ popupClass: {
592
+ type: StringConstructor;
593
+ };
594
+ placement: {
595
+ type: vue.PropType<_hoci_core.Placement>;
596
+ default: () => "auto";
597
+ };
598
+ triggerEvent: {
599
+ type: vue.PropType<_hoci_core.TriggerEvent>;
600
+ default: () => "hover";
601
+ };
602
+ offset: {
603
+ type: NumberConstructor;
604
+ default: () => 8;
605
+ };
606
+ lazy: {
607
+ type: BooleanConstructor;
608
+ default: () => false;
609
+ };
610
+ visible: {
611
+ type: BooleanConstructor;
612
+ default: () => false;
613
+ };
614
+ disabled: {
615
+ type: BooleanConstructor;
616
+ default: () => false;
617
+ };
618
+ teleport: {
619
+ type: vue.PropType<string | boolean | HTMLElement>;
620
+ default: () => true;
621
+ };
622
+ }, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
623
+ [key: string]: any;
624
+ }>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, ("change" | "update:visible")[], "change" | "update:visible", vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
625
+ as: {
626
+ type: StringConstructor;
627
+ default: string;
628
+ };
629
+ popupClass: {
630
+ type: StringConstructor;
631
+ };
632
+ placement: {
633
+ type: vue.PropType<_hoci_core.Placement>;
634
+ default: () => "auto";
635
+ };
636
+ triggerEvent: {
637
+ type: vue.PropType<_hoci_core.TriggerEvent>;
638
+ default: () => "hover";
639
+ };
640
+ offset: {
641
+ type: NumberConstructor;
642
+ default: () => 8;
643
+ };
644
+ lazy: {
645
+ type: BooleanConstructor;
646
+ default: () => false;
647
+ };
648
+ visible: {
649
+ type: BooleanConstructor;
650
+ default: () => false;
651
+ };
652
+ disabled: {
653
+ type: BooleanConstructor;
654
+ default: () => false;
655
+ };
656
+ teleport: {
657
+ type: vue.PropType<string | boolean | HTMLElement>;
658
+ default: () => true;
659
+ };
660
+ }>> & {
661
+ onChange?: ((...args: any[]) => any) | undefined;
662
+ "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
663
+ }, {
664
+ offset: number;
665
+ visible: boolean;
666
+ disabled: boolean;
667
+ placement: _hoci_core.Placement;
668
+ triggerEvent: _hoci_core.TriggerEvent;
669
+ lazy: boolean;
670
+ teleport: string | boolean | HTMLElement;
671
+ as: string;
672
+ }, {}>;
673
+
365
674
  declare const install: (app: App) => void;
366
675
 
367
- export { HiAffix, HiIcon, HiItem, HiSelection, HiSwitch, install };
676
+ export { HiAffix, HiConfigProvider, HiIcon, HiItem, HiPopover, HiSelection, HiSwitch, HiTabPane, HiTabs, install };