@pantograph/vue 0.34.35 → 0.34.36
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.ts +594 -98
- package/dist/nuxt.d.ts +98 -98
- package/dist/resolver.d.ts +98 -98
- package/dist/use/index.js +9 -9
- package/dist/use/index.umd.cjs +2 -2
- package/dist/use.d.ts +98 -98
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4352,36 +4352,532 @@ export declare const COMBO_BOX_DEFAULT_PROPS: {
|
|
|
4352
4352
|
};
|
|
4353
4353
|
|
|
4354
4354
|
export declare const Combobox: __VLS_WithTemplateSlots_24<DefineComponent<ComboboxProps, {
|
|
4355
|
+
/**
|
|
4356
|
+
* Combobox Component
|
|
4357
|
+
*
|
|
4358
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4359
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4360
|
+
*
|
|
4361
|
+
* @component Combobox
|
|
4362
|
+
* @description Provides a searchable dropdown with support for:
|
|
4363
|
+
* - Single and multiple selection modes
|
|
4364
|
+
* - Tree/hierarchical option structures
|
|
4365
|
+
* - Virtual scrolling for large datasets
|
|
4366
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4367
|
+
* - Header and footer slots
|
|
4368
|
+
* - Loading and empty states
|
|
4369
|
+
* - Keyboard navigation
|
|
4370
|
+
*/
|
|
4355
4371
|
isOptionSelected: (value?: string | undefined) => boolean;
|
|
4372
|
+
/**
|
|
4373
|
+
* Combobox Component
|
|
4374
|
+
*
|
|
4375
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4376
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4377
|
+
*
|
|
4378
|
+
* @component Combobox
|
|
4379
|
+
* @description Provides a searchable dropdown with support for:
|
|
4380
|
+
* - Single and multiple selection modes
|
|
4381
|
+
* - Tree/hierarchical option structures
|
|
4382
|
+
* - Virtual scrolling for large datasets
|
|
4383
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4384
|
+
* - Header and footer slots
|
|
4385
|
+
* - Loading and empty states
|
|
4386
|
+
* - Keyboard navigation
|
|
4387
|
+
*/
|
|
4356
4388
|
getOptionByValue: (value: string) => ComboboxFlattenOptionType | undefined;
|
|
4389
|
+
/**
|
|
4390
|
+
* Combobox Component
|
|
4391
|
+
*
|
|
4392
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4393
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4394
|
+
*
|
|
4395
|
+
* @component Combobox
|
|
4396
|
+
* @description Provides a searchable dropdown with support for:
|
|
4397
|
+
* - Single and multiple selection modes
|
|
4398
|
+
* - Tree/hierarchical option structures
|
|
4399
|
+
* - Virtual scrolling for large datasets
|
|
4400
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4401
|
+
* - Header and footer slots
|
|
4402
|
+
* - Loading and empty states
|
|
4403
|
+
* - Keyboard navigation
|
|
4404
|
+
*/
|
|
4357
4405
|
getLabelByValue: (value: string) => string | undefined;
|
|
4406
|
+
/**
|
|
4407
|
+
* Combobox Component
|
|
4408
|
+
*
|
|
4409
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4410
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4411
|
+
*
|
|
4412
|
+
* @component Combobox
|
|
4413
|
+
* @description Provides a searchable dropdown with support for:
|
|
4414
|
+
* - Single and multiple selection modes
|
|
4415
|
+
* - Tree/hierarchical option structures
|
|
4416
|
+
* - Virtual scrolling for large datasets
|
|
4417
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4418
|
+
* - Header and footer slots
|
|
4419
|
+
* - Loading and empty states
|
|
4420
|
+
* - Keyboard navigation
|
|
4421
|
+
*/
|
|
4358
4422
|
getSingleByValue: (value: string) => boolean;
|
|
4423
|
+
/**
|
|
4424
|
+
* Combobox Component
|
|
4425
|
+
*
|
|
4426
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4427
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4428
|
+
*
|
|
4429
|
+
* @component Combobox
|
|
4430
|
+
* @description Provides a searchable dropdown with support for:
|
|
4431
|
+
* - Single and multiple selection modes
|
|
4432
|
+
* - Tree/hierarchical option structures
|
|
4433
|
+
* - Virtual scrolling for large datasets
|
|
4434
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4435
|
+
* - Header and footer slots
|
|
4436
|
+
* - Loading and empty states
|
|
4437
|
+
* - Keyboard navigation
|
|
4438
|
+
*/
|
|
4359
4439
|
focusOnInput: (e?: PointerEvent | undefined) => void;
|
|
4440
|
+
/**
|
|
4441
|
+
* Combobox Component
|
|
4442
|
+
*
|
|
4443
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4444
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4445
|
+
*
|
|
4446
|
+
* @component Combobox
|
|
4447
|
+
* @description Provides a searchable dropdown with support for:
|
|
4448
|
+
* - Single and multiple selection modes
|
|
4449
|
+
* - Tree/hierarchical option structures
|
|
4450
|
+
* - Virtual scrolling for large datasets
|
|
4451
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4452
|
+
* - Header and footer slots
|
|
4453
|
+
* - Loading and empty states
|
|
4454
|
+
* - Keyboard navigation
|
|
4455
|
+
*/
|
|
4360
4456
|
removeValue: (value?: string | number | undefined) => void;
|
|
4457
|
+
/**
|
|
4458
|
+
* Combobox Component
|
|
4459
|
+
*
|
|
4460
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4461
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4462
|
+
*
|
|
4463
|
+
* @component Combobox
|
|
4464
|
+
* @description Provides a searchable dropdown with support for:
|
|
4465
|
+
* - Single and multiple selection modes
|
|
4466
|
+
* - Tree/hierarchical option structures
|
|
4467
|
+
* - Virtual scrolling for large datasets
|
|
4468
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4469
|
+
* - Header and footer slots
|
|
4470
|
+
* - Loading and empty states
|
|
4471
|
+
* - Keyboard navigation
|
|
4472
|
+
*/
|
|
4361
4473
|
getFlattenOption: (item: ComboboxOptionType) => ComboboxFlattenOptionType;
|
|
4474
|
+
/**
|
|
4475
|
+
* Combobox Component
|
|
4476
|
+
*
|
|
4477
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4478
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4479
|
+
*
|
|
4480
|
+
* @component Combobox
|
|
4481
|
+
* @description Provides a searchable dropdown with support for:
|
|
4482
|
+
* - Single and multiple selection modes
|
|
4483
|
+
* - Tree/hierarchical option structures
|
|
4484
|
+
* - Virtual scrolling for large datasets
|
|
4485
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4486
|
+
* - Header and footer slots
|
|
4487
|
+
* - Loading and empty states
|
|
4488
|
+
* - Keyboard navigation
|
|
4489
|
+
*/
|
|
4362
4490
|
getOptionDataset: (option: ComboboxFlattenOptionType) => Record<string, any>;
|
|
4491
|
+
/**
|
|
4492
|
+
* Combobox Component
|
|
4493
|
+
*
|
|
4494
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4495
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4496
|
+
*
|
|
4497
|
+
* @component Combobox
|
|
4498
|
+
* @description Provides a searchable dropdown with support for:
|
|
4499
|
+
* - Single and multiple selection modes
|
|
4500
|
+
* - Tree/hierarchical option structures
|
|
4501
|
+
* - Virtual scrolling for large datasets
|
|
4502
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4503
|
+
* - Header and footer slots
|
|
4504
|
+
* - Loading and empty states
|
|
4505
|
+
* - Keyboard navigation
|
|
4506
|
+
*/
|
|
4363
4507
|
getDisabled: ComputedRef<boolean>;
|
|
4508
|
+
/**
|
|
4509
|
+
* Combobox Component
|
|
4510
|
+
*
|
|
4511
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4512
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4513
|
+
*
|
|
4514
|
+
* @component Combobox
|
|
4515
|
+
* @description Provides a searchable dropdown with support for:
|
|
4516
|
+
* - Single and multiple selection modes
|
|
4517
|
+
* - Tree/hierarchical option structures
|
|
4518
|
+
* - Virtual scrolling for large datasets
|
|
4519
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4520
|
+
* - Header and footer slots
|
|
4521
|
+
* - Loading and empty states
|
|
4522
|
+
* - Keyboard navigation
|
|
4523
|
+
*/
|
|
4364
4524
|
getStatus: ComputedRef<"none" | "error" | "success" | "warning">;
|
|
4525
|
+
/**
|
|
4526
|
+
* Combobox Component
|
|
4527
|
+
*
|
|
4528
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4529
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4530
|
+
*
|
|
4531
|
+
* @component Combobox
|
|
4532
|
+
* @description Provides a searchable dropdown with support for:
|
|
4533
|
+
* - Single and multiple selection modes
|
|
4534
|
+
* - Tree/hierarchical option structures
|
|
4535
|
+
* - Virtual scrolling for large datasets
|
|
4536
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4537
|
+
* - Header and footer slots
|
|
4538
|
+
* - Loading and empty states
|
|
4539
|
+
* - Keyboard navigation
|
|
4540
|
+
*/
|
|
4365
4541
|
getSize: ComputedRef<"sm" | "md" | "lg">;
|
|
4542
|
+
/**
|
|
4543
|
+
* Combobox Component
|
|
4544
|
+
*
|
|
4545
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4546
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4547
|
+
*
|
|
4548
|
+
* @component Combobox
|
|
4549
|
+
* @description Provides a searchable dropdown with support for:
|
|
4550
|
+
* - Single and multiple selection modes
|
|
4551
|
+
* - Tree/hierarchical option structures
|
|
4552
|
+
* - Virtual scrolling for large datasets
|
|
4553
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4554
|
+
* - Header and footer slots
|
|
4555
|
+
* - Loading and empty states
|
|
4556
|
+
* - Keyboard navigation
|
|
4557
|
+
*/
|
|
4366
4558
|
getIconSize: ComputedRef<"sm" | "2xsm" | "xsm">;
|
|
4559
|
+
/**
|
|
4560
|
+
* Combobox Component
|
|
4561
|
+
*
|
|
4562
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4563
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4564
|
+
*
|
|
4565
|
+
* @component Combobox
|
|
4566
|
+
* @description Provides a searchable dropdown with support for:
|
|
4567
|
+
* - Single and multiple selection modes
|
|
4568
|
+
* - Tree/hierarchical option structures
|
|
4569
|
+
* - Virtual scrolling for large datasets
|
|
4570
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4571
|
+
* - Header and footer slots
|
|
4572
|
+
* - Loading and empty states
|
|
4573
|
+
* - Keyboard navigation
|
|
4574
|
+
*/
|
|
4367
4575
|
comboboxInputBinding: ComputedRef<object>;
|
|
4576
|
+
/**
|
|
4577
|
+
* Combobox Component
|
|
4578
|
+
*
|
|
4579
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4580
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4581
|
+
*
|
|
4582
|
+
* @component Combobox
|
|
4583
|
+
* @description Provides a searchable dropdown with support for:
|
|
4584
|
+
* - Single and multiple selection modes
|
|
4585
|
+
* - Tree/hierarchical option structures
|
|
4586
|
+
* - Virtual scrolling for large datasets
|
|
4587
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4588
|
+
* - Header and footer slots
|
|
4589
|
+
* - Loading and empty states
|
|
4590
|
+
* - Keyboard navigation
|
|
4591
|
+
*/
|
|
4368
4592
|
props: ComboboxProps;
|
|
4593
|
+
/**
|
|
4594
|
+
* Combobox Component
|
|
4595
|
+
*
|
|
4596
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4597
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4598
|
+
*
|
|
4599
|
+
* @component Combobox
|
|
4600
|
+
* @description Provides a searchable dropdown with support for:
|
|
4601
|
+
* - Single and multiple selection modes
|
|
4602
|
+
* - Tree/hierarchical option structures
|
|
4603
|
+
* - Virtual scrolling for large datasets
|
|
4604
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4605
|
+
* - Header and footer slots
|
|
4606
|
+
* - Loading and empty states
|
|
4607
|
+
* - Keyboard navigation
|
|
4608
|
+
*/
|
|
4369
4609
|
slots: ComboboxSlots;
|
|
4610
|
+
/**
|
|
4611
|
+
* Combobox Component
|
|
4612
|
+
*
|
|
4613
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4614
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4615
|
+
*
|
|
4616
|
+
* @component Combobox
|
|
4617
|
+
* @description Provides a searchable dropdown with support for:
|
|
4618
|
+
* - Single and multiple selection modes
|
|
4619
|
+
* - Tree/hierarchical option structures
|
|
4620
|
+
* - Virtual scrolling for large datasets
|
|
4621
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4622
|
+
* - Header and footer slots
|
|
4623
|
+
* - Loading and empty states
|
|
4624
|
+
* - Keyboard navigation
|
|
4625
|
+
*/
|
|
4370
4626
|
emit: ((event: "search", value?: string | null | undefined) => void) & ((event: "select", value: string | undefined, selected: boolean, option?: ComboboxFlattenOptionType | undefined) => void) & ((event: "update:modelValue", value: string | string[]) => void) & ((event: "openAutoFocus", event: Event) => void) & ((event: "closeAutoFocus", event: Event) => void) & ((event: "escapeKeyDown", event: KeyboardEvent) => void) & ((event: "pointerDownOutside", event: PointerDownOutsideEvent) => void) & ((event: "focusOutside", event: FocusOutsideEvent) => void) & ((event: "interactOutside", event: PointerDownOutsideEvent | FocusOutsideEvent) => void) & ((event: "openChange", value?: boolean | null | undefined) => void) & ((event: "update:open", value: boolean) => void) & ((event: "keydownEnter", event: ComboboxKeydownEvent, search?: string | undefined, isEmpty?: boolean | undefined) => void) & ((event: "update:expandedKeys", value: string[]) => void) & ((event: "keydownEscape", event: ComboboxKeydownEvent, search?: string | undefined, isEmpty?: boolean | undefined) => void) & ((event: "update:search", value?: string | null | undefined) => void) & ((event: "fetch", getIsVisible: () => Promise<boolean>) => void);
|
|
4627
|
+
/**
|
|
4628
|
+
* Combobox Component
|
|
4629
|
+
*
|
|
4630
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4631
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4632
|
+
*
|
|
4633
|
+
* @component Combobox
|
|
4634
|
+
* @description Provides a searchable dropdown with support for:
|
|
4635
|
+
* - Single and multiple selection modes
|
|
4636
|
+
* - Tree/hierarchical option structures
|
|
4637
|
+
* - Virtual scrolling for large datasets
|
|
4638
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4639
|
+
* - Header and footer slots
|
|
4640
|
+
* - Loading and empty states
|
|
4641
|
+
* - Keyboard navigation
|
|
4642
|
+
*/
|
|
4371
4643
|
searchModel: Ref<string | null | undefined, string | null | undefined>;
|
|
4644
|
+
/**
|
|
4645
|
+
* Combobox Component
|
|
4646
|
+
*
|
|
4647
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4648
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4649
|
+
*
|
|
4650
|
+
* @component Combobox
|
|
4651
|
+
* @description Provides a searchable dropdown with support for:
|
|
4652
|
+
* - Single and multiple selection modes
|
|
4653
|
+
* - Tree/hierarchical option structures
|
|
4654
|
+
* - Virtual scrolling for large datasets
|
|
4655
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4656
|
+
* - Header and footer slots
|
|
4657
|
+
* - Loading and empty states
|
|
4658
|
+
* - Keyboard navigation
|
|
4659
|
+
*/
|
|
4372
4660
|
openModel: Ref<boolean | null | undefined, boolean | null | undefined>;
|
|
4661
|
+
/**
|
|
4662
|
+
* Combobox Component
|
|
4663
|
+
*
|
|
4664
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4665
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4666
|
+
*
|
|
4667
|
+
* @component Combobox
|
|
4668
|
+
* @description Provides a searchable dropdown with support for:
|
|
4669
|
+
* - Single and multiple selection modes
|
|
4670
|
+
* - Tree/hierarchical option structures
|
|
4671
|
+
* - Virtual scrolling for large datasets
|
|
4672
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4673
|
+
* - Header and footer slots
|
|
4674
|
+
* - Loading and empty states
|
|
4675
|
+
* - Keyboard navigation
|
|
4676
|
+
*/
|
|
4373
4677
|
model: Ref<string | string[] | null | undefined, string | string[] | null | undefined>;
|
|
4678
|
+
/**
|
|
4679
|
+
* Combobox Component
|
|
4680
|
+
*
|
|
4681
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4682
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4683
|
+
*
|
|
4684
|
+
* @component Combobox
|
|
4685
|
+
* @description Provides a searchable dropdown with support for:
|
|
4686
|
+
* - Single and multiple selection modes
|
|
4687
|
+
* - Tree/hierarchical option structures
|
|
4688
|
+
* - Virtual scrolling for large datasets
|
|
4689
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4690
|
+
* - Header and footer slots
|
|
4691
|
+
* - Loading and empty states
|
|
4692
|
+
* - Keyboard navigation
|
|
4693
|
+
*/
|
|
4374
4694
|
inputRef: Ref<any, any>;
|
|
4695
|
+
/**
|
|
4696
|
+
* Combobox Component
|
|
4697
|
+
*
|
|
4698
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4699
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4700
|
+
*
|
|
4701
|
+
* @component Combobox
|
|
4702
|
+
* @description Provides a searchable dropdown with support for:
|
|
4703
|
+
* - Single and multiple selection modes
|
|
4704
|
+
* - Tree/hierarchical option structures
|
|
4705
|
+
* - Virtual scrolling for large datasets
|
|
4706
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4707
|
+
* - Header and footer slots
|
|
4708
|
+
* - Loading and empty states
|
|
4709
|
+
* - Keyboard navigation
|
|
4710
|
+
*/
|
|
4375
4711
|
triggerRef: Ref<any, any>;
|
|
4712
|
+
/**
|
|
4713
|
+
* Combobox Component
|
|
4714
|
+
*
|
|
4715
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4716
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4717
|
+
*
|
|
4718
|
+
* @component Combobox
|
|
4719
|
+
* @description Provides a searchable dropdown with support for:
|
|
4720
|
+
* - Single and multiple selection modes
|
|
4721
|
+
* - Tree/hierarchical option structures
|
|
4722
|
+
* - Virtual scrolling for large datasets
|
|
4723
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4724
|
+
* - Header and footer slots
|
|
4725
|
+
* - Loading and empty states
|
|
4726
|
+
* - Keyboard navigation
|
|
4727
|
+
*/
|
|
4376
4728
|
valuePlaceholder: ComputedRef<boolean>;
|
|
4729
|
+
/**
|
|
4730
|
+
* Combobox Component
|
|
4731
|
+
*
|
|
4732
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4733
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4734
|
+
*
|
|
4735
|
+
* @component Combobox
|
|
4736
|
+
* @description Provides a searchable dropdown with support for:
|
|
4737
|
+
* - Single and multiple selection modes
|
|
4738
|
+
* - Tree/hierarchical option structures
|
|
4739
|
+
* - Virtual scrolling for large datasets
|
|
4740
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4741
|
+
* - Header and footer slots
|
|
4742
|
+
* - Loading and empty states
|
|
4743
|
+
* - Keyboard navigation
|
|
4744
|
+
*/
|
|
4377
4745
|
placeholder: ComputedRef<string | undefined>;
|
|
4746
|
+
/**
|
|
4747
|
+
* Combobox Component
|
|
4748
|
+
*
|
|
4749
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4750
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4751
|
+
*
|
|
4752
|
+
* @component Combobox
|
|
4753
|
+
* @description Provides a searchable dropdown with support for:
|
|
4754
|
+
* - Single and multiple selection modes
|
|
4755
|
+
* - Tree/hierarchical option structures
|
|
4756
|
+
* - Virtual scrolling for large datasets
|
|
4757
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4758
|
+
* - Header and footer slots
|
|
4759
|
+
* - Loading and empty states
|
|
4760
|
+
* - Keyboard navigation
|
|
4761
|
+
*/
|
|
4378
4762
|
selectOption: (option?: ComboboxFlattenOptionType | undefined, byTreeSelect?: boolean | undefined) => void;
|
|
4763
|
+
/**
|
|
4764
|
+
* Combobox Component
|
|
4765
|
+
*
|
|
4766
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4767
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4768
|
+
*
|
|
4769
|
+
* @component Combobox
|
|
4770
|
+
* @description Provides a searchable dropdown with support for:
|
|
4771
|
+
* - Single and multiple selection modes
|
|
4772
|
+
* - Tree/hierarchical option structures
|
|
4773
|
+
* - Virtual scrolling for large datasets
|
|
4774
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4775
|
+
* - Header and footer slots
|
|
4776
|
+
* - Loading and empty states
|
|
4777
|
+
* - Keyboard navigation
|
|
4778
|
+
*/
|
|
4379
4779
|
itemMap: Ref<CollectionMap, CollectionMap>;
|
|
4780
|
+
/**
|
|
4781
|
+
* Combobox Component
|
|
4782
|
+
*
|
|
4783
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4784
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4785
|
+
*
|
|
4786
|
+
* @component Combobox
|
|
4787
|
+
* @description Provides a searchable dropdown with support for:
|
|
4788
|
+
* - Single and multiple selection modes
|
|
4789
|
+
* - Tree/hierarchical option structures
|
|
4790
|
+
* - Virtual scrolling for large datasets
|
|
4791
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4792
|
+
* - Header and footer slots
|
|
4793
|
+
* - Loading and empty states
|
|
4794
|
+
* - Keyboard navigation
|
|
4795
|
+
*/
|
|
4380
4796
|
getItems: (includeDisabledItem?: boolean | undefined) => CollectionMapItem[];
|
|
4797
|
+
/**
|
|
4798
|
+
* Combobox Component
|
|
4799
|
+
*
|
|
4800
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4801
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4802
|
+
*
|
|
4803
|
+
* @component Combobox
|
|
4804
|
+
* @description Provides a searchable dropdown with support for:
|
|
4805
|
+
* - Single and multiple selection modes
|
|
4806
|
+
* - Tree/hierarchical option structures
|
|
4807
|
+
* - Virtual scrolling for large datasets
|
|
4808
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4809
|
+
* - Header and footer slots
|
|
4810
|
+
* - Loading and empty states
|
|
4811
|
+
* - Keyboard navigation
|
|
4812
|
+
*/
|
|
4381
4813
|
highlightedOptionKey: Ref<string | undefined, string | undefined>;
|
|
4814
|
+
/**
|
|
4815
|
+
* Combobox Component
|
|
4816
|
+
*
|
|
4817
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4818
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4819
|
+
*
|
|
4820
|
+
* @component Combobox
|
|
4821
|
+
* @description Provides a searchable dropdown with support for:
|
|
4822
|
+
* - Single and multiple selection modes
|
|
4823
|
+
* - Tree/hierarchical option structures
|
|
4824
|
+
* - Virtual scrolling for large datasets
|
|
4825
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4826
|
+
* - Header and footer slots
|
|
4827
|
+
* - Loading and empty states
|
|
4828
|
+
* - Keyboard navigation
|
|
4829
|
+
*/
|
|
4382
4830
|
comboboxInputFocused: Ref<boolean, boolean>;
|
|
4831
|
+
/**
|
|
4832
|
+
* Combobox Component
|
|
4833
|
+
*
|
|
4834
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4835
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4836
|
+
*
|
|
4837
|
+
* @component Combobox
|
|
4838
|
+
* @description Provides a searchable dropdown with support for:
|
|
4839
|
+
* - Single and multiple selection modes
|
|
4840
|
+
* - Tree/hierarchical option structures
|
|
4841
|
+
* - Virtual scrolling for large datasets
|
|
4842
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4843
|
+
* - Header and footer slots
|
|
4844
|
+
* - Loading and empty states
|
|
4845
|
+
* - Keyboard navigation
|
|
4846
|
+
*/
|
|
4383
4847
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
4848
|
+
/**
|
|
4849
|
+
* Combobox Component
|
|
4850
|
+
*
|
|
4851
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4852
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4853
|
+
*
|
|
4854
|
+
* @component Combobox
|
|
4855
|
+
* @description Provides a searchable dropdown with support for:
|
|
4856
|
+
* - Single and multiple selection modes
|
|
4857
|
+
* - Tree/hierarchical option structures
|
|
4858
|
+
* - Virtual scrolling for large datasets
|
|
4859
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4860
|
+
* - Header and footer slots
|
|
4861
|
+
* - Loading and empty states
|
|
4862
|
+
* - Keyboard navigation
|
|
4863
|
+
*/
|
|
4384
4864
|
triggerProps: ComputedRef<Record<string, any>>;
|
|
4865
|
+
/**
|
|
4866
|
+
* Combobox Component
|
|
4867
|
+
*
|
|
4868
|
+
* A versatile combobox component that supports single and multiple selection,
|
|
4869
|
+
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4870
|
+
*
|
|
4871
|
+
* @component Combobox
|
|
4872
|
+
* @description Provides a searchable dropdown with support for:
|
|
4873
|
+
* - Single and multiple selection modes
|
|
4874
|
+
* - Tree/hierarchical option structures
|
|
4875
|
+
* - Virtual scrolling for large datasets
|
|
4876
|
+
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4877
|
+
* - Header and footer slots
|
|
4878
|
+
* - Loading and empty states
|
|
4879
|
+
* - Keyboard navigation
|
|
4880
|
+
*/
|
|
4385
4881
|
isHeaderSearch: ComputedRef<boolean>;
|
|
4386
4882
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4387
4883
|
search: (value?: string | null | undefined) => any;
|
|
@@ -15218,514 +15714,514 @@ export declare type VisibleColorPair = Exclude<ColorPair, ColorPairHsv>;
|
|
|
15218
15714
|
export { }
|
|
15219
15715
|
|
|
15220
15716
|
|
|
15221
|
-
/** component declare **/
|
|
15222
15717
|
declare module 'vue' {
|
|
15223
15718
|
interface GlobalComponents {
|
|
15224
|
-
|
|
15225
|
-
AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
|
|
15719
|
+
ColorPicker: DefineComponent<ColorPickerProps, undefined, ColorPickerEmits>;
|
|
15226
15720
|
}
|
|
15227
15721
|
}
|
|
15228
15722
|
|
|
15229
15723
|
|
|
15230
15724
|
declare module 'vue' {
|
|
15231
15725
|
interface GlobalComponents {
|
|
15232
|
-
|
|
15726
|
+
ColorTrigger: DefineComponent<ColorTriggerProps, ColorTriggerSlots>;
|
|
15233
15727
|
}
|
|
15234
15728
|
}
|
|
15235
15729
|
|
|
15236
15730
|
|
|
15237
15731
|
declare module 'vue' {
|
|
15238
15732
|
interface GlobalComponents {
|
|
15239
|
-
|
|
15733
|
+
ButtonGroup: DefineComponent<ButtonGroupProps>;
|
|
15240
15734
|
}
|
|
15241
15735
|
}
|
|
15242
15736
|
|
|
15243
15737
|
|
|
15244
15738
|
declare module 'vue' {
|
|
15245
15739
|
interface GlobalComponents {
|
|
15246
|
-
|
|
15740
|
+
Empty: DefineComponent<EmptyProps, EmptySlots>;
|
|
15247
15741
|
}
|
|
15248
15742
|
}
|
|
15249
15743
|
|
|
15250
15744
|
|
|
15251
15745
|
declare module 'vue' {
|
|
15252
15746
|
interface GlobalComponents {
|
|
15253
|
-
|
|
15747
|
+
Alert: DefineComponent<AlertProps, AlertSlots, AlertEmits>;
|
|
15254
15748
|
}
|
|
15255
15749
|
}
|
|
15256
15750
|
|
|
15257
15751
|
|
|
15258
15752
|
declare module 'vue' {
|
|
15259
15753
|
interface GlobalComponents {
|
|
15260
|
-
|
|
15754
|
+
Shortcut: DefineComponent<ShortcutProps, ShortcutSlots>;
|
|
15261
15755
|
}
|
|
15262
15756
|
}
|
|
15263
15757
|
|
|
15264
15758
|
|
|
15265
15759
|
declare module 'vue' {
|
|
15266
15760
|
interface GlobalComponents {
|
|
15267
|
-
|
|
15761
|
+
ColorSwatchGroup: DefineComponent<ColorSwatchGroupProps, ColorSwatchGroupSlots, ColorSwatchGroupEmits>;
|
|
15268
15762
|
}
|
|
15269
15763
|
}
|
|
15270
15764
|
|
|
15271
15765
|
|
|
15272
15766
|
declare module 'vue' {
|
|
15273
15767
|
interface GlobalComponents {
|
|
15274
|
-
|
|
15768
|
+
Blanket: DefineComponent<BlanketProps>;
|
|
15275
15769
|
}
|
|
15276
15770
|
}
|
|
15277
15771
|
|
|
15278
15772
|
|
|
15279
15773
|
declare module 'vue' {
|
|
15280
15774
|
interface GlobalComponents {
|
|
15281
|
-
|
|
15282
|
-
MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
|
|
15775
|
+
Icon: DefineComponent<IconProps>;
|
|
15283
15776
|
}
|
|
15284
15777
|
}
|
|
15285
15778
|
|
|
15286
15779
|
|
|
15287
15780
|
declare module 'vue' {
|
|
15288
15781
|
interface GlobalComponents {
|
|
15289
|
-
|
|
15782
|
+
InputGroup: DefineComponent<InputGroupProps>;
|
|
15290
15783
|
}
|
|
15291
15784
|
}
|
|
15292
15785
|
|
|
15293
15786
|
|
|
15294
15787
|
declare module 'vue' {
|
|
15295
15788
|
interface GlobalComponents {
|
|
15296
|
-
|
|
15789
|
+
ChipGroup: DefineComponent<ChipGroupProps, ChipGroupSlots, ChipGroupEmits>;
|
|
15297
15790
|
}
|
|
15298
15791
|
}
|
|
15299
15792
|
|
|
15300
15793
|
|
|
15301
15794
|
declare module 'vue' {
|
|
15302
15795
|
interface GlobalComponents {
|
|
15303
|
-
|
|
15796
|
+
Rate: DefineComponent<RateProps, RateSlots, RateEmits>;
|
|
15304
15797
|
}
|
|
15305
15798
|
}
|
|
15306
15799
|
|
|
15307
15800
|
|
|
15308
15801
|
declare module 'vue' {
|
|
15309
15802
|
interface GlobalComponents {
|
|
15310
|
-
|
|
15803
|
+
IndentLevel: DefineComponent<IndentLevelProps>;
|
|
15311
15804
|
}
|
|
15312
15805
|
}
|
|
15313
15806
|
|
|
15314
15807
|
|
|
15315
15808
|
declare module 'vue' {
|
|
15316
15809
|
interface GlobalComponents {
|
|
15317
|
-
|
|
15810
|
+
Select: DefineComponent<SelectProps, SelectSlots, SelectEmits>;
|
|
15811
|
+
SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
|
|
15812
|
+
SelectLabel: DefineComponent;
|
|
15318
15813
|
}
|
|
15319
15814
|
}
|
|
15320
15815
|
|
|
15321
15816
|
|
|
15322
15817
|
declare module 'vue' {
|
|
15323
15818
|
interface GlobalComponents {
|
|
15324
|
-
|
|
15325
|
-
ComboboxInput: DefineComponent<ComboboxInputProps>;
|
|
15326
|
-
ComboboxOption: DefineComponent;
|
|
15819
|
+
CheckboxGroup: DefineComponent<CheckboxGroupProps, Record<string, any>, CheckboxGroupEmits>;
|
|
15327
15820
|
}
|
|
15328
15821
|
}
|
|
15329
15822
|
|
|
15330
15823
|
|
|
15331
15824
|
declare module 'vue' {
|
|
15332
15825
|
interface GlobalComponents {
|
|
15333
|
-
|
|
15826
|
+
Breadcrumb: DefineComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits>;
|
|
15334
15827
|
}
|
|
15335
15828
|
}
|
|
15336
15829
|
|
|
15337
15830
|
|
|
15338
15831
|
declare module 'vue' {
|
|
15339
15832
|
interface GlobalComponents {
|
|
15340
|
-
|
|
15833
|
+
Tree: DefineComponent<TreeProps, TreeSlots, TreeEmits>;
|
|
15834
|
+
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
15341
15835
|
}
|
|
15342
15836
|
}
|
|
15343
15837
|
|
|
15344
15838
|
|
|
15345
15839
|
declare module 'vue' {
|
|
15346
15840
|
interface GlobalComponents {
|
|
15347
|
-
|
|
15841
|
+
ScrollContainer: DefineComponent<ScrollContainerProps>;
|
|
15348
15842
|
}
|
|
15349
15843
|
}
|
|
15350
15844
|
|
|
15351
15845
|
|
|
15352
15846
|
declare module 'vue' {
|
|
15353
15847
|
interface GlobalComponents {
|
|
15354
|
-
|
|
15848
|
+
FloatButton: DefineComponent<FloatButtonProps, FloatButtonSlots>;
|
|
15355
15849
|
}
|
|
15356
15850
|
}
|
|
15357
15851
|
|
|
15358
15852
|
|
|
15359
15853
|
declare module 'vue' {
|
|
15360
15854
|
interface GlobalComponents {
|
|
15361
|
-
|
|
15855
|
+
MenuItem: DefineComponent<MenuItemProps, MenuItemSlots>;
|
|
15362
15856
|
}
|
|
15363
15857
|
}
|
|
15364
15858
|
|
|
15365
15859
|
|
|
15366
15860
|
declare module 'vue' {
|
|
15367
15861
|
interface GlobalComponents {
|
|
15368
|
-
|
|
15862
|
+
Banner: DefineComponent<BannerProps, BannerSlots, BannerEmits>;
|
|
15369
15863
|
}
|
|
15370
15864
|
}
|
|
15371
15865
|
|
|
15372
15866
|
|
|
15373
15867
|
declare module 'vue' {
|
|
15374
15868
|
interface GlobalComponents {
|
|
15375
|
-
|
|
15869
|
+
Button: DefineComponent<ButtonProps, ButtonSlots>;
|
|
15376
15870
|
}
|
|
15377
15871
|
}
|
|
15378
15872
|
|
|
15379
15873
|
|
|
15380
15874
|
declare module 'vue' {
|
|
15381
15875
|
interface GlobalComponents {
|
|
15382
|
-
|
|
15876
|
+
Drawer: DefineComponent<DrawerProps, DrawerSlots, DrawerEmits>;
|
|
15877
|
+
DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
|
|
15383
15878
|
}
|
|
15384
15879
|
}
|
|
15385
15880
|
|
|
15386
15881
|
|
|
15387
15882
|
declare module 'vue' {
|
|
15388
15883
|
interface GlobalComponents {
|
|
15389
|
-
|
|
15390
|
-
Step: DefineComponent<StepItemProps, StepItemSlots>;
|
|
15884
|
+
Avatar: DefineComponent<AvatarProps, AvatarSlots, AvatarEmits>;
|
|
15391
15885
|
}
|
|
15392
15886
|
}
|
|
15393
15887
|
|
|
15394
15888
|
|
|
15395
15889
|
declare module 'vue' {
|
|
15396
15890
|
interface GlobalComponents {
|
|
15397
|
-
|
|
15891
|
+
Checkbox: DefineComponent<CheckboxProps, CheckboxSlots, CheckboxEmits>;
|
|
15398
15892
|
}
|
|
15399
15893
|
}
|
|
15400
15894
|
|
|
15401
15895
|
|
|
15402
15896
|
declare module 'vue' {
|
|
15403
15897
|
interface GlobalComponents {
|
|
15404
|
-
|
|
15405
|
-
|
|
15406
|
-
|
|
15898
|
+
Combobox: DefineComponent<ComboboxProps, ComboboxSlots, ComboboxEmits>;
|
|
15899
|
+
ComboboxInput: DefineComponent<ComboboxInputProps>;
|
|
15900
|
+
ComboboxOption: DefineComponent;
|
|
15407
15901
|
}
|
|
15408
15902
|
}
|
|
15409
15903
|
|
|
15410
15904
|
|
|
15411
15905
|
declare module 'vue' {
|
|
15412
15906
|
interface GlobalComponents {
|
|
15413
|
-
|
|
15907
|
+
Menu: DefineComponent<MenuProps, MenuSlots, MenuEmits>;
|
|
15908
|
+
MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
|
|
15414
15909
|
}
|
|
15415
15910
|
}
|
|
15416
15911
|
|
|
15417
15912
|
|
|
15418
15913
|
declare module 'vue' {
|
|
15419
15914
|
interface GlobalComponents {
|
|
15420
|
-
|
|
15915
|
+
Upload: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
15916
|
+
UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
15917
|
+
UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
|
|
15421
15918
|
}
|
|
15422
15919
|
}
|
|
15423
15920
|
|
|
15424
15921
|
|
|
15425
15922
|
declare module 'vue' {
|
|
15426
15923
|
interface GlobalComponents {
|
|
15427
|
-
|
|
15924
|
+
Chip: DefineComponent<ChipProps, ChipSlots, ChipEmits>;
|
|
15428
15925
|
}
|
|
15429
15926
|
}
|
|
15430
15927
|
|
|
15431
15928
|
|
|
15432
15929
|
declare module 'vue' {
|
|
15433
15930
|
interface GlobalComponents {
|
|
15434
|
-
|
|
15931
|
+
RadioGroup: DefineComponent<RadioGroupProps, Record<string, any>, RadioGroupEmits>;
|
|
15932
|
+
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
15435
15933
|
}
|
|
15436
15934
|
}
|
|
15437
15935
|
|
|
15438
15936
|
|
|
15439
15937
|
declare module 'vue' {
|
|
15440
15938
|
interface GlobalComponents {
|
|
15441
|
-
|
|
15939
|
+
Dialog: DefineComponent<DialogProps, DialogSlots, DialogEmits>;
|
|
15940
|
+
DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
|
|
15442
15941
|
}
|
|
15443
15942
|
}
|
|
15444
15943
|
|
|
15445
15944
|
|
|
15446
15945
|
declare module 'vue' {
|
|
15447
15946
|
interface GlobalComponents {
|
|
15448
|
-
|
|
15947
|
+
Image: DefineComponent<ImageProps, ImageSlots>;
|
|
15449
15948
|
}
|
|
15450
15949
|
}
|
|
15451
15950
|
|
|
15452
15951
|
|
|
15453
15952
|
declare module 'vue' {
|
|
15454
15953
|
interface GlobalComponents {
|
|
15455
|
-
|
|
15954
|
+
AlertDialog: DefineComponent<AlertDialogProps, AlertDialogSlots, AlertDialogEmits>;
|
|
15456
15955
|
}
|
|
15457
15956
|
}
|
|
15458
15957
|
|
|
15459
15958
|
|
|
15460
15959
|
declare module 'vue' {
|
|
15461
15960
|
interface GlobalComponents {
|
|
15462
|
-
|
|
15961
|
+
Modal: DefineComponent<ModalProps, ModalSlots, ModalEmits>;
|
|
15962
|
+
ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
|
|
15463
15963
|
}
|
|
15464
15964
|
}
|
|
15465
15965
|
|
|
15466
15966
|
|
|
15467
15967
|
declare module 'vue' {
|
|
15468
15968
|
interface GlobalComponents {
|
|
15469
|
-
|
|
15969
|
+
Table: DefineComponent<TableProps, Record<string, any>, Record<string, any>>;
|
|
15970
|
+
Th: DefineComponent<ThProps, ThSlots>;
|
|
15971
|
+
Td: DefineComponent<TdProps, TdSlots>;
|
|
15972
|
+
Tr: DefineComponent<TrProps>;
|
|
15973
|
+
TBody: DefineComponent<TBodyProps>;
|
|
15974
|
+
THead: DefineComponent<THeadProps>;
|
|
15975
|
+
TFoot: DefineComponent<TFootProps>;
|
|
15470
15976
|
}
|
|
15471
15977
|
}
|
|
15472
15978
|
|
|
15473
15979
|
|
|
15474
15980
|
declare module 'vue' {
|
|
15475
15981
|
interface GlobalComponents {
|
|
15476
|
-
|
|
15982
|
+
InputNumber: DefineComponent<InputNumberProps, InputNumberSlots, InputNumberEmits>;
|
|
15477
15983
|
}
|
|
15478
15984
|
}
|
|
15479
15985
|
|
|
15480
15986
|
|
|
15481
15987
|
declare module 'vue' {
|
|
15482
15988
|
interface GlobalComponents {
|
|
15483
|
-
|
|
15484
|
-
DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
|
|
15989
|
+
Kbd: DefineComponent<KbdProps, KbdSlots>;
|
|
15485
15990
|
}
|
|
15486
15991
|
}
|
|
15487
15992
|
|
|
15488
15993
|
|
|
15489
15994
|
declare module 'vue' {
|
|
15490
15995
|
interface GlobalComponents {
|
|
15491
|
-
|
|
15492
|
-
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
15996
|
+
GraphicalObject: DefineComponent<GraphicalObjectProps, GraphicalObjectSlots>;
|
|
15493
15997
|
}
|
|
15494
15998
|
}
|
|
15495
15999
|
|
|
15496
16000
|
|
|
15497
16001
|
declare module 'vue' {
|
|
15498
16002
|
interface GlobalComponents {
|
|
15499
|
-
|
|
15500
|
-
Th: DefineComponent<ThProps, ThSlots>;
|
|
15501
|
-
Td: DefineComponent<TdProps, TdSlots>;
|
|
15502
|
-
Tr: DefineComponent<TrProps>;
|
|
15503
|
-
TBody: DefineComponent<TBodyProps>;
|
|
15504
|
-
THead: DefineComponent<THeadProps>;
|
|
15505
|
-
TFoot: DefineComponent<TFootProps>;
|
|
16003
|
+
Toast: DefineComponent<ToastProps, ToastSlots, ToastEmits>;
|
|
15506
16004
|
}
|
|
15507
16005
|
}
|
|
15508
16006
|
|
|
15509
16007
|
|
|
15510
16008
|
declare module 'vue' {
|
|
15511
16009
|
interface GlobalComponents {
|
|
15512
|
-
|
|
16010
|
+
Tabs: DefineComponent<TabsProps, Record<string, any>, TabsEmits>;
|
|
16011
|
+
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
16012
|
+
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
16013
|
+
TabContent: DefineComponent;
|
|
15513
16014
|
}
|
|
15514
16015
|
}
|
|
15515
16016
|
|
|
15516
16017
|
|
|
15517
16018
|
declare module 'vue' {
|
|
15518
16019
|
interface GlobalComponents {
|
|
15519
|
-
|
|
16020
|
+
ColorSwatch: DefineComponent<ColorSwatchProps, ColorSwatchSlots, undefined>;
|
|
15520
16021
|
}
|
|
15521
16022
|
}
|
|
15522
16023
|
|
|
15523
16024
|
|
|
15524
16025
|
declare module 'vue' {
|
|
15525
16026
|
interface GlobalComponents {
|
|
15526
|
-
|
|
15527
|
-
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
15528
|
-
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
15529
|
-
TabContent: DefineComponent;
|
|
16027
|
+
Badge: DefineComponent<BadgeProps, BadgeSlots>;
|
|
15530
16028
|
}
|
|
15531
16029
|
}
|
|
15532
16030
|
|
|
15533
16031
|
|
|
16032
|
+
/** component declare **/
|
|
15534
16033
|
declare module 'vue' {
|
|
15535
16034
|
interface GlobalComponents {
|
|
15536
|
-
|
|
16035
|
+
Accordion: DefineComponent<AccordionProps, AccordionSlots, AccordionEmits>;
|
|
16036
|
+
AccordionItem: DefineComponent<AccordionItemProps, AccordionItemSlots>;
|
|
15537
16037
|
}
|
|
15538
16038
|
}
|
|
15539
16039
|
|
|
15540
16040
|
|
|
15541
16041
|
declare module 'vue' {
|
|
15542
16042
|
interface GlobalComponents {
|
|
15543
|
-
|
|
16043
|
+
SubMenu: DefineComponent<SubMenuProps, SubMenuSlots>;
|
|
15544
16044
|
}
|
|
15545
16045
|
}
|
|
15546
16046
|
|
|
15547
16047
|
|
|
15548
|
-
/**
|
|
15549
|
-
* Global component declaration for TypeScript support
|
|
15550
|
-
* Enables <Tooltip> usage in templates without explicit import
|
|
15551
|
-
*/
|
|
15552
16048
|
declare module 'vue' {
|
|
15553
16049
|
interface GlobalComponents {
|
|
15554
|
-
|
|
15555
|
-
TooltipProvider: DefineComponent<TooltipProviderProps>;
|
|
16050
|
+
Link: DefineComponent<LinkProps, LinkSlots, LinkEmits>;
|
|
15556
16051
|
}
|
|
15557
16052
|
}
|
|
15558
16053
|
|
|
15559
16054
|
|
|
15560
16055
|
declare module 'vue' {
|
|
15561
16056
|
interface GlobalComponents {
|
|
15562
|
-
|
|
16057
|
+
Steps: DefineComponent<StepsProps, StepsSlots, StepsEmits>;
|
|
16058
|
+
Step: DefineComponent<StepItemProps, StepItemSlots>;
|
|
15563
16059
|
}
|
|
15564
16060
|
}
|
|
15565
16061
|
|
|
15566
16062
|
|
|
15567
16063
|
declare module 'vue' {
|
|
15568
16064
|
interface GlobalComponents {
|
|
15569
|
-
|
|
16065
|
+
GraphicalObjectGroup: DefineComponent<GraphicalObjectGroupProps, GraphicalObjectGroupSlots>;
|
|
15570
16066
|
}
|
|
15571
16067
|
}
|
|
15572
16068
|
|
|
15573
16069
|
|
|
15574
16070
|
declare module 'vue' {
|
|
15575
16071
|
interface GlobalComponents {
|
|
15576
|
-
|
|
16072
|
+
HoverCard: DefineComponent<HoverCardProps, HoverCardSlots, HoverCardEmits>;
|
|
15577
16073
|
}
|
|
15578
16074
|
}
|
|
15579
16075
|
|
|
15580
16076
|
|
|
15581
16077
|
declare module 'vue' {
|
|
15582
16078
|
interface GlobalComponents {
|
|
15583
|
-
|
|
16079
|
+
Segmented: DefineComponent<SegmentedProps, SegmentedSlots, SegmentedEmits>;
|
|
15584
16080
|
}
|
|
15585
16081
|
}
|
|
15586
16082
|
|
|
15587
16083
|
|
|
15588
16084
|
declare module 'vue' {
|
|
15589
16085
|
interface GlobalComponents {
|
|
15590
|
-
|
|
16086
|
+
Switch: DefineComponent<SwitchProps, SwitchSlots, SwitchEmits>;
|
|
15591
16087
|
}
|
|
15592
16088
|
}
|
|
15593
16089
|
|
|
15594
16090
|
|
|
15595
16091
|
declare module 'vue' {
|
|
15596
16092
|
interface GlobalComponents {
|
|
15597
|
-
|
|
16093
|
+
FormValidation: DefineComponent<FormValidationProps>;
|
|
15598
16094
|
}
|
|
15599
16095
|
}
|
|
15600
16096
|
|
|
15601
16097
|
|
|
15602
16098
|
declare module 'vue' {
|
|
15603
16099
|
interface GlobalComponents {
|
|
15604
|
-
|
|
16100
|
+
AvatarGroup: DefineComponent<AvatarGroupProps, AvatarGroupSlots>;
|
|
15605
16101
|
}
|
|
15606
16102
|
}
|
|
15607
16103
|
|
|
15608
16104
|
|
|
15609
16105
|
declare module 'vue' {
|
|
15610
16106
|
interface GlobalComponents {
|
|
15611
|
-
|
|
16107
|
+
Divider: DefineComponent<DividerProps>;
|
|
15612
16108
|
}
|
|
15613
16109
|
}
|
|
15614
16110
|
|
|
15615
16111
|
|
|
15616
16112
|
declare module 'vue' {
|
|
15617
16113
|
interface GlobalComponents {
|
|
15618
|
-
|
|
15619
|
-
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
16114
|
+
Label: DefineComponent<LabelProps, LabelSlots>;
|
|
15620
16115
|
}
|
|
15621
16116
|
}
|
|
15622
16117
|
|
|
15623
16118
|
|
|
15624
16119
|
declare module 'vue' {
|
|
15625
16120
|
interface GlobalComponents {
|
|
15626
|
-
|
|
15627
|
-
UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
15628
|
-
UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
|
|
16121
|
+
DropZone: DefineComponent<DropZoneProps, DropZoneSlots, DropZoneEmits>;
|
|
15629
16122
|
}
|
|
15630
16123
|
}
|
|
15631
16124
|
|
|
15632
16125
|
|
|
15633
16126
|
declare module 'vue' {
|
|
15634
16127
|
interface GlobalComponents {
|
|
15635
|
-
|
|
16128
|
+
ConfigProvider: DefineComponent<ConfigProviderProps, ConfigProviderSlots>;
|
|
15636
16129
|
}
|
|
15637
16130
|
}
|
|
15638
16131
|
|
|
15639
16132
|
|
|
15640
16133
|
declare module 'vue' {
|
|
15641
16134
|
interface GlobalComponents {
|
|
15642
|
-
|
|
16135
|
+
Input: DefineComponent<InputProps, InputSlots, InputEmits>;
|
|
15643
16136
|
}
|
|
15644
16137
|
}
|
|
15645
16138
|
|
|
15646
16139
|
|
|
15647
16140
|
declare module 'vue' {
|
|
15648
16141
|
interface GlobalComponents {
|
|
15649
|
-
|
|
15650
|
-
ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
|
|
16142
|
+
ActionButton: DefineComponent<ActionButtonProps, ActionButtonSlots>;
|
|
15651
16143
|
}
|
|
15652
16144
|
}
|
|
15653
16145
|
|
|
15654
16146
|
|
|
15655
16147
|
declare module 'vue' {
|
|
15656
16148
|
interface GlobalComponents {
|
|
15657
|
-
|
|
16149
|
+
PinInput: DefineComponent<PinInputProps, undefined, PinInputEmits>;
|
|
15658
16150
|
}
|
|
15659
16151
|
}
|
|
15660
16152
|
|
|
15661
16153
|
|
|
15662
16154
|
declare module 'vue' {
|
|
15663
16155
|
interface GlobalComponents {
|
|
15664
|
-
|
|
16156
|
+
Textarea: DefineComponent<TextareaProps, Record<string, any>, TextareaEmits>;
|
|
15665
16157
|
}
|
|
15666
16158
|
}
|
|
15667
16159
|
|
|
15668
16160
|
|
|
15669
16161
|
declare module 'vue' {
|
|
15670
16162
|
interface GlobalComponents {
|
|
15671
|
-
|
|
16163
|
+
Pagination: DefineComponent<PaginationProps, Record<string, any>, PaginationEmits>;
|
|
15672
16164
|
}
|
|
15673
16165
|
}
|
|
15674
16166
|
|
|
15675
16167
|
|
|
15676
16168
|
declare module 'vue' {
|
|
15677
16169
|
interface GlobalComponents {
|
|
15678
|
-
|
|
16170
|
+
Skeleton: DefineComponent<SkeletonProps>;
|
|
15679
16171
|
}
|
|
15680
16172
|
}
|
|
15681
16173
|
|
|
15682
16174
|
|
|
15683
16175
|
declare module 'vue' {
|
|
15684
16176
|
interface GlobalComponents {
|
|
15685
|
-
|
|
16177
|
+
Card: DefineComponent<CardProps, CardSlots>;
|
|
15686
16178
|
}
|
|
15687
16179
|
}
|
|
15688
16180
|
|
|
15689
16181
|
|
|
15690
16182
|
declare module 'vue' {
|
|
15691
16183
|
interface GlobalComponents {
|
|
15692
|
-
|
|
15693
|
-
DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
|
|
16184
|
+
Stepper: DefineComponent<StepperProps, undefined, StepperEmits>;
|
|
15694
16185
|
}
|
|
15695
16186
|
}
|
|
15696
16187
|
|
|
15697
16188
|
|
|
15698
16189
|
declare module 'vue' {
|
|
15699
16190
|
interface GlobalComponents {
|
|
15700
|
-
|
|
16191
|
+
Indicator: DefineComponent<IndicatorProps>;
|
|
15701
16192
|
}
|
|
15702
16193
|
}
|
|
15703
16194
|
|
|
15704
16195
|
|
|
16196
|
+
/**
|
|
16197
|
+
* Global component declaration for TypeScript support
|
|
16198
|
+
* Enables <Tooltip> usage in templates without explicit import
|
|
16199
|
+
*/
|
|
15705
16200
|
declare module 'vue' {
|
|
15706
16201
|
interface GlobalComponents {
|
|
15707
|
-
|
|
16202
|
+
Tooltip: DefineComponent<TooltipProps, TooltipSlots>;
|
|
16203
|
+
TooltipProvider: DefineComponent<TooltipProviderProps>;
|
|
15708
16204
|
}
|
|
15709
16205
|
}
|
|
15710
16206
|
|
|
15711
16207
|
|
|
15712
16208
|
declare module 'vue' {
|
|
15713
16209
|
interface GlobalComponents {
|
|
15714
|
-
|
|
16210
|
+
Popover: DefineComponent<PopoverProps, PopoverSlots, PopoverEmits>;
|
|
15715
16211
|
}
|
|
15716
16212
|
}
|
|
15717
16213
|
|
|
15718
16214
|
|
|
15719
16215
|
declare module 'vue' {
|
|
15720
16216
|
interface GlobalComponents {
|
|
15721
|
-
|
|
16217
|
+
PageIndicator: DefineComponent<PageIndicatorProps, PageIndicatorSlots, PageIndicatorEmits>;
|
|
15722
16218
|
}
|
|
15723
16219
|
}
|
|
15724
16220
|
|
|
15725
16221
|
|
|
15726
16222
|
declare module 'vue' {
|
|
15727
16223
|
interface GlobalComponents {
|
|
15728
|
-
|
|
16224
|
+
IconButton: DefineComponent<IconButtonProps, IconButtonSlots>;
|
|
15729
16225
|
}
|
|
15730
16226
|
}
|
|
15731
16227
|
|