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