@pantograph/vue 0.34.34 → 0.34.35
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/{ComponentMap-DnlN8EV6.js → ComponentMap-BqkOktnN.js} +1 -0
- package/dist/ComponentMap-Dc0o97JR.js +1 -0
- package/dist/index.d.ts +246 -2175
- package/dist/index.js +290 -288
- package/dist/index.umd.cjs +1 -1
- package/dist/nuxt/index.js +1 -1
- package/dist/nuxt/index.umd.cjs +1 -1
- package/dist/nuxt.d.ts +95 -95
- package/dist/resolver/index.js +1 -1
- package/dist/resolver/index.umd.cjs +1 -1
- package/dist/resolver.d.ts +95 -95
- package/dist/use/index.js +10252 -10072
- package/dist/use/index.umd.cjs +6 -6
- package/dist/use.d.ts +95 -95
- package/package.json +3 -3
- package/dist/ComponentMap-MimueAM8.js +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -604,6 +604,12 @@ declare type __VLS_WithTemplateSlots_91<T, S> = T & {
|
|
|
604
604
|
};
|
|
605
605
|
};
|
|
606
606
|
|
|
607
|
+
declare type __VLS_WithTemplateSlots_92<T, S> = T & {
|
|
608
|
+
new (): {
|
|
609
|
+
$slots: S;
|
|
610
|
+
};
|
|
611
|
+
};
|
|
612
|
+
|
|
607
613
|
declare type AcceptableValue = string | number | bigint | Record<string, any> | null;
|
|
608
614
|
|
|
609
615
|
export declare const Accordion: __VLS_WithTemplateSlots<DefineComponent<AccordionProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
@@ -3404,7 +3410,7 @@ export declare const CHIP_DEFAULT_PROPS: {
|
|
|
3404
3410
|
readonly size: "md";
|
|
3405
3411
|
readonly color: "default";
|
|
3406
3412
|
readonly closeIcon: "tabler:x";
|
|
3407
|
-
readonly closeTrigger:
|
|
3413
|
+
readonly closeTrigger: undefined;
|
|
3408
3414
|
readonly selected: undefined;
|
|
3409
3415
|
readonly closeable: undefined;
|
|
3410
3416
|
readonly overlayActions: undefined;
|
|
@@ -4346,2046 +4352,99 @@ export declare const COMBO_BOX_DEFAULT_PROPS: {
|
|
|
4346
4352
|
};
|
|
4347
4353
|
|
|
4348
4354
|
export declare const Combobox: __VLS_WithTemplateSlots_24<DefineComponent<ComboboxProps, {
|
|
4349
|
-
/**
|
|
4350
|
-
* Combobox Component
|
|
4351
|
-
*
|
|
4352
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4353
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4354
|
-
*
|
|
4355
|
-
* @component Combobox
|
|
4356
|
-
* @description Provides a searchable dropdown with support for:
|
|
4357
|
-
* - Single and multiple selection modes
|
|
4358
|
-
* - Tree/hierarchical option structures
|
|
4359
|
-
* - Virtual scrolling for large datasets
|
|
4360
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4361
|
-
* - Header and footer slots
|
|
4362
|
-
* - Loading and empty states
|
|
4363
|
-
* - Keyboard navigation
|
|
4364
|
-
*/
|
|
4365
|
-
displaySelectedKeys: ComputedRef<string[]>;
|
|
4366
|
-
/**
|
|
4367
|
-
* Combobox Component
|
|
4368
|
-
*
|
|
4369
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4370
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4371
|
-
*
|
|
4372
|
-
* @component Combobox
|
|
4373
|
-
* @description Provides a searchable dropdown with support for:
|
|
4374
|
-
* - Single and multiple selection modes
|
|
4375
|
-
* - Tree/hierarchical option structures
|
|
4376
|
-
* - Virtual scrolling for large datasets
|
|
4377
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4378
|
-
* - Header and footer slots
|
|
4379
|
-
* - Loading and empty states
|
|
4380
|
-
* - Keyboard navigation
|
|
4381
|
-
*/
|
|
4382
4355
|
isOptionSelected: (value?: string | undefined) => boolean;
|
|
4383
|
-
/**
|
|
4384
|
-
* Combobox Component
|
|
4385
|
-
*
|
|
4386
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4387
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4388
|
-
*
|
|
4389
|
-
* @component Combobox
|
|
4390
|
-
* @description Provides a searchable dropdown with support for:
|
|
4391
|
-
* - Single and multiple selection modes
|
|
4392
|
-
* - Tree/hierarchical option structures
|
|
4393
|
-
* - Virtual scrolling for large datasets
|
|
4394
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4395
|
-
* - Header and footer slots
|
|
4396
|
-
* - Loading and empty states
|
|
4397
|
-
* - Keyboard navigation
|
|
4398
|
-
*/
|
|
4399
4356
|
getOptionByValue: (value: string) => ComboboxFlattenOptionType | undefined;
|
|
4400
|
-
/**
|
|
4401
|
-
* Combobox Component
|
|
4402
|
-
*
|
|
4403
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4404
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4405
|
-
*
|
|
4406
|
-
* @component Combobox
|
|
4407
|
-
* @description Provides a searchable dropdown with support for:
|
|
4408
|
-
* - Single and multiple selection modes
|
|
4409
|
-
* - Tree/hierarchical option structures
|
|
4410
|
-
* - Virtual scrolling for large datasets
|
|
4411
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4412
|
-
* - Header and footer slots
|
|
4413
|
-
* - Loading and empty states
|
|
4414
|
-
* - Keyboard navigation
|
|
4415
|
-
*/
|
|
4416
4357
|
getLabelByValue: (value: string) => string | undefined;
|
|
4417
|
-
/**
|
|
4418
|
-
* Combobox Component
|
|
4419
|
-
*
|
|
4420
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4421
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4422
|
-
*
|
|
4423
|
-
* @component Combobox
|
|
4424
|
-
* @description Provides a searchable dropdown with support for:
|
|
4425
|
-
* - Single and multiple selection modes
|
|
4426
|
-
* - Tree/hierarchical option structures
|
|
4427
|
-
* - Virtual scrolling for large datasets
|
|
4428
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4429
|
-
* - Header and footer slots
|
|
4430
|
-
* - Loading and empty states
|
|
4431
|
-
* - Keyboard navigation
|
|
4432
|
-
*/
|
|
4433
4358
|
getSingleByValue: (value: string) => boolean;
|
|
4434
|
-
/**
|
|
4435
|
-
* Combobox Component
|
|
4436
|
-
*
|
|
4437
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4438
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4439
|
-
*
|
|
4440
|
-
* @component Combobox
|
|
4441
|
-
* @description Provides a searchable dropdown with support for:
|
|
4442
|
-
* - Single and multiple selection modes
|
|
4443
|
-
* - Tree/hierarchical option structures
|
|
4444
|
-
* - Virtual scrolling for large datasets
|
|
4445
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4446
|
-
* - Header and footer slots
|
|
4447
|
-
* - Loading and empty states
|
|
4448
|
-
* - Keyboard navigation
|
|
4449
|
-
*/
|
|
4450
4359
|
focusOnInput: (e?: PointerEvent | undefined) => void;
|
|
4451
|
-
/**
|
|
4452
|
-
* Combobox Component
|
|
4453
|
-
*
|
|
4454
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4455
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4456
|
-
*
|
|
4457
|
-
* @component Combobox
|
|
4458
|
-
* @description Provides a searchable dropdown with support for:
|
|
4459
|
-
* - Single and multiple selection modes
|
|
4460
|
-
* - Tree/hierarchical option structures
|
|
4461
|
-
* - Virtual scrolling for large datasets
|
|
4462
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4463
|
-
* - Header and footer slots
|
|
4464
|
-
* - Loading and empty states
|
|
4465
|
-
* - Keyboard navigation
|
|
4466
|
-
*/
|
|
4467
4360
|
removeValue: (value?: string | number | undefined) => void;
|
|
4468
|
-
/**
|
|
4469
|
-
* Combobox Component
|
|
4470
|
-
*
|
|
4471
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4472
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4473
|
-
*
|
|
4474
|
-
* @component Combobox
|
|
4475
|
-
* @description Provides a searchable dropdown with support for:
|
|
4476
|
-
* - Single and multiple selection modes
|
|
4477
|
-
* - Tree/hierarchical option structures
|
|
4478
|
-
* - Virtual scrolling for large datasets
|
|
4479
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4480
|
-
* - Header and footer slots
|
|
4481
|
-
* - Loading and empty states
|
|
4482
|
-
* - Keyboard navigation
|
|
4483
|
-
*/
|
|
4484
4361
|
getFlattenOption: (item: ComboboxOptionType) => ComboboxFlattenOptionType;
|
|
4485
|
-
/**
|
|
4486
|
-
* Combobox Component
|
|
4487
|
-
*
|
|
4488
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4489
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4490
|
-
*
|
|
4491
|
-
* @component Combobox
|
|
4492
|
-
* @description Provides a searchable dropdown with support for:
|
|
4493
|
-
* - Single and multiple selection modes
|
|
4494
|
-
* - Tree/hierarchical option structures
|
|
4495
|
-
* - Virtual scrolling for large datasets
|
|
4496
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4497
|
-
* - Header and footer slots
|
|
4498
|
-
* - Loading and empty states
|
|
4499
|
-
* - Keyboard navigation
|
|
4500
|
-
*/
|
|
4501
4362
|
getOptionDataset: (option: ComboboxFlattenOptionType) => Record<string, any>;
|
|
4502
|
-
/**
|
|
4503
|
-
* Combobox Component
|
|
4504
|
-
*
|
|
4505
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4506
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4507
|
-
*
|
|
4508
|
-
* @component Combobox
|
|
4509
|
-
* @description Provides a searchable dropdown with support for:
|
|
4510
|
-
* - Single and multiple selection modes
|
|
4511
|
-
* - Tree/hierarchical option structures
|
|
4512
|
-
* - Virtual scrolling for large datasets
|
|
4513
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4514
|
-
* - Header and footer slots
|
|
4515
|
-
* - Loading and empty states
|
|
4516
|
-
* - Keyboard navigation
|
|
4517
|
-
*/
|
|
4518
4363
|
getDisabled: ComputedRef<boolean>;
|
|
4519
|
-
/**
|
|
4520
|
-
* Combobox Component
|
|
4521
|
-
*
|
|
4522
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4523
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4524
|
-
*
|
|
4525
|
-
* @component Combobox
|
|
4526
|
-
* @description Provides a searchable dropdown with support for:
|
|
4527
|
-
* - Single and multiple selection modes
|
|
4528
|
-
* - Tree/hierarchical option structures
|
|
4529
|
-
* - Virtual scrolling for large datasets
|
|
4530
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4531
|
-
* - Header and footer slots
|
|
4532
|
-
* - Loading and empty states
|
|
4533
|
-
* - Keyboard navigation
|
|
4534
|
-
*/
|
|
4535
4364
|
getStatus: ComputedRef<"none" | "error" | "success" | "warning">;
|
|
4536
|
-
/**
|
|
4537
|
-
* Combobox Component
|
|
4538
|
-
*
|
|
4539
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4540
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4541
|
-
*
|
|
4542
|
-
* @component Combobox
|
|
4543
|
-
* @description Provides a searchable dropdown with support for:
|
|
4544
|
-
* - Single and multiple selection modes
|
|
4545
|
-
* - Tree/hierarchical option structures
|
|
4546
|
-
* - Virtual scrolling for large datasets
|
|
4547
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4548
|
-
* - Header and footer slots
|
|
4549
|
-
* - Loading and empty states
|
|
4550
|
-
* - Keyboard navigation
|
|
4551
|
-
*/
|
|
4552
4365
|
getSize: ComputedRef<"sm" | "md" | "lg">;
|
|
4553
|
-
/**
|
|
4554
|
-
* Combobox Component
|
|
4555
|
-
*
|
|
4556
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4557
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4558
|
-
*
|
|
4559
|
-
* @component Combobox
|
|
4560
|
-
* @description Provides a searchable dropdown with support for:
|
|
4561
|
-
* - Single and multiple selection modes
|
|
4562
|
-
* - Tree/hierarchical option structures
|
|
4563
|
-
* - Virtual scrolling for large datasets
|
|
4564
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4565
|
-
* - Header and footer slots
|
|
4566
|
-
* - Loading and empty states
|
|
4567
|
-
* - Keyboard navigation
|
|
4568
|
-
*/
|
|
4569
|
-
getTagSize: ComputedRef<"sm" | "md" | "xsm">;
|
|
4570
|
-
/**
|
|
4571
|
-
* Combobox Component
|
|
4572
|
-
*
|
|
4573
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4574
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4575
|
-
*
|
|
4576
|
-
* @component Combobox
|
|
4577
|
-
* @description Provides a searchable dropdown with support for:
|
|
4578
|
-
* - Single and multiple selection modes
|
|
4579
|
-
* - Tree/hierarchical option structures
|
|
4580
|
-
* - Virtual scrolling for large datasets
|
|
4581
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4582
|
-
* - Header and footer slots
|
|
4583
|
-
* - Loading and empty states
|
|
4584
|
-
* - Keyboard navigation
|
|
4585
|
-
*/
|
|
4586
4366
|
getIconSize: ComputedRef<"sm" | "2xsm" | "xsm">;
|
|
4587
|
-
/**
|
|
4588
|
-
* Combobox Component
|
|
4589
|
-
*
|
|
4590
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4591
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4592
|
-
*
|
|
4593
|
-
* @component Combobox
|
|
4594
|
-
* @description Provides a searchable dropdown with support for:
|
|
4595
|
-
* - Single and multiple selection modes
|
|
4596
|
-
* - Tree/hierarchical option structures
|
|
4597
|
-
* - Virtual scrolling for large datasets
|
|
4598
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4599
|
-
* - Header and footer slots
|
|
4600
|
-
* - Loading and empty states
|
|
4601
|
-
* - Keyboard navigation
|
|
4602
|
-
*/
|
|
4603
4367
|
comboboxInputBinding: ComputedRef<object>;
|
|
4604
|
-
/**
|
|
4605
|
-
* Combobox Component
|
|
4606
|
-
*
|
|
4607
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4608
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4609
|
-
*
|
|
4610
|
-
* @component Combobox
|
|
4611
|
-
* @description Provides a searchable dropdown with support for:
|
|
4612
|
-
* - Single and multiple selection modes
|
|
4613
|
-
* - Tree/hierarchical option structures
|
|
4614
|
-
* - Virtual scrolling for large datasets
|
|
4615
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4616
|
-
* - Header and footer slots
|
|
4617
|
-
* - Loading and empty states
|
|
4618
|
-
* - Keyboard navigation
|
|
4619
|
-
*/
|
|
4620
|
-
comboboxTriggerBinding: ComputedRef<object>;
|
|
4621
|
-
/**
|
|
4622
|
-
* Combobox Component
|
|
4623
|
-
*
|
|
4624
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4625
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4626
|
-
*
|
|
4627
|
-
* @component Combobox
|
|
4628
|
-
* @description Provides a searchable dropdown with support for:
|
|
4629
|
-
* - Single and multiple selection modes
|
|
4630
|
-
* - Tree/hierarchical option structures
|
|
4631
|
-
* - Virtual scrolling for large datasets
|
|
4632
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4633
|
-
* - Header and footer slots
|
|
4634
|
-
* - Loading and empty states
|
|
4635
|
-
* - Keyboard navigation
|
|
4636
|
-
*/
|
|
4637
4368
|
props: ComboboxProps;
|
|
4638
|
-
/**
|
|
4639
|
-
* Combobox Component
|
|
4640
|
-
*
|
|
4641
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4642
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4643
|
-
*
|
|
4644
|
-
* @component Combobox
|
|
4645
|
-
* @description Provides a searchable dropdown with support for:
|
|
4646
|
-
* - Single and multiple selection modes
|
|
4647
|
-
* - Tree/hierarchical option structures
|
|
4648
|
-
* - Virtual scrolling for large datasets
|
|
4649
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4650
|
-
* - Header and footer slots
|
|
4651
|
-
* - Loading and empty states
|
|
4652
|
-
* - Keyboard navigation
|
|
4653
|
-
*/
|
|
4654
4369
|
slots: ComboboxSlots;
|
|
4655
|
-
/**
|
|
4656
|
-
* Combobox Component
|
|
4657
|
-
*
|
|
4658
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4659
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4660
|
-
*
|
|
4661
|
-
* @component Combobox
|
|
4662
|
-
* @description Provides a searchable dropdown with support for:
|
|
4663
|
-
* - Single and multiple selection modes
|
|
4664
|
-
* - Tree/hierarchical option structures
|
|
4665
|
-
* - Virtual scrolling for large datasets
|
|
4666
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4667
|
-
* - Header and footer slots
|
|
4668
|
-
* - Loading and empty states
|
|
4669
|
-
* - Keyboard navigation
|
|
4670
|
-
*/
|
|
4671
4370
|
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);
|
|
4672
|
-
/**
|
|
4673
|
-
* Combobox Component
|
|
4674
|
-
*
|
|
4675
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4676
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4677
|
-
*
|
|
4678
|
-
* @component Combobox
|
|
4679
|
-
* @description Provides a searchable dropdown with support for:
|
|
4680
|
-
* - Single and multiple selection modes
|
|
4681
|
-
* - Tree/hierarchical option structures
|
|
4682
|
-
* - Virtual scrolling for large datasets
|
|
4683
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4684
|
-
* - Header and footer slots
|
|
4685
|
-
* - Loading and empty states
|
|
4686
|
-
* - Keyboard navigation
|
|
4687
|
-
*/
|
|
4688
4371
|
searchModel: Ref<string | null | undefined, string | null | undefined>;
|
|
4689
|
-
/**
|
|
4690
|
-
* Combobox Component
|
|
4691
|
-
*
|
|
4692
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4693
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4694
|
-
*
|
|
4695
|
-
* @component Combobox
|
|
4696
|
-
* @description Provides a searchable dropdown with support for:
|
|
4697
|
-
* - Single and multiple selection modes
|
|
4698
|
-
* - Tree/hierarchical option structures
|
|
4699
|
-
* - Virtual scrolling for large datasets
|
|
4700
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4701
|
-
* - Header and footer slots
|
|
4702
|
-
* - Loading and empty states
|
|
4703
|
-
* - Keyboard navigation
|
|
4704
|
-
*/
|
|
4705
4372
|
openModel: Ref<boolean | null | undefined, boolean | null | undefined>;
|
|
4706
|
-
/**
|
|
4707
|
-
* Combobox Component
|
|
4708
|
-
*
|
|
4709
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4710
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4711
|
-
*
|
|
4712
|
-
* @component Combobox
|
|
4713
|
-
* @description Provides a searchable dropdown with support for:
|
|
4714
|
-
* - Single and multiple selection modes
|
|
4715
|
-
* - Tree/hierarchical option structures
|
|
4716
|
-
* - Virtual scrolling for large datasets
|
|
4717
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4718
|
-
* - Header and footer slots
|
|
4719
|
-
* - Loading and empty states
|
|
4720
|
-
* - Keyboard navigation
|
|
4721
|
-
*/
|
|
4722
4373
|
model: Ref<string | string[] | null | undefined, string | string[] | null | undefined>;
|
|
4723
|
-
/**
|
|
4724
|
-
* Combobox Component
|
|
4725
|
-
*
|
|
4726
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4727
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4728
|
-
*
|
|
4729
|
-
* @component Combobox
|
|
4730
|
-
* @description Provides a searchable dropdown with support for:
|
|
4731
|
-
* - Single and multiple selection modes
|
|
4732
|
-
* - Tree/hierarchical option structures
|
|
4733
|
-
* - Virtual scrolling for large datasets
|
|
4734
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4735
|
-
* - Header and footer slots
|
|
4736
|
-
* - Loading and empty states
|
|
4737
|
-
* - Keyboard navigation
|
|
4738
|
-
*/
|
|
4739
4374
|
inputRef: Ref<any, any>;
|
|
4740
|
-
/**
|
|
4741
|
-
* Combobox Component
|
|
4742
|
-
*
|
|
4743
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4744
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4745
|
-
*
|
|
4746
|
-
* @component Combobox
|
|
4747
|
-
* @description Provides a searchable dropdown with support for:
|
|
4748
|
-
* - Single and multiple selection modes
|
|
4749
|
-
* - Tree/hierarchical option structures
|
|
4750
|
-
* - Virtual scrolling for large datasets
|
|
4751
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4752
|
-
* - Header and footer slots
|
|
4753
|
-
* - Loading and empty states
|
|
4754
|
-
* - Keyboard navigation
|
|
4755
|
-
*/
|
|
4756
4375
|
triggerRef: Ref<any, any>;
|
|
4757
|
-
/**
|
|
4758
|
-
* Combobox Component
|
|
4759
|
-
*
|
|
4760
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4761
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4762
|
-
*
|
|
4763
|
-
* @component Combobox
|
|
4764
|
-
* @description Provides a searchable dropdown with support for:
|
|
4765
|
-
* - Single and multiple selection modes
|
|
4766
|
-
* - Tree/hierarchical option structures
|
|
4767
|
-
* - Virtual scrolling for large datasets
|
|
4768
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4769
|
-
* - Header and footer slots
|
|
4770
|
-
* - Loading and empty states
|
|
4771
|
-
* - Keyboard navigation
|
|
4772
|
-
*/
|
|
4773
4376
|
valuePlaceholder: ComputedRef<boolean>;
|
|
4774
|
-
/**
|
|
4775
|
-
* Combobox Component
|
|
4776
|
-
*
|
|
4777
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4778
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4779
|
-
*
|
|
4780
|
-
* @component Combobox
|
|
4781
|
-
* @description Provides a searchable dropdown with support for:
|
|
4782
|
-
* - Single and multiple selection modes
|
|
4783
|
-
* - Tree/hierarchical option structures
|
|
4784
|
-
* - Virtual scrolling for large datasets
|
|
4785
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4786
|
-
* - Header and footer slots
|
|
4787
|
-
* - Loading and empty states
|
|
4788
|
-
* - Keyboard navigation
|
|
4789
|
-
*/
|
|
4790
4377
|
placeholder: ComputedRef<string | undefined>;
|
|
4791
|
-
/**
|
|
4792
|
-
* Combobox Component
|
|
4793
|
-
*
|
|
4794
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4795
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4796
|
-
*
|
|
4797
|
-
* @component Combobox
|
|
4798
|
-
* @description Provides a searchable dropdown with support for:
|
|
4799
|
-
* - Single and multiple selection modes
|
|
4800
|
-
* - Tree/hierarchical option structures
|
|
4801
|
-
* - Virtual scrolling for large datasets
|
|
4802
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4803
|
-
* - Header and footer slots
|
|
4804
|
-
* - Loading and empty states
|
|
4805
|
-
* - Keyboard navigation
|
|
4806
|
-
*/
|
|
4807
4378
|
selectOption: (option?: ComboboxFlattenOptionType | undefined, byTreeSelect?: boolean | undefined) => void;
|
|
4808
|
-
/**
|
|
4809
|
-
* Combobox Component
|
|
4810
|
-
*
|
|
4811
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4812
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4813
|
-
*
|
|
4814
|
-
* @component Combobox
|
|
4815
|
-
* @description Provides a searchable dropdown with support for:
|
|
4816
|
-
* - Single and multiple selection modes
|
|
4817
|
-
* - Tree/hierarchical option structures
|
|
4818
|
-
* - Virtual scrolling for large datasets
|
|
4819
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4820
|
-
* - Header and footer slots
|
|
4821
|
-
* - Loading and empty states
|
|
4822
|
-
* - Keyboard navigation
|
|
4823
|
-
*/
|
|
4824
4379
|
itemMap: Ref<CollectionMap, CollectionMap>;
|
|
4825
|
-
/**
|
|
4826
|
-
* Combobox Component
|
|
4827
|
-
*
|
|
4828
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4829
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4830
|
-
*
|
|
4831
|
-
* @component Combobox
|
|
4832
|
-
* @description Provides a searchable dropdown with support for:
|
|
4833
|
-
* - Single and multiple selection modes
|
|
4834
|
-
* - Tree/hierarchical option structures
|
|
4835
|
-
* - Virtual scrolling for large datasets
|
|
4836
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4837
|
-
* - Header and footer slots
|
|
4838
|
-
* - Loading and empty states
|
|
4839
|
-
* - Keyboard navigation
|
|
4840
|
-
*/
|
|
4841
4380
|
getItems: (includeDisabledItem?: boolean | undefined) => CollectionMapItem[];
|
|
4842
|
-
/**
|
|
4843
|
-
* Combobox Component
|
|
4844
|
-
*
|
|
4845
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4846
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4847
|
-
*
|
|
4848
|
-
* @component Combobox
|
|
4849
|
-
* @description Provides a searchable dropdown with support for:
|
|
4850
|
-
* - Single and multiple selection modes
|
|
4851
|
-
* - Tree/hierarchical option structures
|
|
4852
|
-
* - Virtual scrolling for large datasets
|
|
4853
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4854
|
-
* - Header and footer slots
|
|
4855
|
-
* - Loading and empty states
|
|
4856
|
-
* - Keyboard navigation
|
|
4857
|
-
*/
|
|
4858
4381
|
highlightedOptionKey: Ref<string | undefined, string | undefined>;
|
|
4859
|
-
/**
|
|
4860
|
-
* Combobox Component
|
|
4861
|
-
*
|
|
4862
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4863
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4864
|
-
*
|
|
4865
|
-
* @component Combobox
|
|
4866
|
-
* @description Provides a searchable dropdown with support for:
|
|
4867
|
-
* - Single and multiple selection modes
|
|
4868
|
-
* - Tree/hierarchical option structures
|
|
4869
|
-
* - Virtual scrolling for large datasets
|
|
4870
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4871
|
-
* - Header and footer slots
|
|
4872
|
-
* - Loading and empty states
|
|
4873
|
-
* - Keyboard navigation
|
|
4874
|
-
*/
|
|
4875
4382
|
comboboxInputFocused: Ref<boolean, boolean>;
|
|
4876
|
-
/**
|
|
4877
|
-
* Combobox Component
|
|
4878
|
-
*
|
|
4879
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4880
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4881
|
-
*
|
|
4882
|
-
* @component Combobox
|
|
4883
|
-
* @description Provides a searchable dropdown with support for:
|
|
4884
|
-
* - Single and multiple selection modes
|
|
4885
|
-
* - Tree/hierarchical option structures
|
|
4886
|
-
* - Virtual scrolling for large datasets
|
|
4887
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4888
|
-
* - Header and footer slots
|
|
4889
|
-
* - Loading and empty states
|
|
4890
|
-
* - Keyboard navigation
|
|
4891
|
-
*/
|
|
4892
4383
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
4893
|
-
/**
|
|
4894
|
-
* Combobox Component
|
|
4895
|
-
*
|
|
4896
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4897
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4898
|
-
*
|
|
4899
|
-
* @component Combobox
|
|
4900
|
-
* @description Provides a searchable dropdown with support for:
|
|
4901
|
-
* - Single and multiple selection modes
|
|
4902
|
-
* - Tree/hierarchical option structures
|
|
4903
|
-
* - Virtual scrolling for large datasets
|
|
4904
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4905
|
-
* - Header and footer slots
|
|
4906
|
-
* - Loading and empty states
|
|
4907
|
-
* - Keyboard navigation
|
|
4908
|
-
*/
|
|
4909
|
-
triggerPrefix: string;
|
|
4910
|
-
/**
|
|
4911
|
-
* Combobox Component
|
|
4912
|
-
*
|
|
4913
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4914
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4915
|
-
*
|
|
4916
|
-
* @component Combobox
|
|
4917
|
-
* @description Provides a searchable dropdown with support for:
|
|
4918
|
-
* - Single and multiple selection modes
|
|
4919
|
-
* - Tree/hierarchical option structures
|
|
4920
|
-
* - Virtual scrolling for large datasets
|
|
4921
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
4922
|
-
* - Header and footer slots
|
|
4923
|
-
* - Loading and empty states
|
|
4924
|
-
* - Keyboard navigation
|
|
4925
|
-
*/
|
|
4926
4384
|
triggerProps: ComputedRef<Record<string, any>>;
|
|
4385
|
+
isHeaderSearch: ComputedRef<boolean>;
|
|
4927
4386
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4928
4387
|
search: (value?: string | null | undefined) => any;
|
|
4929
4388
|
select: (value: string | undefined, selected: boolean, option?: ComboboxFlattenOptionType | undefined) => any;
|
|
4930
4389
|
"update:modelValue": (value: string | string[]) => any;
|
|
4931
|
-
openAutoFocus: (event: Event) => any;
|
|
4932
|
-
closeAutoFocus: (event: Event) => any;
|
|
4933
|
-
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
4934
|
-
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
4935
|
-
focusOutside: (event: FocusOutsideEvent) => any;
|
|
4936
|
-
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
4937
|
-
openChange: (value?: boolean | null | undefined) => any;
|
|
4938
|
-
"update:open": (value: boolean) => any;
|
|
4939
|
-
keydownEnter: (event: ComboboxKeydownEvent, search?: string | undefined, isEmpty?: boolean | undefined) => any;
|
|
4940
|
-
"update:expandedKeys": (value: string[]) => any;
|
|
4941
|
-
keydownEscape: (event: ComboboxKeydownEvent, search?: string | undefined, isEmpty?: boolean | undefined) => any;
|
|
4942
|
-
"update:search": (value?: string | null | undefined) => any;
|
|
4943
|
-
fetch: (getIsVisible: () => Promise<boolean>) => any;
|
|
4944
|
-
}, string, PublicProps, Readonly<ComboboxProps> & Readonly<{
|
|
4945
|
-
onSearch?: ((value?: string | null | undefined) => any) | undefined;
|
|
4946
|
-
onSelect?: ((value: string | undefined, selected: boolean, option?: ComboboxFlattenOptionType | undefined) => any) | undefined;
|
|
4947
|
-
"onUpdate:modelValue"?: ((value: string | string[]) => any) | undefined;
|
|
4948
|
-
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
4949
|
-
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
4950
|
-
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
4951
|
-
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
4952
|
-
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
4953
|
-
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
4954
|
-
onOpenChange?: ((value?: boolean | null | undefined) => any) | undefined;
|
|
4955
|
-
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
4956
|
-
onKeydownEnter?: ((event: ComboboxKeydownEvent, search?: string | undefined, isEmpty?: boolean | undefined) => any) | undefined;
|
|
4957
|
-
"onUpdate:expandedKeys"?: ((value: string[]) => any) | undefined;
|
|
4958
|
-
onKeydownEscape?: ((event: ComboboxKeydownEvent, search?: string | undefined, isEmpty?: boolean | undefined) => any) | undefined;
|
|
4959
|
-
"onUpdate:search"?: ((value?: string | null | undefined) => any) | undefined;
|
|
4960
|
-
onFetch?: ((getIsVisible: () => Promise<boolean>) => any) | undefined;
|
|
4961
|
-
}>, {
|
|
4962
|
-
disabled: boolean;
|
|
4963
|
-
multiple: boolean;
|
|
4964
|
-
bordered: boolean;
|
|
4965
|
-
open: boolean;
|
|
4966
|
-
defaultOpen: boolean;
|
|
4967
|
-
readonly: boolean;
|
|
4968
|
-
side: "bottom" | "left" | "right" | "top";
|
|
4969
|
-
sideOffset: number;
|
|
4970
|
-
align: "start" | "end" | "center";
|
|
4971
|
-
avoidCollisions: boolean;
|
|
4972
|
-
prioritizePosition: boolean;
|
|
4973
|
-
disableOutsidePointerEvents: boolean;
|
|
4974
|
-
zIndex: string | number;
|
|
4975
|
-
trailingIcon: string | boolean;
|
|
4976
|
-
checkbox: boolean;
|
|
4977
|
-
selectedItemIconAsTrailingIcon: boolean;
|
|
4978
|
-
indicatorIcon: string;
|
|
4979
|
-
loadingRowCount: number;
|
|
4980
|
-
clearOnChangeMultiple: boolean;
|
|
4981
|
-
samePopupWidth: boolean;
|
|
4982
|
-
popupHeight: string | number;
|
|
4983
|
-
resetSearchTermOnBlur: boolean;
|
|
4984
|
-
resetSearchTermOnSelect: boolean;
|
|
4985
|
-
noValueOnPlaceholder: boolean;
|
|
4986
|
-
|
|
4987
|
-
|
|
4988
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
4989
|
-
scrollContainerRef: HTMLDivElement;
|
|
4990
|
-
treeRef: ({
|
|
4991
|
-
/**
|
|
4992
|
-
* Combobox Component
|
|
4993
|
-
*
|
|
4994
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
4995
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
4996
|
-
*
|
|
4997
|
-
* @component Combobox
|
|
4998
|
-
* @description Provides a searchable dropdown with support for:
|
|
4999
|
-
* - Single and multiple selection modes
|
|
5000
|
-
* - Tree/hierarchical option structures
|
|
5001
|
-
* - Virtual scrolling for large datasets
|
|
5002
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5003
|
-
* - Header and footer slots
|
|
5004
|
-
* - Loading and empty states
|
|
5005
|
-
* - Keyboard navigation
|
|
5006
|
-
*/
|
|
5007
|
-
$: ComponentInternalInstance;
|
|
5008
|
-
/**
|
|
5009
|
-
* Combobox Component
|
|
5010
|
-
*
|
|
5011
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5012
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5013
|
-
*
|
|
5014
|
-
* @component Combobox
|
|
5015
|
-
* @description Provides a searchable dropdown with support for:
|
|
5016
|
-
* - Single and multiple selection modes
|
|
5017
|
-
* - Tree/hierarchical option structures
|
|
5018
|
-
* - Virtual scrolling for large datasets
|
|
5019
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5020
|
-
* - Header and footer slots
|
|
5021
|
-
* - Loading and empty states
|
|
5022
|
-
* - Keyboard navigation
|
|
5023
|
-
*/
|
|
5024
|
-
$data: {};
|
|
5025
|
-
/**
|
|
5026
|
-
* Combobox Component
|
|
5027
|
-
*
|
|
5028
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5029
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5030
|
-
*
|
|
5031
|
-
* @component Combobox
|
|
5032
|
-
* @description Provides a searchable dropdown with support for:
|
|
5033
|
-
* - Single and multiple selection modes
|
|
5034
|
-
* - Tree/hierarchical option structures
|
|
5035
|
-
* - Virtual scrolling for large datasets
|
|
5036
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5037
|
-
* - Header and footer slots
|
|
5038
|
-
* - Loading and empty states
|
|
5039
|
-
* - Keyboard navigation
|
|
5040
|
-
*/
|
|
5041
|
-
$props: {
|
|
5042
|
-
readonly emitVisibleRowsCount?: boolean | undefined;
|
|
5043
|
-
readonly emitReSelect?: boolean | undefined;
|
|
5044
|
-
readonly selectionBehavior?: "toggle" | "replace" | undefined;
|
|
5045
|
-
readonly class?: ClassValue;
|
|
5046
|
-
readonly size?: "sm" | "md" | "lg" | undefined;
|
|
5047
|
-
readonly gap?: TreeGap | undefined;
|
|
5048
|
-
readonly dir?: Direction | undefined;
|
|
5049
|
-
readonly data: (object | TreeNodeType)[];
|
|
5050
|
-
readonly flattenData?: boolean | undefined;
|
|
5051
|
-
readonly modelValue?: string[] | undefined;
|
|
5052
|
-
readonly checkedKeys?: string[] | undefined;
|
|
5053
|
-
readonly expandedKeys?: string[] | undefined;
|
|
5054
|
-
readonly multiple?: boolean | undefined;
|
|
5055
|
-
readonly checkable?: boolean | undefined;
|
|
5056
|
-
readonly selectable?: boolean | undefined;
|
|
5057
|
-
readonly defaultExpandAll?: boolean | undefined;
|
|
5058
|
-
readonly showLine?: boolean | undefined;
|
|
5059
|
-
readonly inlineNode?: boolean | undefined;
|
|
5060
|
-
readonly lazyLoad?: boolean | undefined;
|
|
5061
|
-
readonly getLoading?: OptionGetter<boolean | undefined> | undefined;
|
|
5062
|
-
readonly getNoRotateSwitcherIcon?: OptionGetter<boolean | undefined> | undefined;
|
|
5063
|
-
readonly getTitle?: OptionGetter<string | undefined> | undefined;
|
|
5064
|
-
readonly getLeaf?: OptionGetter<boolean | undefined> | undefined;
|
|
5065
|
-
readonly getDraggable?: OptionGetter<boolean | undefined> | undefined;
|
|
5066
|
-
readonly getKey?: OptionGetter<string> | undefined;
|
|
5067
|
-
readonly getSwitcherIcon?: OptionGetter<string | undefined> | undefined;
|
|
5068
|
-
readonly getDisabled?: OptionGetter<boolean | undefined> | undefined;
|
|
5069
|
-
readonly getChildren?: OptionGetter<object[] | undefined> | undefined;
|
|
5070
|
-
readonly getHidden?: OptionGetter<boolean | undefined> | undefined;
|
|
5071
|
-
readonly groupName?: string | ((node?: object | undefined) => string) | undefined;
|
|
5072
|
-
readonly sortableProps?: (Omit<SortableOptions, "onMove"> & {
|
|
5073
|
-
/**
|
|
5074
|
-
* Combobox Component
|
|
5075
|
-
*
|
|
5076
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5077
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5078
|
-
*
|
|
5079
|
-
* @component Combobox
|
|
5080
|
-
* @description Provides a searchable dropdown with support for:
|
|
5081
|
-
* - Single and multiple selection modes
|
|
5082
|
-
* - Tree/hierarchical option structures
|
|
5083
|
-
* - Virtual scrolling for large datasets
|
|
5084
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5085
|
-
* - Header and footer slots
|
|
5086
|
-
* - Loading and empty states
|
|
5087
|
-
* - Keyboard navigation
|
|
5088
|
-
*/
|
|
5089
|
-
onMove?: ((evt: TreeDragMoveEvent, originalEvent: Event) => boolean | void | 1 | -1) | undefined;
|
|
5090
|
-
}) | undefined;
|
|
5091
|
-
readonly focusable?: boolean | undefined;
|
|
5092
|
-
readonly checkStrictly?: boolean | undefined;
|
|
5093
|
-
readonly syncCheckboxAndSelect?: boolean | undefined;
|
|
5094
|
-
readonly virtual?: boolean | Virtualizer | undefined;
|
|
5095
|
-
readonly scrollAreaCls?: ClassValue;
|
|
5096
|
-
readonly scrollContainerCls?: ClassValue;
|
|
5097
|
-
readonly disabled?: boolean | undefined;
|
|
5098
|
-
readonly switcherIcon?: string | undefined;
|
|
5099
|
-
readonly noRotateSwitcherIcon?: boolean | undefined;
|
|
5100
|
-
readonly draggable?: boolean | undefined;
|
|
5101
|
-
readonly onSelect?: ((node: object | TreeNodeType, selected: boolean, selectedKeys: string[]) => any) | undefined;
|
|
5102
|
-
readonly onChange?: ((value: {
|
|
5103
|
-
/**
|
|
5104
|
-
* Combobox Component
|
|
5105
|
-
*
|
|
5106
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5107
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5108
|
-
*
|
|
5109
|
-
* @component Combobox
|
|
5110
|
-
* @description Provides a searchable dropdown with support for:
|
|
5111
|
-
* - Single and multiple selection modes
|
|
5112
|
-
* - Tree/hierarchical option structures
|
|
5113
|
-
* - Virtual scrolling for large datasets
|
|
5114
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5115
|
-
* - Header and footer slots
|
|
5116
|
-
* - Loading and empty states
|
|
5117
|
-
* - Keyboard navigation
|
|
5118
|
-
*/
|
|
5119
|
-
modelValue: string[];
|
|
5120
|
-
/**
|
|
5121
|
-
* Combobox Component
|
|
5122
|
-
*
|
|
5123
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5124
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5125
|
-
*
|
|
5126
|
-
* @component Combobox
|
|
5127
|
-
* @description Provides a searchable dropdown with support for:
|
|
5128
|
-
* - Single and multiple selection modes
|
|
5129
|
-
* - Tree/hierarchical option structures
|
|
5130
|
-
* - Virtual scrolling for large datasets
|
|
5131
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5132
|
-
* - Header and footer slots
|
|
5133
|
-
* - Loading and empty states
|
|
5134
|
-
* - Keyboard navigation
|
|
5135
|
-
*/
|
|
5136
|
-
checkedKeys: string[];
|
|
5137
|
-
}) => any) | undefined;
|
|
5138
|
-
readonly "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
5139
|
-
readonly onExpand?: ((node: object | TreeNodeType, expanded: boolean) => any) | undefined;
|
|
5140
|
-
readonly onCalculateVisibleRowsCount?: ((count: number) => any) | undefined;
|
|
5141
|
-
readonly "onUpdate:expandedKeys"?: ((value: string[]) => any) | undefined;
|
|
5142
|
-
readonly "onUpdate:checkedKeys"?: ((value: string[]) => any) | undefined;
|
|
5143
|
-
readonly onCheck?: ((node: object | TreeNodeType, checked: boolean, checkedKeys: string[]) => any) | undefined;
|
|
5144
|
-
readonly onDragStart?: ((event: TreeDragEvent) => any) | undefined;
|
|
5145
|
-
readonly onDragEnd?: ((event: TreeDragEvent) => any) | undefined;
|
|
5146
|
-
readonly onChoose?: ((event: SortableEvent) => any) | undefined;
|
|
5147
|
-
readonly onUnchoose?: ((event: SortableEvent) => any) | undefined;
|
|
5148
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
5149
|
-
/**
|
|
5150
|
-
* Combobox Component
|
|
5151
|
-
*
|
|
5152
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5153
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5154
|
-
*
|
|
5155
|
-
* @component Combobox
|
|
5156
|
-
* @description Provides a searchable dropdown with support for:
|
|
5157
|
-
* - Single and multiple selection modes
|
|
5158
|
-
* - Tree/hierarchical option structures
|
|
5159
|
-
* - Virtual scrolling for large datasets
|
|
5160
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5161
|
-
* - Header and footer slots
|
|
5162
|
-
* - Loading and empty states
|
|
5163
|
-
* - Keyboard navigation
|
|
5164
|
-
*/
|
|
5165
|
-
$attrs: {
|
|
5166
|
-
[x: string]: unknown;
|
|
5167
|
-
};
|
|
5168
|
-
/**
|
|
5169
|
-
* Combobox Component
|
|
5170
|
-
*
|
|
5171
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5172
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5173
|
-
*
|
|
5174
|
-
* @component Combobox
|
|
5175
|
-
* @description Provides a searchable dropdown with support for:
|
|
5176
|
-
* - Single and multiple selection modes
|
|
5177
|
-
* - Tree/hierarchical option structures
|
|
5178
|
-
* - Virtual scrolling for large datasets
|
|
5179
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5180
|
-
* - Header and footer slots
|
|
5181
|
-
* - Loading and empty states
|
|
5182
|
-
* - Keyboard navigation
|
|
5183
|
-
*/
|
|
5184
|
-
$refs: {
|
|
5185
|
-
[x: string]: unknown;
|
|
5186
|
-
};
|
|
5187
|
-
/**
|
|
5188
|
-
* Combobox Component
|
|
5189
|
-
*
|
|
5190
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5191
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5192
|
-
*
|
|
5193
|
-
* @component Combobox
|
|
5194
|
-
* @description Provides a searchable dropdown with support for:
|
|
5195
|
-
* - Single and multiple selection modes
|
|
5196
|
-
* - Tree/hierarchical option structures
|
|
5197
|
-
* - Virtual scrolling for large datasets
|
|
5198
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5199
|
-
* - Header and footer slots
|
|
5200
|
-
* - Loading and empty states
|
|
5201
|
-
* - Keyboard navigation
|
|
5202
|
-
*/
|
|
5203
|
-
$slots: Readonly<{
|
|
5204
|
-
[name: string]: Slot<any> | undefined;
|
|
5205
|
-
}>;
|
|
5206
|
-
/**
|
|
5207
|
-
* Combobox Component
|
|
5208
|
-
*
|
|
5209
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5210
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5211
|
-
*
|
|
5212
|
-
* @component Combobox
|
|
5213
|
-
* @description Provides a searchable dropdown with support for:
|
|
5214
|
-
* - Single and multiple selection modes
|
|
5215
|
-
* - Tree/hierarchical option structures
|
|
5216
|
-
* - Virtual scrolling for large datasets
|
|
5217
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5218
|
-
* - Header and footer slots
|
|
5219
|
-
* - Loading and empty states
|
|
5220
|
-
* - Keyboard navigation
|
|
5221
|
-
*/
|
|
5222
|
-
$root: ComponentPublicInstance< {}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
5223
|
-
/**
|
|
5224
|
-
* Combobox Component
|
|
5225
|
-
*
|
|
5226
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5227
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5228
|
-
*
|
|
5229
|
-
* @component Combobox
|
|
5230
|
-
* @description Provides a searchable dropdown with support for:
|
|
5231
|
-
* - Single and multiple selection modes
|
|
5232
|
-
* - Tree/hierarchical option structures
|
|
5233
|
-
* - Virtual scrolling for large datasets
|
|
5234
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5235
|
-
* - Header and footer slots
|
|
5236
|
-
* - Loading and empty states
|
|
5237
|
-
* - Keyboard navigation
|
|
5238
|
-
*/
|
|
5239
|
-
$parent: ComponentPublicInstance< {}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
5240
|
-
/**
|
|
5241
|
-
* Combobox Component
|
|
5242
|
-
*
|
|
5243
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5244
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5245
|
-
*
|
|
5246
|
-
* @component Combobox
|
|
5247
|
-
* @description Provides a searchable dropdown with support for:
|
|
5248
|
-
* - Single and multiple selection modes
|
|
5249
|
-
* - Tree/hierarchical option structures
|
|
5250
|
-
* - Virtual scrolling for large datasets
|
|
5251
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5252
|
-
* - Header and footer slots
|
|
5253
|
-
* - Loading and empty states
|
|
5254
|
-
* - Keyboard navigation
|
|
5255
|
-
*/
|
|
5256
|
-
$host: Element | null;
|
|
5257
|
-
/**
|
|
5258
|
-
* Combobox Component
|
|
5259
|
-
*
|
|
5260
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5261
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5262
|
-
*
|
|
5263
|
-
* @component Combobox
|
|
5264
|
-
* @description Provides a searchable dropdown with support for:
|
|
5265
|
-
* - Single and multiple selection modes
|
|
5266
|
-
* - Tree/hierarchical option structures
|
|
5267
|
-
* - Virtual scrolling for large datasets
|
|
5268
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5269
|
-
* - Header and footer slots
|
|
5270
|
-
* - Loading and empty states
|
|
5271
|
-
* - Keyboard navigation
|
|
5272
|
-
*/
|
|
5273
|
-
$emit: ((event: "select", node: object | TreeNodeType, selected: boolean, selectedKeys: string[]) => void) & ((event: "change", value: {
|
|
5274
|
-
/**
|
|
5275
|
-
* Combobox Component
|
|
5276
|
-
*
|
|
5277
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5278
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5279
|
-
*
|
|
5280
|
-
* @component Combobox
|
|
5281
|
-
* @description Provides a searchable dropdown with support for:
|
|
5282
|
-
* - Single and multiple selection modes
|
|
5283
|
-
* - Tree/hierarchical option structures
|
|
5284
|
-
* - Virtual scrolling for large datasets
|
|
5285
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5286
|
-
* - Header and footer slots
|
|
5287
|
-
* - Loading and empty states
|
|
5288
|
-
* - Keyboard navigation
|
|
5289
|
-
*/
|
|
5290
|
-
modelValue: string[];
|
|
5291
|
-
/**
|
|
5292
|
-
* Combobox Component
|
|
5293
|
-
*
|
|
5294
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5295
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5296
|
-
*
|
|
5297
|
-
* @component Combobox
|
|
5298
|
-
* @description Provides a searchable dropdown with support for:
|
|
5299
|
-
* - Single and multiple selection modes
|
|
5300
|
-
* - Tree/hierarchical option structures
|
|
5301
|
-
* - Virtual scrolling for large datasets
|
|
5302
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5303
|
-
* - Header and footer slots
|
|
5304
|
-
* - Loading and empty states
|
|
5305
|
-
* - Keyboard navigation
|
|
5306
|
-
*/
|
|
5307
|
-
checkedKeys: string[];
|
|
5308
|
-
}) => void) & ((event: "update:modelValue", value: string[]) => void) & ((event: "expand", node: object | TreeNodeType, expanded: boolean) => void) & ((event: "calculateVisibleRowsCount", count: number) => void) & ((event: "update:expandedKeys", value: string[]) => void) & ((event: "update:checkedKeys", value: string[]) => void) & ((event: "check", node: object | TreeNodeType, checked: boolean, checkedKeys: string[]) => void) & ((event: "dragStart", event: TreeDragEvent) => void) & ((event: "dragEnd", event: TreeDragEvent) => void) & ((event: "choose", event: SortableEvent) => void) & ((event: "unchoose", event: SortableEvent) => void);
|
|
5309
|
-
/**
|
|
5310
|
-
* Combobox Component
|
|
5311
|
-
*
|
|
5312
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5313
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5314
|
-
*
|
|
5315
|
-
* @component Combobox
|
|
5316
|
-
* @description Provides a searchable dropdown with support for:
|
|
5317
|
-
* - Single and multiple selection modes
|
|
5318
|
-
* - Tree/hierarchical option structures
|
|
5319
|
-
* - Virtual scrolling for large datasets
|
|
5320
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5321
|
-
* - Header and footer slots
|
|
5322
|
-
* - Loading and empty states
|
|
5323
|
-
* - Keyboard navigation
|
|
5324
|
-
*/
|
|
5325
|
-
$el: any;
|
|
5326
|
-
/**
|
|
5327
|
-
* Combobox Component
|
|
5328
|
-
*
|
|
5329
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5330
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5331
|
-
*
|
|
5332
|
-
* @component Combobox
|
|
5333
|
-
* @description Provides a searchable dropdown with support for:
|
|
5334
|
-
* - Single and multiple selection modes
|
|
5335
|
-
* - Tree/hierarchical option structures
|
|
5336
|
-
* - Virtual scrolling for large datasets
|
|
5337
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5338
|
-
* - Header and footer slots
|
|
5339
|
-
* - Loading and empty states
|
|
5340
|
-
* - Keyboard navigation
|
|
5341
|
-
*/
|
|
5342
|
-
$options: ComponentOptionsBase<Readonly<TreeProps> & Readonly<{
|
|
5343
|
-
onSelect?: ((node: object | TreeNodeType, selected: boolean, selectedKeys: string[]) => any) | undefined;
|
|
5344
|
-
onChange?: ((value: {
|
|
5345
|
-
/**
|
|
5346
|
-
* Combobox Component
|
|
5347
|
-
*
|
|
5348
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5349
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5350
|
-
*
|
|
5351
|
-
* @component Combobox
|
|
5352
|
-
* @description Provides a searchable dropdown with support for:
|
|
5353
|
-
* - Single and multiple selection modes
|
|
5354
|
-
* - Tree/hierarchical option structures
|
|
5355
|
-
* - Virtual scrolling for large datasets
|
|
5356
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5357
|
-
* - Header and footer slots
|
|
5358
|
-
* - Loading and empty states
|
|
5359
|
-
* - Keyboard navigation
|
|
5360
|
-
*/
|
|
5361
|
-
modelValue: string[];
|
|
5362
|
-
/**
|
|
5363
|
-
* Combobox Component
|
|
5364
|
-
*
|
|
5365
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5366
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5367
|
-
*
|
|
5368
|
-
* @component Combobox
|
|
5369
|
-
* @description Provides a searchable dropdown with support for:
|
|
5370
|
-
* - Single and multiple selection modes
|
|
5371
|
-
* - Tree/hierarchical option structures
|
|
5372
|
-
* - Virtual scrolling for large datasets
|
|
5373
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5374
|
-
* - Header and footer slots
|
|
5375
|
-
* - Loading and empty states
|
|
5376
|
-
* - Keyboard navigation
|
|
5377
|
-
*/
|
|
5378
|
-
checkedKeys: string[];
|
|
5379
|
-
}) => any) | undefined;
|
|
5380
|
-
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
5381
|
-
onExpand?: ((node: object | TreeNodeType, expanded: boolean) => any) | undefined;
|
|
5382
|
-
onCalculateVisibleRowsCount?: ((count: number) => any) | undefined;
|
|
5383
|
-
"onUpdate:expandedKeys"?: ((value: string[]) => any) | undefined;
|
|
5384
|
-
"onUpdate:checkedKeys"?: ((value: string[]) => any) | undefined;
|
|
5385
|
-
onCheck?: ((node: object | TreeNodeType, checked: boolean, checkedKeys: string[]) => any) | undefined;
|
|
5386
|
-
onDragStart?: ((event: TreeDragEvent) => any) | undefined;
|
|
5387
|
-
onDragEnd?: ((event: TreeDragEvent) => any) | undefined;
|
|
5388
|
-
onChoose?: ((event: SortableEvent) => any) | undefined;
|
|
5389
|
-
onUnchoose?: ((event: SortableEvent) => any) | undefined;
|
|
5390
|
-
}>, {
|
|
5391
|
-
/**
|
|
5392
|
-
* Combobox Component
|
|
5393
|
-
*
|
|
5394
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5395
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5396
|
-
*
|
|
5397
|
-
* @component Combobox
|
|
5398
|
-
* @description Provides a searchable dropdown with support for:
|
|
5399
|
-
* - Single and multiple selection modes
|
|
5400
|
-
* - Tree/hierarchical option structures
|
|
5401
|
-
* - Virtual scrolling for large datasets
|
|
5402
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5403
|
-
* - Header and footer slots
|
|
5404
|
-
* - Loading and empty states
|
|
5405
|
-
* - Keyboard navigation
|
|
5406
|
-
*/
|
|
5407
|
-
disabled: ComputedRef<boolean | undefined>;
|
|
5408
|
-
/**
|
|
5409
|
-
* Combobox Component
|
|
5410
|
-
*
|
|
5411
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5412
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5413
|
-
*
|
|
5414
|
-
* @component Combobox
|
|
5415
|
-
* @description Provides a searchable dropdown with support for:
|
|
5416
|
-
* - Single and multiple selection modes
|
|
5417
|
-
* - Tree/hierarchical option structures
|
|
5418
|
-
* - Virtual scrolling for large datasets
|
|
5419
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5420
|
-
* - Header and footer slots
|
|
5421
|
-
* - Loading and empty states
|
|
5422
|
-
* - Keyboard navigation
|
|
5423
|
-
*/
|
|
5424
|
-
props: TreeProps;
|
|
5425
|
-
/**
|
|
5426
|
-
* Combobox Component
|
|
5427
|
-
*
|
|
5428
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5429
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5430
|
-
*
|
|
5431
|
-
* @component Combobox
|
|
5432
|
-
* @description Provides a searchable dropdown with support for:
|
|
5433
|
-
* - Single and multiple selection modes
|
|
5434
|
-
* - Tree/hierarchical option structures
|
|
5435
|
-
* - Virtual scrolling for large datasets
|
|
5436
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5437
|
-
* - Header and footer slots
|
|
5438
|
-
* - Loading and empty states
|
|
5439
|
-
* - Keyboard navigation
|
|
5440
|
-
*/
|
|
5441
|
-
dir: ComputedRef<Direction | undefined>;
|
|
5442
|
-
/**
|
|
5443
|
-
* Combobox Component
|
|
5444
|
-
*
|
|
5445
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5446
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5447
|
-
*
|
|
5448
|
-
* @component Combobox
|
|
5449
|
-
* @description Provides a searchable dropdown with support for:
|
|
5450
|
-
* - Single and multiple selection modes
|
|
5451
|
-
* - Tree/hierarchical option structures
|
|
5452
|
-
* - Virtual scrolling for large datasets
|
|
5453
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5454
|
-
* - Header and footer slots
|
|
5455
|
-
* - Loading and empty states
|
|
5456
|
-
* - Keyboard navigation
|
|
5457
|
-
*/
|
|
5458
|
-
expandedKeys: Ref<string[] | undefined, string[] | undefined>;
|
|
5459
|
-
/**
|
|
5460
|
-
* Combobox Component
|
|
5461
|
-
*
|
|
5462
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5463
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5464
|
-
*
|
|
5465
|
-
* @component Combobox
|
|
5466
|
-
* @description Provides a searchable dropdown with support for:
|
|
5467
|
-
* - Single and multiple selection modes
|
|
5468
|
-
* - Tree/hierarchical option structures
|
|
5469
|
-
* - Virtual scrolling for large datasets
|
|
5470
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5471
|
-
* - Header and footer slots
|
|
5472
|
-
* - Loading and empty states
|
|
5473
|
-
* - Keyboard navigation
|
|
5474
|
-
*/
|
|
5475
|
-
model: WritableComputedRef<string[], string[]>;
|
|
5476
|
-
/**
|
|
5477
|
-
* Combobox Component
|
|
5478
|
-
*
|
|
5479
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5480
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5481
|
-
*
|
|
5482
|
-
* @component Combobox
|
|
5483
|
-
* @description Provides a searchable dropdown with support for:
|
|
5484
|
-
* - Single and multiple selection modes
|
|
5485
|
-
* - Tree/hierarchical option structures
|
|
5486
|
-
* - Virtual scrolling for large datasets
|
|
5487
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5488
|
-
* - Header and footer slots
|
|
5489
|
-
* - Loading and empty states
|
|
5490
|
-
* - Keyboard navigation
|
|
5491
|
-
*/
|
|
5492
|
-
checked: Ref<string[], string[]>;
|
|
5493
|
-
/**
|
|
5494
|
-
* Combobox Component
|
|
5495
|
-
*
|
|
5496
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5497
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5498
|
-
*
|
|
5499
|
-
* @component Combobox
|
|
5500
|
-
* @description Provides a searchable dropdown with support for:
|
|
5501
|
-
* - Single and multiple selection modes
|
|
5502
|
-
* - Tree/hierarchical option structures
|
|
5503
|
-
* - Virtual scrolling for large datasets
|
|
5504
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5505
|
-
* - Header and footer slots
|
|
5506
|
-
* - Loading and empty states
|
|
5507
|
-
* - Keyboard navigation
|
|
5508
|
-
*/
|
|
5509
|
-
dragging: Ref<boolean, boolean>;
|
|
5510
|
-
/**
|
|
5511
|
-
* Combobox Component
|
|
5512
|
-
*
|
|
5513
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5514
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5515
|
-
*
|
|
5516
|
-
* @component Combobox
|
|
5517
|
-
* @description Provides a searchable dropdown with support for:
|
|
5518
|
-
* - Single and multiple selection modes
|
|
5519
|
-
* - Tree/hierarchical option structures
|
|
5520
|
-
* - Virtual scrolling for large datasets
|
|
5521
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5522
|
-
* - Header and footer slots
|
|
5523
|
-
* - Loading and empty states
|
|
5524
|
-
* - Keyboard navigation
|
|
5525
|
-
*/
|
|
5526
|
-
scrollContainerRef: Ref<any, any>;
|
|
5527
|
-
/**
|
|
5528
|
-
* Combobox Component
|
|
5529
|
-
*
|
|
5530
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5531
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5532
|
-
*
|
|
5533
|
-
* @component Combobox
|
|
5534
|
-
* @description Provides a searchable dropdown with support for:
|
|
5535
|
-
* - Single and multiple selection modes
|
|
5536
|
-
* - Tree/hierarchical option structures
|
|
5537
|
-
* - Virtual scrolling for large datasets
|
|
5538
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5539
|
-
* - Header and footer slots
|
|
5540
|
-
* - Loading and empty states
|
|
5541
|
-
* - Keyboard navigation
|
|
5542
|
-
*/
|
|
5543
|
-
onExpandKey: (node: TreeItem) => void;
|
|
5544
|
-
/**
|
|
5545
|
-
* Combobox Component
|
|
5546
|
-
*
|
|
5547
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5548
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5549
|
-
*
|
|
5550
|
-
* @component Combobox
|
|
5551
|
-
* @description Provides a searchable dropdown with support for:
|
|
5552
|
-
* - Single and multiple selection modes
|
|
5553
|
-
* - Tree/hierarchical option structures
|
|
5554
|
-
* - Virtual scrolling for large datasets
|
|
5555
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5556
|
-
* - Header and footer slots
|
|
5557
|
-
* - Loading and empty states
|
|
5558
|
-
* - Keyboard navigation
|
|
5559
|
-
*/
|
|
5560
|
-
getLevel: (node: TreeItem) => number;
|
|
5561
|
-
/**
|
|
5562
|
-
* Combobox Component
|
|
5563
|
-
*
|
|
5564
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5565
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5566
|
-
*
|
|
5567
|
-
* @component Combobox
|
|
5568
|
-
* @description Provides a searchable dropdown with support for:
|
|
5569
|
-
* - Single and multiple selection modes
|
|
5570
|
-
* - Tree/hierarchical option structures
|
|
5571
|
-
* - Virtual scrolling for large datasets
|
|
5572
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5573
|
-
* - Header and footer slots
|
|
5574
|
-
* - Loading and empty states
|
|
5575
|
-
* - Keyboard navigation
|
|
5576
|
-
*/
|
|
5577
|
-
getNodeField: <T>(node: object, field: keyof TreeNodeType) => T;
|
|
5578
|
-
/**
|
|
5579
|
-
* Combobox Component
|
|
5580
|
-
*
|
|
5581
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5582
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5583
|
-
*
|
|
5584
|
-
* @component Combobox
|
|
5585
|
-
* @description Provides a searchable dropdown with support for:
|
|
5586
|
-
* - Single and multiple selection modes
|
|
5587
|
-
* - Tree/hierarchical option structures
|
|
5588
|
-
* - Virtual scrolling for large datasets
|
|
5589
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5590
|
-
* - Header and footer slots
|
|
5591
|
-
* - Loading and empty states
|
|
5592
|
-
* - Keyboard navigation
|
|
5593
|
-
*/
|
|
5594
|
-
onSelect: (node: TreeItem, value: boolean) => void;
|
|
5595
|
-
/**
|
|
5596
|
-
* Combobox Component
|
|
5597
|
-
*
|
|
5598
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5599
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5600
|
-
*
|
|
5601
|
-
* @component Combobox
|
|
5602
|
-
* @description Provides a searchable dropdown with support for:
|
|
5603
|
-
* - Single and multiple selection modes
|
|
5604
|
-
* - Tree/hierarchical option structures
|
|
5605
|
-
* - Virtual scrolling for large datasets
|
|
5606
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5607
|
-
* - Header and footer slots
|
|
5608
|
-
* - Loading and empty states
|
|
5609
|
-
* - Keyboard navigation
|
|
5610
|
-
*/
|
|
5611
|
-
onCheck: (node: TreeItem, value: boolean) => void;
|
|
5612
|
-
/**
|
|
5613
|
-
* Combobox Component
|
|
5614
|
-
*
|
|
5615
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5616
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5617
|
-
*
|
|
5618
|
-
* @component Combobox
|
|
5619
|
-
* @description Provides a searchable dropdown with support for:
|
|
5620
|
-
* - Single and multiple selection modes
|
|
5621
|
-
* - Tree/hierarchical option structures
|
|
5622
|
-
* - Virtual scrolling for large datasets
|
|
5623
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5624
|
-
* - Header and footer slots
|
|
5625
|
-
* - Loading and empty states
|
|
5626
|
-
* - Keyboard navigation
|
|
5627
|
-
*/
|
|
5628
|
-
getNodeChildren: (node: TreeItem, direct?: boolean | undefined, filterDisabled?: boolean | undefined) => TreeItem[];
|
|
5629
|
-
/**
|
|
5630
|
-
* Combobox Component
|
|
5631
|
-
*
|
|
5632
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5633
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5634
|
-
*
|
|
5635
|
-
* @component Combobox
|
|
5636
|
-
* @description Provides a searchable dropdown with support for:
|
|
5637
|
-
* - Single and multiple selection modes
|
|
5638
|
-
* - Tree/hierarchical option structures
|
|
5639
|
-
* - Virtual scrolling for large datasets
|
|
5640
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5641
|
-
* - Header and footer slots
|
|
5642
|
-
* - Loading and empty states
|
|
5643
|
-
* - Keyboard navigation
|
|
5644
|
-
*/
|
|
5645
|
-
indentSize: ComputedRef<"sm" | "2xsm" | "xsm">;
|
|
5646
|
-
/**
|
|
5647
|
-
* Combobox Component
|
|
5648
|
-
*
|
|
5649
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5650
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5651
|
-
*
|
|
5652
|
-
* @component Combobox
|
|
5653
|
-
* @description Provides a searchable dropdown with support for:
|
|
5654
|
-
* - Single and multiple selection modes
|
|
5655
|
-
* - Tree/hierarchical option structures
|
|
5656
|
-
* - Virtual scrolling for large datasets
|
|
5657
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5658
|
-
* - Header and footer slots
|
|
5659
|
-
* - Loading and empty states
|
|
5660
|
-
* - Keyboard navigation
|
|
5661
|
-
*/
|
|
5662
|
-
iconSize: ComputedRef<"2xsm" | "xsm">;
|
|
5663
|
-
/**
|
|
5664
|
-
* Combobox Component
|
|
5665
|
-
*
|
|
5666
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5667
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5668
|
-
*
|
|
5669
|
-
* @component Combobox
|
|
5670
|
-
* @description Provides a searchable dropdown with support for:
|
|
5671
|
-
* - Single and multiple selection modes
|
|
5672
|
-
* - Tree/hierarchical option structures
|
|
5673
|
-
* - Virtual scrolling for large datasets
|
|
5674
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5675
|
-
* - Header and footer slots
|
|
5676
|
-
* - Loading and empty states
|
|
5677
|
-
* - Keyboard navigation
|
|
5678
|
-
*/
|
|
5679
|
-
getIsSelected: (node: TreeItem) => boolean;
|
|
5680
|
-
/**
|
|
5681
|
-
* Combobox Component
|
|
5682
|
-
*
|
|
5683
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5684
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5685
|
-
*
|
|
5686
|
-
* @component Combobox
|
|
5687
|
-
* @description Provides a searchable dropdown with support for:
|
|
5688
|
-
* - Single and multiple selection modes
|
|
5689
|
-
* - Tree/hierarchical option structures
|
|
5690
|
-
* - Virtual scrolling for large datasets
|
|
5691
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5692
|
-
* - Header and footer slots
|
|
5693
|
-
* - Loading and empty states
|
|
5694
|
-
* - Keyboard navigation
|
|
5695
|
-
*/
|
|
5696
|
-
getIsChecked: (node: TreeItem) => boolean | "indeterminate";
|
|
5697
|
-
/**
|
|
5698
|
-
* Combobox Component
|
|
5699
|
-
*
|
|
5700
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5701
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5702
|
-
*
|
|
5703
|
-
* @component Combobox
|
|
5704
|
-
* @description Provides a searchable dropdown with support for:
|
|
5705
|
-
* - Single and multiple selection modes
|
|
5706
|
-
* - Tree/hierarchical option structures
|
|
5707
|
-
* - Virtual scrolling for large datasets
|
|
5708
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5709
|
-
* - Header and footer slots
|
|
5710
|
-
* - Loading and empty states
|
|
5711
|
-
* - Keyboard navigation
|
|
5712
|
-
*/
|
|
5713
|
-
prefixes: {
|
|
5714
|
-
/**
|
|
5715
|
-
* Combobox Component
|
|
5716
|
-
*
|
|
5717
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5718
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5719
|
-
*
|
|
5720
|
-
* @component Combobox
|
|
5721
|
-
* @description Provides a searchable dropdown with support for:
|
|
5722
|
-
* - Single and multiple selection modes
|
|
5723
|
-
* - Tree/hierarchical option structures
|
|
5724
|
-
* - Virtual scrolling for large datasets
|
|
5725
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5726
|
-
* - Header and footer slots
|
|
5727
|
-
* - Loading and empty states
|
|
5728
|
-
* - Keyboard navigation
|
|
5729
|
-
*/
|
|
5730
|
-
node: string;
|
|
5731
|
-
/**
|
|
5732
|
-
* Combobox Component
|
|
5733
|
-
*
|
|
5734
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5735
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5736
|
-
*
|
|
5737
|
-
* @component Combobox
|
|
5738
|
-
* @description Provides a searchable dropdown with support for:
|
|
5739
|
-
* - Single and multiple selection modes
|
|
5740
|
-
* - Tree/hierarchical option structures
|
|
5741
|
-
* - Virtual scrolling for large datasets
|
|
5742
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5743
|
-
* - Header and footer slots
|
|
5744
|
-
* - Loading and empty states
|
|
5745
|
-
* - Keyboard navigation
|
|
5746
|
-
*/
|
|
5747
|
-
group: string;
|
|
5748
|
-
/**
|
|
5749
|
-
* Combobox Component
|
|
5750
|
-
*
|
|
5751
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5752
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5753
|
-
*
|
|
5754
|
-
* @component Combobox
|
|
5755
|
-
* @description Provides a searchable dropdown with support for:
|
|
5756
|
-
* - Single and multiple selection modes
|
|
5757
|
-
* - Tree/hierarchical option structures
|
|
5758
|
-
* - Virtual scrolling for large datasets
|
|
5759
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5760
|
-
* - Header and footer slots
|
|
5761
|
-
* - Loading and empty states
|
|
5762
|
-
* - Keyboard navigation
|
|
5763
|
-
*/
|
|
5764
|
-
draggable: string;
|
|
5765
|
-
/**
|
|
5766
|
-
* Combobox Component
|
|
5767
|
-
*
|
|
5768
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5769
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5770
|
-
*
|
|
5771
|
-
* @component Combobox
|
|
5772
|
-
* @description Provides a searchable dropdown with support for:
|
|
5773
|
-
* - Single and multiple selection modes
|
|
5774
|
-
* - Tree/hierarchical option structures
|
|
5775
|
-
* - Virtual scrolling for large datasets
|
|
5776
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5777
|
-
* - Header and footer slots
|
|
5778
|
-
* - Loading and empty states
|
|
5779
|
-
* - Keyboard navigation
|
|
5780
|
-
*/
|
|
5781
|
-
draggableIcon: string;
|
|
5782
|
-
/**
|
|
5783
|
-
* Combobox Component
|
|
5784
|
-
*
|
|
5785
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5786
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5787
|
-
*
|
|
5788
|
-
* @component Combobox
|
|
5789
|
-
* @description Provides a searchable dropdown with support for:
|
|
5790
|
-
* - Single and multiple selection modes
|
|
5791
|
-
* - Tree/hierarchical option structures
|
|
5792
|
-
* - Virtual scrolling for large datasets
|
|
5793
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5794
|
-
* - Header and footer slots
|
|
5795
|
-
* - Loading and empty states
|
|
5796
|
-
* - Keyboard navigation
|
|
5797
|
-
*/
|
|
5798
|
-
groupList: string;
|
|
5799
|
-
};
|
|
5800
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
5801
|
-
select: (node: object | TreeNodeType, selected: boolean, selectedKeys: string[]) => any;
|
|
5802
|
-
change: (value: {
|
|
5803
|
-
/**
|
|
5804
|
-
* Combobox Component
|
|
5805
|
-
*
|
|
5806
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5807
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5808
|
-
*
|
|
5809
|
-
* @component Combobox
|
|
5810
|
-
* @description Provides a searchable dropdown with support for:
|
|
5811
|
-
* - Single and multiple selection modes
|
|
5812
|
-
* - Tree/hierarchical option structures
|
|
5813
|
-
* - Virtual scrolling for large datasets
|
|
5814
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5815
|
-
* - Header and footer slots
|
|
5816
|
-
* - Loading and empty states
|
|
5817
|
-
* - Keyboard navigation
|
|
5818
|
-
*/
|
|
5819
|
-
modelValue: string[];
|
|
5820
|
-
/**
|
|
5821
|
-
* Combobox Component
|
|
5822
|
-
*
|
|
5823
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5824
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5825
|
-
*
|
|
5826
|
-
* @component Combobox
|
|
5827
|
-
* @description Provides a searchable dropdown with support for:
|
|
5828
|
-
* - Single and multiple selection modes
|
|
5829
|
-
* - Tree/hierarchical option structures
|
|
5830
|
-
* - Virtual scrolling for large datasets
|
|
5831
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5832
|
-
* - Header and footer slots
|
|
5833
|
-
* - Loading and empty states
|
|
5834
|
-
* - Keyboard navigation
|
|
5835
|
-
*/
|
|
5836
|
-
checkedKeys: string[];
|
|
5837
|
-
}) => any;
|
|
5838
|
-
"update:modelValue": (value: string[]) => any;
|
|
5839
|
-
expand: (node: object | TreeNodeType, expanded: boolean) => any;
|
|
5840
|
-
calculateVisibleRowsCount: (count: number) => any;
|
|
5841
|
-
"update:expandedKeys": (value: string[]) => any;
|
|
5842
|
-
"update:checkedKeys": (value: string[]) => any;
|
|
5843
|
-
check: (node: object | TreeNodeType, checked: boolean, checkedKeys: string[]) => any;
|
|
5844
|
-
dragStart: (event: TreeDragEvent) => any;
|
|
5845
|
-
dragEnd: (event: TreeDragEvent) => any;
|
|
5846
|
-
choose: (event: SortableEvent) => any;
|
|
5847
|
-
unchoose: (event: SortableEvent) => any;
|
|
5848
|
-
}, string, {
|
|
5849
|
-
disabled: boolean;
|
|
5850
|
-
selectionBehavior: "toggle" | "replace";
|
|
5851
|
-
focusable: boolean;
|
|
5852
|
-
checkStrictly: boolean;
|
|
5853
|
-
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
5854
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
5855
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
5856
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
5857
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
5858
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
5859
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
5860
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
5861
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
5862
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
5863
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
5864
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
5865
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
5866
|
-
renderTracked?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
|
|
5867
|
-
renderTriggered?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
|
|
5868
|
-
errorCaptured?: (((err: unknown, instance: ComponentPublicInstance< {}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance< {}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[]) | undefined;
|
|
5869
|
-
};
|
|
5870
|
-
/**
|
|
5871
|
-
* Combobox Component
|
|
5872
|
-
*
|
|
5873
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5874
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5875
|
-
*
|
|
5876
|
-
* @component Combobox
|
|
5877
|
-
* @description Provides a searchable dropdown with support for:
|
|
5878
|
-
* - Single and multiple selection modes
|
|
5879
|
-
* - Tree/hierarchical option structures
|
|
5880
|
-
* - Virtual scrolling for large datasets
|
|
5881
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5882
|
-
* - Header and footer slots
|
|
5883
|
-
* - Loading and empty states
|
|
5884
|
-
* - Keyboard navigation
|
|
5885
|
-
*/
|
|
5886
|
-
$forceUpdate: () => void;
|
|
5887
|
-
/**
|
|
5888
|
-
* Combobox Component
|
|
5889
|
-
*
|
|
5890
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5891
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5892
|
-
*
|
|
5893
|
-
* @component Combobox
|
|
5894
|
-
* @description Provides a searchable dropdown with support for:
|
|
5895
|
-
* - Single and multiple selection modes
|
|
5896
|
-
* - Tree/hierarchical option structures
|
|
5897
|
-
* - Virtual scrolling for large datasets
|
|
5898
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5899
|
-
* - Header and footer slots
|
|
5900
|
-
* - Loading and empty states
|
|
5901
|
-
* - Keyboard navigation
|
|
5902
|
-
*/
|
|
5903
|
-
$nextTick: nextTick;
|
|
5904
|
-
/**
|
|
5905
|
-
* Combobox Component
|
|
5906
|
-
*
|
|
5907
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5908
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5909
|
-
*
|
|
5910
|
-
* @component Combobox
|
|
5911
|
-
* @description Provides a searchable dropdown with support for:
|
|
5912
|
-
* - Single and multiple selection modes
|
|
5913
|
-
* - Tree/hierarchical option structures
|
|
5914
|
-
* - Virtual scrolling for large datasets
|
|
5915
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5916
|
-
* - Header and footer slots
|
|
5917
|
-
* - Loading and empty states
|
|
5918
|
-
* - Keyboard navigation
|
|
5919
|
-
*/
|
|
5920
|
-
$watch<T_1 extends string | ((...args: any) => any)>(source: T_1, cb: T_1 extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: OnCleanup) => any : (args_0: any, args_1: any, args_2: OnCleanup) => any, options?: WatchOptions<boolean> | undefined): WatchStopHandle;
|
|
5921
|
-
} & Readonly<{
|
|
5922
|
-
disabled: boolean;
|
|
5923
|
-
selectionBehavior: "toggle" | "replace";
|
|
5924
|
-
focusable: boolean;
|
|
5925
|
-
checkStrictly: boolean;
|
|
5926
|
-
}> & Omit<Readonly<TreeProps> & Readonly<{
|
|
5927
|
-
onSelect?: ((node: object | TreeNodeType, selected: boolean, selectedKeys: string[]) => any) | undefined;
|
|
5928
|
-
onChange?: ((value: {
|
|
5929
|
-
/**
|
|
5930
|
-
* Combobox Component
|
|
5931
|
-
*
|
|
5932
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5933
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5934
|
-
*
|
|
5935
|
-
* @component Combobox
|
|
5936
|
-
* @description Provides a searchable dropdown with support for:
|
|
5937
|
-
* - Single and multiple selection modes
|
|
5938
|
-
* - Tree/hierarchical option structures
|
|
5939
|
-
* - Virtual scrolling for large datasets
|
|
5940
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5941
|
-
* - Header and footer slots
|
|
5942
|
-
* - Loading and empty states
|
|
5943
|
-
* - Keyboard navigation
|
|
5944
|
-
*/
|
|
5945
|
-
modelValue: string[];
|
|
5946
|
-
/**
|
|
5947
|
-
* Combobox Component
|
|
5948
|
-
*
|
|
5949
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5950
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5951
|
-
*
|
|
5952
|
-
* @component Combobox
|
|
5953
|
-
* @description Provides a searchable dropdown with support for:
|
|
5954
|
-
* - Single and multiple selection modes
|
|
5955
|
-
* - Tree/hierarchical option structures
|
|
5956
|
-
* - Virtual scrolling for large datasets
|
|
5957
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5958
|
-
* - Header and footer slots
|
|
5959
|
-
* - Loading and empty states
|
|
5960
|
-
* - Keyboard navigation
|
|
5961
|
-
*/
|
|
5962
|
-
checkedKeys: string[];
|
|
5963
|
-
}) => any) | undefined;
|
|
5964
|
-
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
5965
|
-
onExpand?: ((node: object | TreeNodeType, expanded: boolean) => any) | undefined;
|
|
5966
|
-
onCalculateVisibleRowsCount?: ((count: number) => any) | undefined;
|
|
5967
|
-
"onUpdate:expandedKeys"?: ((value: string[]) => any) | undefined;
|
|
5968
|
-
"onUpdate:checkedKeys"?: ((value: string[]) => any) | undefined;
|
|
5969
|
-
onCheck?: ((node: object | TreeNodeType, checked: boolean, checkedKeys: string[]) => any) | undefined;
|
|
5970
|
-
onDragStart?: ((event: TreeDragEvent) => any) | undefined;
|
|
5971
|
-
onDragEnd?: ((event: TreeDragEvent) => any) | undefined;
|
|
5972
|
-
onChoose?: ((event: SortableEvent) => any) | undefined;
|
|
5973
|
-
onUnchoose?: ((event: SortableEvent) => any) | undefined;
|
|
5974
|
-
}>, "dir" | "props" | "onSelect" | "iconSize" | "checked" | "model" | "expandedKeys" | "getLevel" | "indentSize" | "dragging" | "getNodeChildren" | "onCheck" | ("disabled" | "selectionBehavior" | "focusable" | "checkStrictly") | "scrollContainerRef" | "onExpandKey" | "getNodeField" | "getIsSelected" | "getIsChecked" | "prefixes"> & ShallowUnwrapRef< {
|
|
5975
|
-
/**
|
|
5976
|
-
* Combobox Component
|
|
5977
|
-
*
|
|
5978
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5979
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5980
|
-
*
|
|
5981
|
-
* @component Combobox
|
|
5982
|
-
* @description Provides a searchable dropdown with support for:
|
|
5983
|
-
* - Single and multiple selection modes
|
|
5984
|
-
* - Tree/hierarchical option structures
|
|
5985
|
-
* - Virtual scrolling for large datasets
|
|
5986
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
5987
|
-
* - Header and footer slots
|
|
5988
|
-
* - Loading and empty states
|
|
5989
|
-
* - Keyboard navigation
|
|
5990
|
-
*/
|
|
5991
|
-
disabled: ComputedRef<boolean | undefined>;
|
|
5992
|
-
/**
|
|
5993
|
-
* Combobox Component
|
|
5994
|
-
*
|
|
5995
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
5996
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
5997
|
-
*
|
|
5998
|
-
* @component Combobox
|
|
5999
|
-
* @description Provides a searchable dropdown with support for:
|
|
6000
|
-
* - Single and multiple selection modes
|
|
6001
|
-
* - Tree/hierarchical option structures
|
|
6002
|
-
* - Virtual scrolling for large datasets
|
|
6003
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
6004
|
-
* - Header and footer slots
|
|
6005
|
-
* - Loading and empty states
|
|
6006
|
-
* - Keyboard navigation
|
|
6007
|
-
*/
|
|
6008
|
-
props: TreeProps;
|
|
6009
|
-
/**
|
|
6010
|
-
* Combobox Component
|
|
6011
|
-
*
|
|
6012
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
6013
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
6014
|
-
*
|
|
6015
|
-
* @component Combobox
|
|
6016
|
-
* @description Provides a searchable dropdown with support for:
|
|
6017
|
-
* - Single and multiple selection modes
|
|
6018
|
-
* - Tree/hierarchical option structures
|
|
6019
|
-
* - Virtual scrolling for large datasets
|
|
6020
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
6021
|
-
* - Header and footer slots
|
|
6022
|
-
* - Loading and empty states
|
|
6023
|
-
* - Keyboard navigation
|
|
6024
|
-
*/
|
|
6025
|
-
dir: ComputedRef<Direction | undefined>;
|
|
6026
|
-
/**
|
|
6027
|
-
* Combobox Component
|
|
6028
|
-
*
|
|
6029
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
6030
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
6031
|
-
*
|
|
6032
|
-
* @component Combobox
|
|
6033
|
-
* @description Provides a searchable dropdown with support for:
|
|
6034
|
-
* - Single and multiple selection modes
|
|
6035
|
-
* - Tree/hierarchical option structures
|
|
6036
|
-
* - Virtual scrolling for large datasets
|
|
6037
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
6038
|
-
* - Header and footer slots
|
|
6039
|
-
* - Loading and empty states
|
|
6040
|
-
* - Keyboard navigation
|
|
6041
|
-
*/
|
|
6042
|
-
expandedKeys: Ref<string[] | undefined, string[] | undefined>;
|
|
6043
|
-
/**
|
|
6044
|
-
* Combobox Component
|
|
6045
|
-
*
|
|
6046
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
6047
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
6048
|
-
*
|
|
6049
|
-
* @component Combobox
|
|
6050
|
-
* @description Provides a searchable dropdown with support for:
|
|
6051
|
-
* - Single and multiple selection modes
|
|
6052
|
-
* - Tree/hierarchical option structures
|
|
6053
|
-
* - Virtual scrolling for large datasets
|
|
6054
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
6055
|
-
* - Header and footer slots
|
|
6056
|
-
* - Loading and empty states
|
|
6057
|
-
* - Keyboard navigation
|
|
6058
|
-
*/
|
|
6059
|
-
model: WritableComputedRef<string[], string[]>;
|
|
6060
|
-
/**
|
|
6061
|
-
* Combobox Component
|
|
6062
|
-
*
|
|
6063
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
6064
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
6065
|
-
*
|
|
6066
|
-
* @component Combobox
|
|
6067
|
-
* @description Provides a searchable dropdown with support for:
|
|
6068
|
-
* - Single and multiple selection modes
|
|
6069
|
-
* - Tree/hierarchical option structures
|
|
6070
|
-
* - Virtual scrolling for large datasets
|
|
6071
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
6072
|
-
* - Header and footer slots
|
|
6073
|
-
* - Loading and empty states
|
|
6074
|
-
* - Keyboard navigation
|
|
6075
|
-
*/
|
|
6076
|
-
checked: Ref<string[], string[]>;
|
|
6077
|
-
/**
|
|
6078
|
-
* Combobox Component
|
|
6079
|
-
*
|
|
6080
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
6081
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
6082
|
-
*
|
|
6083
|
-
* @component Combobox
|
|
6084
|
-
* @description Provides a searchable dropdown with support for:
|
|
6085
|
-
* - Single and multiple selection modes
|
|
6086
|
-
* - Tree/hierarchical option structures
|
|
6087
|
-
* - Virtual scrolling for large datasets
|
|
6088
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
6089
|
-
* - Header and footer slots
|
|
6090
|
-
* - Loading and empty states
|
|
6091
|
-
* - Keyboard navigation
|
|
6092
|
-
*/
|
|
6093
|
-
dragging: Ref<boolean, boolean>;
|
|
6094
|
-
/**
|
|
6095
|
-
* Combobox Component
|
|
6096
|
-
*
|
|
6097
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
6098
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
6099
|
-
*
|
|
6100
|
-
* @component Combobox
|
|
6101
|
-
* @description Provides a searchable dropdown with support for:
|
|
6102
|
-
* - Single and multiple selection modes
|
|
6103
|
-
* - Tree/hierarchical option structures
|
|
6104
|
-
* - Virtual scrolling for large datasets
|
|
6105
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
6106
|
-
* - Header and footer slots
|
|
6107
|
-
* - Loading and empty states
|
|
6108
|
-
* - Keyboard navigation
|
|
6109
|
-
*/
|
|
6110
|
-
scrollContainerRef: Ref<any, any>;
|
|
6111
|
-
/**
|
|
6112
|
-
* Combobox Component
|
|
6113
|
-
*
|
|
6114
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
6115
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
6116
|
-
*
|
|
6117
|
-
* @component Combobox
|
|
6118
|
-
* @description Provides a searchable dropdown with support for:
|
|
6119
|
-
* - Single and multiple selection modes
|
|
6120
|
-
* - Tree/hierarchical option structures
|
|
6121
|
-
* - Virtual scrolling for large datasets
|
|
6122
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
6123
|
-
* - Header and footer slots
|
|
6124
|
-
* - Loading and empty states
|
|
6125
|
-
* - Keyboard navigation
|
|
6126
|
-
*/
|
|
6127
|
-
onExpandKey: (node: TreeItem) => void;
|
|
6128
|
-
/**
|
|
6129
|
-
* Combobox Component
|
|
6130
|
-
*
|
|
6131
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
6132
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
6133
|
-
*
|
|
6134
|
-
* @component Combobox
|
|
6135
|
-
* @description Provides a searchable dropdown with support for:
|
|
6136
|
-
* - Single and multiple selection modes
|
|
6137
|
-
* - Tree/hierarchical option structures
|
|
6138
|
-
* - Virtual scrolling for large datasets
|
|
6139
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
6140
|
-
* - Header and footer slots
|
|
6141
|
-
* - Loading and empty states
|
|
6142
|
-
* - Keyboard navigation
|
|
6143
|
-
*/
|
|
6144
|
-
getLevel: (node: TreeItem) => number;
|
|
6145
|
-
/**
|
|
6146
|
-
* Combobox Component
|
|
6147
|
-
*
|
|
6148
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
6149
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
6150
|
-
*
|
|
6151
|
-
* @component Combobox
|
|
6152
|
-
* @description Provides a searchable dropdown with support for:
|
|
6153
|
-
* - Single and multiple selection modes
|
|
6154
|
-
* - Tree/hierarchical option structures
|
|
6155
|
-
* - Virtual scrolling for large datasets
|
|
6156
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
6157
|
-
* - Header and footer slots
|
|
6158
|
-
* - Loading and empty states
|
|
6159
|
-
* - Keyboard navigation
|
|
6160
|
-
*/
|
|
6161
|
-
getNodeField: <T>(node: object, field: keyof TreeNodeType) => T;
|
|
6162
|
-
/**
|
|
6163
|
-
* Combobox Component
|
|
6164
|
-
*
|
|
6165
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
6166
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
6167
|
-
*
|
|
6168
|
-
* @component Combobox
|
|
6169
|
-
* @description Provides a searchable dropdown with support for:
|
|
6170
|
-
* - Single and multiple selection modes
|
|
6171
|
-
* - Tree/hierarchical option structures
|
|
6172
|
-
* - Virtual scrolling for large datasets
|
|
6173
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
6174
|
-
* - Header and footer slots
|
|
6175
|
-
* - Loading and empty states
|
|
6176
|
-
* - Keyboard navigation
|
|
6177
|
-
*/
|
|
6178
|
-
onSelect: (node: TreeItem, value: boolean) => void;
|
|
6179
|
-
/**
|
|
6180
|
-
* Combobox Component
|
|
6181
|
-
*
|
|
6182
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
6183
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
6184
|
-
*
|
|
6185
|
-
* @component Combobox
|
|
6186
|
-
* @description Provides a searchable dropdown with support for:
|
|
6187
|
-
* - Single and multiple selection modes
|
|
6188
|
-
* - Tree/hierarchical option structures
|
|
6189
|
-
* - Virtual scrolling for large datasets
|
|
6190
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
6191
|
-
* - Header and footer slots
|
|
6192
|
-
* - Loading and empty states
|
|
6193
|
-
* - Keyboard navigation
|
|
6194
|
-
*/
|
|
6195
|
-
onCheck: (node: TreeItem, value: boolean) => void;
|
|
6196
|
-
/**
|
|
6197
|
-
* Combobox Component
|
|
6198
|
-
*
|
|
6199
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
6200
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
6201
|
-
*
|
|
6202
|
-
* @component Combobox
|
|
6203
|
-
* @description Provides a searchable dropdown with support for:
|
|
6204
|
-
* - Single and multiple selection modes
|
|
6205
|
-
* - Tree/hierarchical option structures
|
|
6206
|
-
* - Virtual scrolling for large datasets
|
|
6207
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
6208
|
-
* - Header and footer slots
|
|
6209
|
-
* - Loading and empty states
|
|
6210
|
-
* - Keyboard navigation
|
|
6211
|
-
*/
|
|
6212
|
-
getNodeChildren: (node: TreeItem, direct?: boolean | undefined, filterDisabled?: boolean | undefined) => TreeItem[];
|
|
6213
|
-
/**
|
|
6214
|
-
* Combobox Component
|
|
6215
|
-
*
|
|
6216
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
6217
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
6218
|
-
*
|
|
6219
|
-
* @component Combobox
|
|
6220
|
-
* @description Provides a searchable dropdown with support for:
|
|
6221
|
-
* - Single and multiple selection modes
|
|
6222
|
-
* - Tree/hierarchical option structures
|
|
6223
|
-
* - Virtual scrolling for large datasets
|
|
6224
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
6225
|
-
* - Header and footer slots
|
|
6226
|
-
* - Loading and empty states
|
|
6227
|
-
* - Keyboard navigation
|
|
6228
|
-
*/
|
|
6229
|
-
indentSize: ComputedRef<"sm" | "2xsm" | "xsm">;
|
|
6230
|
-
/**
|
|
6231
|
-
* Combobox Component
|
|
6232
|
-
*
|
|
6233
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
6234
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
6235
|
-
*
|
|
6236
|
-
* @component Combobox
|
|
6237
|
-
* @description Provides a searchable dropdown with support for:
|
|
6238
|
-
* - Single and multiple selection modes
|
|
6239
|
-
* - Tree/hierarchical option structures
|
|
6240
|
-
* - Virtual scrolling for large datasets
|
|
6241
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
6242
|
-
* - Header and footer slots
|
|
6243
|
-
* - Loading and empty states
|
|
6244
|
-
* - Keyboard navigation
|
|
6245
|
-
*/
|
|
6246
|
-
iconSize: ComputedRef<"2xsm" | "xsm">;
|
|
6247
|
-
/**
|
|
6248
|
-
* Combobox Component
|
|
6249
|
-
*
|
|
6250
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
6251
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
6252
|
-
*
|
|
6253
|
-
* @component Combobox
|
|
6254
|
-
* @description Provides a searchable dropdown with support for:
|
|
6255
|
-
* - Single and multiple selection modes
|
|
6256
|
-
* - Tree/hierarchical option structures
|
|
6257
|
-
* - Virtual scrolling for large datasets
|
|
6258
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
6259
|
-
* - Header and footer slots
|
|
6260
|
-
* - Loading and empty states
|
|
6261
|
-
* - Keyboard navigation
|
|
6262
|
-
*/
|
|
6263
|
-
getIsSelected: (node: TreeItem) => boolean;
|
|
6264
|
-
/**
|
|
6265
|
-
* Combobox Component
|
|
6266
|
-
*
|
|
6267
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
6268
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
6269
|
-
*
|
|
6270
|
-
* @component Combobox
|
|
6271
|
-
* @description Provides a searchable dropdown with support for:
|
|
6272
|
-
* - Single and multiple selection modes
|
|
6273
|
-
* - Tree/hierarchical option structures
|
|
6274
|
-
* - Virtual scrolling for large datasets
|
|
6275
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
6276
|
-
* - Header and footer slots
|
|
6277
|
-
* - Loading and empty states
|
|
6278
|
-
* - Keyboard navigation
|
|
6279
|
-
*/
|
|
6280
|
-
getIsChecked: (node: TreeItem) => boolean | "indeterminate";
|
|
6281
|
-
/**
|
|
6282
|
-
* Combobox Component
|
|
6283
|
-
*
|
|
6284
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
6285
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
6286
|
-
*
|
|
6287
|
-
* @component Combobox
|
|
6288
|
-
* @description Provides a searchable dropdown with support for:
|
|
6289
|
-
* - Single and multiple selection modes
|
|
6290
|
-
* - Tree/hierarchical option structures
|
|
6291
|
-
* - Virtual scrolling for large datasets
|
|
6292
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
6293
|
-
* - Header and footer slots
|
|
6294
|
-
* - Loading and empty states
|
|
6295
|
-
* - Keyboard navigation
|
|
6296
|
-
*/
|
|
6297
|
-
prefixes: {
|
|
6298
|
-
/**
|
|
6299
|
-
* Combobox Component
|
|
6300
|
-
*
|
|
6301
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
6302
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
6303
|
-
*
|
|
6304
|
-
* @component Combobox
|
|
6305
|
-
* @description Provides a searchable dropdown with support for:
|
|
6306
|
-
* - Single and multiple selection modes
|
|
6307
|
-
* - Tree/hierarchical option structures
|
|
6308
|
-
* - Virtual scrolling for large datasets
|
|
6309
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
6310
|
-
* - Header and footer slots
|
|
6311
|
-
* - Loading and empty states
|
|
6312
|
-
* - Keyboard navigation
|
|
6313
|
-
*/
|
|
6314
|
-
node: string;
|
|
6315
|
-
/**
|
|
6316
|
-
* Combobox Component
|
|
6317
|
-
*
|
|
6318
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
6319
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
6320
|
-
*
|
|
6321
|
-
* @component Combobox
|
|
6322
|
-
* @description Provides a searchable dropdown with support for:
|
|
6323
|
-
* - Single and multiple selection modes
|
|
6324
|
-
* - Tree/hierarchical option structures
|
|
6325
|
-
* - Virtual scrolling for large datasets
|
|
6326
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
6327
|
-
* - Header and footer slots
|
|
6328
|
-
* - Loading and empty states
|
|
6329
|
-
* - Keyboard navigation
|
|
6330
|
-
*/
|
|
6331
|
-
group: string;
|
|
6332
|
-
/**
|
|
6333
|
-
* Combobox Component
|
|
6334
|
-
*
|
|
6335
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
6336
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
6337
|
-
*
|
|
6338
|
-
* @component Combobox
|
|
6339
|
-
* @description Provides a searchable dropdown with support for:
|
|
6340
|
-
* - Single and multiple selection modes
|
|
6341
|
-
* - Tree/hierarchical option structures
|
|
6342
|
-
* - Virtual scrolling for large datasets
|
|
6343
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
6344
|
-
* - Header and footer slots
|
|
6345
|
-
* - Loading and empty states
|
|
6346
|
-
* - Keyboard navigation
|
|
6347
|
-
*/
|
|
6348
|
-
draggable: string;
|
|
6349
|
-
/**
|
|
6350
|
-
* Combobox Component
|
|
6351
|
-
*
|
|
6352
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
6353
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
6354
|
-
*
|
|
6355
|
-
* @component Combobox
|
|
6356
|
-
* @description Provides a searchable dropdown with support for:
|
|
6357
|
-
* - Single and multiple selection modes
|
|
6358
|
-
* - Tree/hierarchical option structures
|
|
6359
|
-
* - Virtual scrolling for large datasets
|
|
6360
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
6361
|
-
* - Header and footer slots
|
|
6362
|
-
* - Loading and empty states
|
|
6363
|
-
* - Keyboard navigation
|
|
6364
|
-
*/
|
|
6365
|
-
draggableIcon: string;
|
|
6366
|
-
/**
|
|
6367
|
-
* Combobox Component
|
|
6368
|
-
*
|
|
6369
|
-
* A versatile combobox component that supports single and multiple selection,
|
|
6370
|
-
* search/filtering, tree mode, virtual scrolling, and customizable rendering.
|
|
6371
|
-
*
|
|
6372
|
-
* @component Combobox
|
|
6373
|
-
* @description Provides a searchable dropdown with support for:
|
|
6374
|
-
* - Single and multiple selection modes
|
|
6375
|
-
* - Tree/hierarchical option structures
|
|
6376
|
-
* - Virtual scrolling for large datasets
|
|
6377
|
-
* - Customizable tag rendering (chip, avatar, graphical object)
|
|
6378
|
-
* - Header and footer slots
|
|
6379
|
-
* - Loading and empty states
|
|
6380
|
-
* - Keyboard navigation
|
|
6381
|
-
*/
|
|
6382
|
-
groupList: string;
|
|
6383
|
-
};
|
|
6384
|
-
}> & {} & ComponentCustomProperties & {} & {
|
|
6385
|
-
$slots: Readonly<TreeSlots> & TreeSlots;
|
|
6386
|
-
}) | null;
|
|
6387
|
-
target: HTMLDivElement;
|
|
6388
|
-
}, any>, Readonly<ComboboxSlots> & ComboboxSlots>;
|
|
4390
|
+
openAutoFocus: (event: Event) => any;
|
|
4391
|
+
closeAutoFocus: (event: Event) => any;
|
|
4392
|
+
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
4393
|
+
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
4394
|
+
focusOutside: (event: FocusOutsideEvent) => any;
|
|
4395
|
+
interactOutside: (event: PointerDownOutsideEvent | FocusOutsideEvent) => any;
|
|
4396
|
+
openChange: (value?: boolean | null | undefined) => any;
|
|
4397
|
+
"update:open": (value: boolean) => any;
|
|
4398
|
+
keydownEnter: (event: ComboboxKeydownEvent, search?: string | undefined, isEmpty?: boolean | undefined) => any;
|
|
4399
|
+
"update:expandedKeys": (value: string[]) => any;
|
|
4400
|
+
keydownEscape: (event: ComboboxKeydownEvent, search?: string | undefined, isEmpty?: boolean | undefined) => any;
|
|
4401
|
+
"update:search": (value?: string | null | undefined) => any;
|
|
4402
|
+
fetch: (getIsVisible: () => Promise<boolean>) => any;
|
|
4403
|
+
}, string, PublicProps, Readonly<ComboboxProps> & Readonly<{
|
|
4404
|
+
onSearch?: ((value?: string | null | undefined) => any) | undefined;
|
|
4405
|
+
onSelect?: ((value: string | undefined, selected: boolean, option?: ComboboxFlattenOptionType | undefined) => any) | undefined;
|
|
4406
|
+
"onUpdate:modelValue"?: ((value: string | string[]) => any) | undefined;
|
|
4407
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
4408
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
4409
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
4410
|
+
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
4411
|
+
onFocusOutside?: ((event: FocusOutsideEvent) => any) | undefined;
|
|
4412
|
+
onInteractOutside?: ((event: PointerDownOutsideEvent | FocusOutsideEvent) => any) | undefined;
|
|
4413
|
+
onOpenChange?: ((value?: boolean | null | undefined) => any) | undefined;
|
|
4414
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
4415
|
+
onKeydownEnter?: ((event: ComboboxKeydownEvent, search?: string | undefined, isEmpty?: boolean | undefined) => any) | undefined;
|
|
4416
|
+
"onUpdate:expandedKeys"?: ((value: string[]) => any) | undefined;
|
|
4417
|
+
onKeydownEscape?: ((event: ComboboxKeydownEvent, search?: string | undefined, isEmpty?: boolean | undefined) => any) | undefined;
|
|
4418
|
+
"onUpdate:search"?: ((value?: string | null | undefined) => any) | undefined;
|
|
4419
|
+
onFetch?: ((getIsVisible: () => Promise<boolean>) => any) | undefined;
|
|
4420
|
+
}>, {
|
|
4421
|
+
disabled: boolean;
|
|
4422
|
+
multiple: boolean;
|
|
4423
|
+
bordered: boolean;
|
|
4424
|
+
open: boolean;
|
|
4425
|
+
defaultOpen: boolean;
|
|
4426
|
+
readonly: boolean;
|
|
4427
|
+
side: "bottom" | "left" | "right" | "top";
|
|
4428
|
+
sideOffset: number;
|
|
4429
|
+
align: "start" | "end" | "center";
|
|
4430
|
+
avoidCollisions: boolean;
|
|
4431
|
+
prioritizePosition: boolean;
|
|
4432
|
+
disableOutsidePointerEvents: boolean;
|
|
4433
|
+
zIndex: string | number;
|
|
4434
|
+
trailingIcon: string | boolean;
|
|
4435
|
+
checkbox: boolean;
|
|
4436
|
+
selectedItemIconAsTrailingIcon: boolean;
|
|
4437
|
+
indicatorIcon: string;
|
|
4438
|
+
loadingRowCount: number;
|
|
4439
|
+
clearOnChangeMultiple: boolean;
|
|
4440
|
+
samePopupWidth: boolean;
|
|
4441
|
+
popupHeight: string | number;
|
|
4442
|
+
resetSearchTermOnBlur: boolean;
|
|
4443
|
+
resetSearchTermOnSelect: boolean;
|
|
4444
|
+
noValueOnPlaceholder: boolean;
|
|
4445
|
+
showTreeTagStrategy: "all" | "child" | "parent";
|
|
4446
|
+
tagRenderMode: "go" | "avatar" | "chip";
|
|
4447
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<ComboboxSlots> & ComboboxSlots>;
|
|
6389
4448
|
|
|
6390
4449
|
/**
|
|
6391
4450
|
* Context interface for the Combobox component
|
|
@@ -6393,8 +4452,6 @@ target: HTMLDivElement;
|
|
|
6393
4452
|
* @interface ComboboxContext
|
|
6394
4453
|
*/
|
|
6395
4454
|
export declare interface ComboboxContext {
|
|
6396
|
-
/** Computed array of selected keys to display */
|
|
6397
|
-
displaySelectedKeys: ComputedRef<string[]>;
|
|
6398
4455
|
/** Checks if an option is selected */
|
|
6399
4456
|
isOptionSelected: (value?: string) => boolean;
|
|
6400
4457
|
/** Gets an option by its value */
|
|
@@ -6417,14 +4474,10 @@ export declare interface ComboboxContext {
|
|
|
6417
4474
|
getStatus: ComputedRef<ComboboxStatus>;
|
|
6418
4475
|
/** Computed size */
|
|
6419
4476
|
getSize: ComputedRef<ComboboxSize>;
|
|
6420
|
-
/** Computed tag size based on combobox size */
|
|
6421
|
-
getTagSize: ComputedRef<'md' | 'xsm' | 'sm'>;
|
|
6422
4477
|
/** Computed icon size based on combobox size */
|
|
6423
4478
|
getIconSize: ComputedRef<'2xsm' | 'sm' | 'xsm'>;
|
|
6424
4479
|
/** Computed input bindings */
|
|
6425
4480
|
comboboxInputBinding: ComputedRef<object>;
|
|
6426
|
-
/** Computed trigger bindings */
|
|
6427
|
-
comboboxTriggerBinding: ComputedRef<object>;
|
|
6428
4481
|
/** Component props */
|
|
6429
4482
|
props: ComboboxProps;
|
|
6430
4483
|
/** Component slots */
|
|
@@ -6457,10 +4510,10 @@ export declare interface ComboboxContext {
|
|
|
6457
4510
|
comboboxInputFocused: Ref<boolean>;
|
|
6458
4511
|
/** Keyboard event handler */
|
|
6459
4512
|
onKeyDown: (event: KeyboardEvent) => void;
|
|
6460
|
-
/** BEM prefix for trigger */
|
|
6461
|
-
triggerPrefix: string;
|
|
6462
4513
|
/** Computed trigger props */
|
|
6463
4514
|
triggerProps: ComputedRef<Record<string, any>>;
|
|
4515
|
+
/** True when noTrigger, noPopover, or headerSearch (header search / inline mode) */
|
|
4516
|
+
isHeaderSearch: ComputedRef<boolean>;
|
|
6464
4517
|
}
|
|
6465
4518
|
|
|
6466
4519
|
/**
|
|
@@ -6770,6 +4823,8 @@ export declare interface ComboboxProps extends Partial<Pick<PopoverProps, 'side'
|
|
|
6770
4823
|
showTriggerTagOnOption?: boolean;
|
|
6771
4824
|
/** Function or object to get menu item props */
|
|
6772
4825
|
getMenuItemProps?: ((option: ComboboxFlattenOptionType) => Partial<MenuItemProps>) | Partial<MenuItemProps>;
|
|
4826
|
+
/** Whether render Content in popover or not */
|
|
4827
|
+
noPopover?: boolean;
|
|
6773
4828
|
}
|
|
6774
4829
|
|
|
6775
4830
|
/**
|
|
@@ -6787,6 +4842,10 @@ export declare const ComboboxSizes: readonly ["sm", "md", "lg"];
|
|
|
6787
4842
|
* @interface ComboboxSlots
|
|
6788
4843
|
*/
|
|
6789
4844
|
export declare interface ComboboxSlots {
|
|
4845
|
+
content?: (data?: {
|
|
4846
|
+
isEmpty: boolean;
|
|
4847
|
+
search: string | undefined;
|
|
4848
|
+
}) => never;
|
|
6790
4849
|
trigger?: (data: Omit<ComboboxTriggerDefSlotProps, 'option'>) => never;
|
|
6791
4850
|
triggerTrailing?: (data: Omit<ComboboxTriggerDefSlotProps, 'option'>) => never;
|
|
6792
4851
|
tagLeading?: (data: ComboboxTriggerTagSlotProps) => never;
|
|
@@ -6830,6 +4889,10 @@ export declare const ComboboxTreeTagStrategies: readonly ["all", "parent", "chil
|
|
|
6830
4889
|
*/
|
|
6831
4890
|
export declare type ComboboxTreeTagStrategy = (typeof ComboboxTreeTagStrategies)[number];
|
|
6832
4891
|
|
|
4892
|
+
export declare const ComboboxTrigger: __VLS_WithTemplateSlots_27<DefineComponent<ComboboxTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ComboboxTriggerProps> & Readonly<{}>, {
|
|
4893
|
+
triggerOnly: boolean;
|
|
4894
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<Partial<Pick<ComboboxSlots, "trigger" | "optionLeading" | "triggerTrailing" | "tagLeading">>> & Partial<Pick<ComboboxSlots, "trigger" | "optionLeading" | "triggerTrailing" | "tagLeading">>>;
|
|
4895
|
+
|
|
6833
4896
|
/**
|
|
6834
4897
|
* Default slot props for combobox trigger
|
|
6835
4898
|
* @interface ComboboxTriggerDefSlotProps
|
|
@@ -6841,6 +4904,14 @@ export declare interface ComboboxTriggerDefSlotProps {
|
|
|
6841
4904
|
options?: ComboboxFlattenOptionType[];
|
|
6842
4905
|
}
|
|
6843
4906
|
|
|
4907
|
+
export declare const comboboxTriggerPrefix: string;
|
|
4908
|
+
|
|
4909
|
+
export declare interface ComboboxTriggerProps extends Partial<Pick<ComboboxProps, 'triggerMinWidth' | 'triggerCls' | 'triggerTrailingCls' | 'triggerLeadingCls' | 'triggerContentCls' | 'triggerContentPlaceholderCls' | 'triggerContentValueCls' | 'tagCls' | 'tree' | 'showTreeTagStrategy' | 'modelValue' | 'defaultValue' | 'multiple' | 'disabled' | 'readonly' | 'size' | 'status' | 'bordered' | 'noValueOnPlaceholder' | 'tagRenderMode' | 'getTagProps' | 'contentFit' | 'wrapped' | 'noTrailing' | 'leadingIcon' | 'trailingIcon' | 'selectedItemIconAsTrailingIcon' | 'maxCount' | 'placeholder' | 'options' | 'getLabel' | 'getValue' | 'getOptions' | 'getIcon' | 'dir' | 'open'>> {
|
|
4910
|
+
triggerOnly?: boolean;
|
|
4911
|
+
}
|
|
4912
|
+
|
|
4913
|
+
export declare type ComboboxTriggerSlots = Partial<Pick<ComboboxSlots, 'optionLeading' | 'triggerTrailing' | 'trigger' | 'tagLeading'>>;
|
|
4914
|
+
|
|
6844
4915
|
/**
|
|
6845
4916
|
* Slot props for combobox trigger tags
|
|
6846
4917
|
* @interface ComboboxTriggerTagSlotProps
|
|
@@ -6859,7 +4930,7 @@ declare interface _Config extends Config {
|
|
|
6859
4930
|
init?: boolean;
|
|
6860
4931
|
}
|
|
6861
4932
|
|
|
6862
|
-
export declare const ConfigProvider:
|
|
4933
|
+
export declare const ConfigProvider: __VLS_WithTemplateSlots_28<DefineComponent<ConfigProviderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ConfigProviderProps> & Readonly<{}>, {
|
|
6863
4934
|
cssInJs: boolean;
|
|
6864
4935
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<ConfigProviderSlots> & ConfigProviderSlots>;
|
|
6865
4936
|
|
|
@@ -6986,7 +5057,7 @@ export declare const DEFAULT_DARK = false;
|
|
|
6986
5057
|
|
|
6987
5058
|
export declare const DEFAULT_DIRECTION = "ltr";
|
|
6988
5059
|
|
|
6989
|
-
export declare const Dialog:
|
|
5060
|
+
export declare const Dialog: __VLS_WithTemplateSlots_29<DefineComponent<DialogProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6990
5061
|
cancel: (event?: PointerEvent | undefined) => any;
|
|
6991
5062
|
close: () => any;
|
|
6992
5063
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
@@ -8352,7 +6423,7 @@ export declare interface DialogSlots {
|
|
|
8352
6423
|
cancelPostIcon?: (data?: object) => VNode;
|
|
8353
6424
|
}
|
|
8354
6425
|
|
|
8355
|
-
export declare const DialogTitle:
|
|
6426
|
+
export declare const DialogTitle: __VLS_WithTemplateSlots_30<DefineComponent<DialogTitleProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DialogTitleProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<DialogTitleSlots> & DialogTitleSlots>;
|
|
8356
6427
|
|
|
8357
6428
|
export declare interface DialogTitleProps {
|
|
8358
6429
|
class?: ClassValue;
|
|
@@ -8415,7 +6486,7 @@ declare interface DismissableLayerProps extends PrimitiveProps {
|
|
|
8415
6486
|
disableOutsidePointerEvents?: boolean;
|
|
8416
6487
|
}
|
|
8417
6488
|
|
|
8418
|
-
export declare const Divider:
|
|
6489
|
+
export declare const Divider: __VLS_WithTemplateSlots_31<DefineComponent<DividerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DividerProps> & Readonly<{}>, {
|
|
8419
6490
|
type: "horizontal" | "vertical";
|
|
8420
6491
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, {
|
|
8421
6492
|
default?(_: {}): any;
|
|
@@ -8453,7 +6524,7 @@ export declare type DividerType = (typeof DividerTypes)[number];
|
|
|
8453
6524
|
*/
|
|
8454
6525
|
export declare const DividerTypes: readonly ["horizontal", "vertical"];
|
|
8455
6526
|
|
|
8456
|
-
export declare const Drawer:
|
|
6527
|
+
export declare const Drawer: __VLS_WithTemplateSlots_32<DefineComponent<DrawerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
8457
6528
|
cancel: (event?: PointerEvent | undefined) => any;
|
|
8458
6529
|
close: () => any;
|
|
8459
6530
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
@@ -8603,7 +6674,7 @@ export declare const DrawerSizes: readonly ["sm", "md", "lg"];
|
|
|
8603
6674
|
*/
|
|
8604
6675
|
export declare type DrawerSlots = DialogSlots;
|
|
8605
6676
|
|
|
8606
|
-
export declare const DrawerTitle:
|
|
6677
|
+
export declare const DrawerTitle: __VLS_WithTemplateSlots_33<DefineComponent<DialogTitleProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DialogTitleProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<DialogTitleSlots> & DialogTitleSlots>;
|
|
8607
6678
|
|
|
8608
6679
|
export declare type DrawerTitleProps = DialogTitleProps;
|
|
8609
6680
|
|
|
@@ -8627,7 +6698,7 @@ export declare interface DropdownContext {
|
|
|
8627
6698
|
closeDropdown: () => void;
|
|
8628
6699
|
}
|
|
8629
6700
|
|
|
8630
|
-
export declare const DropZone:
|
|
6701
|
+
export declare const DropZone: __VLS_WithTemplateSlots_34<DefineComponent<DropZoneProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
8631
6702
|
dragenter: (value: DragEvent) => any;
|
|
8632
6703
|
dragleave: (value: DragEvent) => any;
|
|
8633
6704
|
drop: (value: DragEvent) => any;
|
|
@@ -8787,7 +6858,7 @@ export declare const DropZoneTypes: readonly ["default", "placeholder"];
|
|
|
8787
6858
|
declare type Element_2 = string | HTMLElement | Ref<string | HTMLElement>;
|
|
8788
6859
|
export { Element_2 as Element }
|
|
8789
6860
|
|
|
8790
|
-
export declare const Empty:
|
|
6861
|
+
export declare const Empty: __VLS_WithTemplateSlots_35<DefineComponent<EmptyProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<EmptyProps> & Readonly<{}>, {
|
|
8791
6862
|
icon: string;
|
|
8792
6863
|
type: "simple" | "advance";
|
|
8793
6864
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, Readonly<EmptySlots> & EmptySlots>;
|
|
@@ -8923,7 +6994,7 @@ export declare const FLOAT_BUTTON_DEFAULT_PROPS: {
|
|
|
8923
6994
|
readonly disabled: undefined;
|
|
8924
6995
|
};
|
|
8925
6996
|
|
|
8926
|
-
export declare const FloatButton:
|
|
6997
|
+
export declare const FloatButton: __VLS_WithTemplateSlots_36<DefineComponent<FloatButtonProps, {
|
|
8927
6998
|
/**
|
|
8928
6999
|
* check is Focused the button element
|
|
8929
7000
|
*/
|
|
@@ -9115,7 +7186,7 @@ declare interface FormFieldProps {
|
|
|
9115
7186
|
required?: boolean;
|
|
9116
7187
|
}
|
|
9117
7188
|
|
|
9118
|
-
export declare const FormValidation:
|
|
7189
|
+
export declare const FormValidation: __VLS_WithTemplateSlots_37<DefineComponent<FormValidationProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<FormValidationProps> & Readonly<{}>, {
|
|
9119
7190
|
status: "none" | "error" | "success" | "warning";
|
|
9120
7191
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, Readonly<{
|
|
9121
7192
|
/**
|
|
@@ -9255,7 +7326,7 @@ export declare const GRAPHICAL_OBJECT_DEFAULT_PROPS: {
|
|
|
9255
7326
|
readonly size: "md";
|
|
9256
7327
|
};
|
|
9257
7328
|
|
|
9258
|
-
export declare const GraphicalObject:
|
|
7329
|
+
export declare const GraphicalObject: __VLS_WithTemplateSlots_38<DefineComponent<GraphicalObjectProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<GraphicalObjectProps> & Readonly<{}>, {
|
|
9259
7330
|
size: GraphicalObjectSize;
|
|
9260
7331
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<BaseBadgeSlots> & BaseBadgeSlots>;
|
|
9261
7332
|
|
|
@@ -9289,7 +7360,7 @@ export declare type GraphicalObjectFG = (typeof GraphicalObjectFGs)[number];
|
|
|
9289
7360
|
*/
|
|
9290
7361
|
export declare const GraphicalObjectFGs: readonly ["primary", "gray", "red", "orange", "amber", "yellow", "lime", "green", "teal", "cyan", "sky", "blue", "ocean", "violet", "amethyst", "fuchsia", "pink", "mallard", "default", "default-subtle", "white", "black"];
|
|
9291
7362
|
|
|
9292
|
-
export declare const GraphicalObjectGroup:
|
|
7363
|
+
export declare const GraphicalObjectGroup: __VLS_WithTemplateSlots_39<DefineComponent<GraphicalObjectGroupProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<GraphicalObjectGroupProps> & Readonly<{}>, {
|
|
9293
7364
|
size: "sm" | "md" | "xsm";
|
|
9294
7365
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, Readonly<GraphicalObjectGroupSlots> & GraphicalObjectGroupSlots>;
|
|
9295
7366
|
|
|
@@ -9393,7 +7464,7 @@ export declare const HOVER_CARD_DEFAULT_PROPS: {
|
|
|
9393
7464
|
readonly asChild: false;
|
|
9394
7465
|
};
|
|
9395
7466
|
|
|
9396
|
-
export declare const HoverCard:
|
|
7467
|
+
export declare const HoverCard: __VLS_WithTemplateSlots_40<DefineComponent<HoverCardProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
9397
7468
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
9398
7469
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
9399
7470
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
@@ -9465,7 +7536,7 @@ declare interface HoverCardRootProps {
|
|
|
9465
7536
|
*/
|
|
9466
7537
|
export declare type HoverCardSlots = PopoverSlots;
|
|
9467
7538
|
|
|
9468
|
-
export declare const Icon:
|
|
7539
|
+
export declare const Icon: __VLS_WithTemplateSlots_41<DefineComponent<IconProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<IconProps> & Readonly<{}>, {
|
|
9469
7540
|
size: IconSize;
|
|
9470
7541
|
as: AsTag | Component;
|
|
9471
7542
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<{
|
|
@@ -9492,7 +7563,7 @@ export declare const ICON_DEFAULT_PROPS: {
|
|
|
9492
7563
|
readonly as: "span";
|
|
9493
7564
|
};
|
|
9494
7565
|
|
|
9495
|
-
export declare const IconButton:
|
|
7566
|
+
export declare const IconButton: __VLS_WithTemplateSlots_42<DefineComponent<Partial<Omit<BaseButtonProps, "text" | "active" | "badgeIcon" | "badgeText" | "variant" | "action" | "preIcon" | "postIcon" | "preIconFlipOnDir" | "postIconFlipOnDir" | "badgeIconFlipOnDir">>, {
|
|
9496
7567
|
/**
|
|
9497
7568
|
* check is Focused the button element
|
|
9498
7569
|
*/
|
|
@@ -9708,7 +7779,7 @@ export declare type IconSize = (typeof IconSizes)[number] | number | string;
|
|
|
9708
7779
|
*/
|
|
9709
7780
|
export declare const IconSizes: readonly ["3xsm", "2xsm", "xsm", "sm"];
|
|
9710
7781
|
|
|
9711
|
-
declare const Image_2:
|
|
7782
|
+
declare const Image_2: __VLS_WithTemplateSlots_43<DefineComponent<ImageProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
9712
7783
|
error: () => any;
|
|
9713
7784
|
load: () => any;
|
|
9714
7785
|
}, string, PublicProps, Readonly<ImageProps> & Readonly<{
|
|
@@ -9860,7 +7931,7 @@ export declare const INDENT_LEVEL_DEFAULT_PROPS: {
|
|
|
9860
7931
|
readonly branchIcon: "tabler:chevron-right";
|
|
9861
7932
|
};
|
|
9862
7933
|
|
|
9863
|
-
export declare const IndentLevel:
|
|
7934
|
+
export declare const IndentLevel: __VLS_WithTemplateSlots_44<DefineComponent<IndentLevelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<IndentLevelProps> & Readonly<{}>, {
|
|
9864
7935
|
size: "sm" | "2xsm" | "xsm";
|
|
9865
7936
|
branchIcon: string;
|
|
9866
7937
|
level: string | number;
|
|
@@ -9937,7 +8008,7 @@ export declare type IndentLevelSize = (typeof IndentLevelSizes)[number];
|
|
|
9937
8008
|
*/
|
|
9938
8009
|
export declare const IndentLevelSizes: readonly ["2xsm", "xsm", "sm"];
|
|
9939
8010
|
|
|
9940
|
-
export declare const Indicator:
|
|
8011
|
+
export declare const Indicator: __VLS_WithTemplateSlots_45<DefineComponent<IndicatorProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<IndicatorProps> & Readonly<{}>, {
|
|
9941
8012
|
size: "tiny" | "tinier";
|
|
9942
8013
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<BaseBadgeSlots> & BaseBadgeSlots>;
|
|
9943
8014
|
|
|
@@ -10033,7 +8104,7 @@ export declare const injectUploadContext: <T extends UploadContext | null | unde
|
|
|
10033
8104
|
|
|
10034
8105
|
export declare const injectUploadItemContext: <T extends UploadItemContext | null | undefined = UploadItemContext>(fallback?: T | undefined) => T extends null ? UploadItemContext | null : UploadItemContext;
|
|
10035
8106
|
|
|
10036
|
-
export declare const Input:
|
|
8107
|
+
export declare const Input: __VLS_WithTemplateSlots_46<DefineComponent<InputProps, {
|
|
10037
8108
|
input: Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
10038
8109
|
focus: (option?: FocusOptions | undefined) => void;
|
|
10039
8110
|
blur: () => void | undefined;
|
|
@@ -10104,7 +8175,7 @@ export declare interface InputEmits extends HasRootInputEmits, BaseInputEmits {
|
|
|
10104
8175
|
change: [value?: string | null];
|
|
10105
8176
|
}
|
|
10106
8177
|
|
|
10107
|
-
export declare const InputGroup:
|
|
8178
|
+
export declare const InputGroup: __VLS_WithTemplateSlots_47<DefineComponent<InputGroupProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<InputGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, {
|
|
10108
8179
|
default?(_: {}): any;
|
|
10109
8180
|
}>;
|
|
10110
8181
|
|
|
@@ -10128,7 +8199,7 @@ export declare type InputGroupProps = {
|
|
|
10128
8199
|
size?: FormItemSize;
|
|
10129
8200
|
};
|
|
10130
8201
|
|
|
10131
|
-
export declare const InputNumber:
|
|
8202
|
+
export declare const InputNumber: __VLS_WithTemplateSlots_48<DefineComponent<InputNumberProps, {
|
|
10132
8203
|
input: Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
10133
8204
|
focus: (option?: FocusOptions | undefined) => void;
|
|
10134
8205
|
blur: () => void | undefined;
|
|
@@ -10301,7 +8372,7 @@ export declare type InputStatus = (typeof InputStatuses)[number];
|
|
|
10301
8372
|
*/
|
|
10302
8373
|
export declare const InputStatuses: readonly ["error", "warning", "success", "none"];
|
|
10303
8374
|
|
|
10304
|
-
export declare const Kbd:
|
|
8375
|
+
export declare const Kbd: __VLS_WithTemplateSlots_49<DefineComponent<KbdProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<KbdProps> & Readonly<{}>, {
|
|
10305
8376
|
text: string;
|
|
10306
8377
|
as: string;
|
|
10307
8378
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, Readonly<KbdSlots> & KbdSlots>;
|
|
@@ -10346,7 +8417,7 @@ export declare interface KbdSlots {
|
|
|
10346
8417
|
icon?: (params?: object) => any;
|
|
10347
8418
|
}
|
|
10348
8419
|
|
|
10349
|
-
export declare const Label:
|
|
8420
|
+
export declare const Label: __VLS_WithTemplateSlots_50<DefineComponent<LabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<LabelProps> & Readonly<{}>, {
|
|
10350
8421
|
size: "sm" | "md";
|
|
10351
8422
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLabelElement>, Readonly<LabelSlots> & LabelSlots>;
|
|
10352
8423
|
|
|
@@ -10431,7 +8502,7 @@ export declare interface LabelSlots {
|
|
|
10431
8502
|
description?: (params?: object) => never;
|
|
10432
8503
|
}
|
|
10433
8504
|
|
|
10434
|
-
export declare const Link:
|
|
8505
|
+
export declare const Link: __VLS_WithTemplateSlots_51<DefineComponent<LinkProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
10435
8506
|
click: (event: Event) => any;
|
|
10436
8507
|
}, string, PublicProps, Readonly<LinkProps> & Readonly<{
|
|
10437
8508
|
onClick?: ((event: Event) => any) | undefined;
|
|
@@ -10503,7 +8574,7 @@ export declare const LinkStyles: readonly ["body", "overline", "caption", "label
|
|
|
10503
8574
|
*/
|
|
10504
8575
|
export declare type LocalColorFormat = 'hex' | 'hex8' | 'hsl' | 'hsv' | 'hwb' | 'rgb';
|
|
10505
8576
|
|
|
10506
|
-
export declare const Menu:
|
|
8577
|
+
export declare const Menu: __VLS_WithTemplateSlots_52<DefineComponent<MenuProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
10507
8578
|
select: (value: {
|
|
10508
8579
|
item: MenuItemData;
|
|
10509
8580
|
selectedKeys: MenuSelectedKeysType;
|
|
@@ -10670,7 +8741,7 @@ export declare type MenuGap = (typeof MenuGaps)[number];
|
|
|
10670
8741
|
/** Available gap options for the Menu component */
|
|
10671
8742
|
export declare const MenuGaps: readonly ["sm", "md", "lg", "none"];
|
|
10672
8743
|
|
|
10673
|
-
export declare const MenuItem:
|
|
8744
|
+
export declare const MenuItem: __VLS_WithTemplateSlots_54<DefineComponent<MenuItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
10674
8745
|
click: (...args: any[]) => void;
|
|
10675
8746
|
keyup: (...args: any[]) => void;
|
|
10676
8747
|
}, string, PublicProps, Readonly<MenuItemProps> & Readonly<{
|
|
@@ -10687,7 +8758,7 @@ unFocusable: boolean;
|
|
|
10687
8758
|
leadingCenter: boolean;
|
|
10688
8759
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<MenuItemSlots> & MenuItemSlots>;
|
|
10689
8760
|
|
|
10690
|
-
export declare const MenuItemContent:
|
|
8761
|
+
export declare const MenuItemContent: __VLS_WithTemplateSlots_55<DefineComponent<MenuItemContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<MenuItemContentProps> & Readonly<{}>, {
|
|
10691
8762
|
disabled: boolean;
|
|
10692
8763
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<MenuItemContentSlots> & MenuItemContentSlots>;
|
|
10693
8764
|
|
|
@@ -10946,7 +9017,7 @@ export declare type MenuItemType = SubMenuProps & {
|
|
|
10946
9017
|
key: string | number;
|
|
10947
9018
|
};
|
|
10948
9019
|
|
|
10949
|
-
export declare const MenuItemWrapper:
|
|
9020
|
+
export declare const MenuItemWrapper: __VLS_WithTemplateSlots_53<DefineComponent<MenuItemWrapperProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<MenuItemWrapperProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<SubMenuSlots> & SubMenuSlots>;
|
|
10950
9021
|
|
|
10951
9022
|
export declare interface MenuItemWrapperProps {
|
|
10952
9023
|
/** The submenu item to render */
|
|
@@ -11130,7 +9201,7 @@ export declare interface MenuSlots {
|
|
|
11130
9201
|
}) => never;
|
|
11131
9202
|
}
|
|
11132
9203
|
|
|
11133
|
-
export declare const Modal:
|
|
9204
|
+
export declare const Modal: __VLS_WithTemplateSlots_56<DefineComponent<ModalProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
11134
9205
|
cancel: (event?: PointerEvent | undefined) => any;
|
|
11135
9206
|
close: () => any;
|
|
11136
9207
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
@@ -11275,7 +9346,7 @@ export declare const ModalSizes: readonly ["sm", "md", "lg"];
|
|
|
11275
9346
|
*/
|
|
11276
9347
|
export declare type ModalSlots = DialogSlots;
|
|
11277
9348
|
|
|
11278
|
-
export declare const ModalTitle:
|
|
9349
|
+
export declare const ModalTitle: __VLS_WithTemplateSlots_57<DefineComponent<DialogTitleProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DialogTitleProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<DialogTitleSlots> & DialogTitleSlots>;
|
|
11279
9350
|
|
|
11280
9351
|
export declare type ModalTitleProps = DialogTitleProps;
|
|
11281
9352
|
|
|
@@ -11323,7 +9394,7 @@ export declare const PAGE_INDICATOR_PREV_DEFAULT_PROPS: {
|
|
|
11323
9394
|
readonly icon: "tabler:chevron-left";
|
|
11324
9395
|
};
|
|
11325
9396
|
|
|
11326
|
-
export declare const PageIndicator:
|
|
9397
|
+
export declare const PageIndicator: __VLS_WithTemplateSlots_58<DefineComponent<PageIndicatorProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
11327
9398
|
change: (value: number) => any;
|
|
11328
9399
|
"update:modelValue": (value: number) => any;
|
|
11329
9400
|
next: (e: PointerEvent) => any;
|
|
@@ -11398,7 +9469,7 @@ export declare interface PageIndicatorSlots {
|
|
|
11398
9469
|
}) => never;
|
|
11399
9470
|
}
|
|
11400
9471
|
|
|
11401
|
-
export declare const Pagination:
|
|
9472
|
+
export declare const Pagination: __VLS_WithTemplateSlots_59<DefineComponent<PaginationProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
11402
9473
|
"update:pageSize": (value: number) => any;
|
|
11403
9474
|
"update:page": (value: number) => any;
|
|
11404
9475
|
}, string, PublicProps, Readonly<PaginationProps> & Readonly<{
|
|
@@ -11694,7 +9765,7 @@ declare type PointerDownOutsideEvent = CustomEvent<{
|
|
|
11694
9765
|
originalEvent: PointerEvent;
|
|
11695
9766
|
}>;
|
|
11696
9767
|
|
|
11697
|
-
export declare const Popover:
|
|
9768
|
+
export declare const Popover: __VLS_WithTemplateSlots_60<DefineComponent<PopoverProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
11698
9769
|
openAutoFocus: (event: Event) => any;
|
|
11699
9770
|
closeAutoFocus: (event: Event) => any;
|
|
11700
9771
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
@@ -12159,7 +10230,7 @@ declare interface PrimitiveProps {
|
|
|
12159
10230
|
as?: AsTag | Component;
|
|
12160
10231
|
}
|
|
12161
10232
|
|
|
12162
|
-
export declare const Progress:
|
|
10233
|
+
export declare const Progress: __VLS_WithTemplateSlots_61<DefineComponent<ProgressProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ProgressProps> & Readonly<{}>, {
|
|
12163
10234
|
size: "sm" | "md" | "lg" | "2xsm" | "xsm" | "3xsm";
|
|
12164
10235
|
type: "circle" | "line";
|
|
12165
10236
|
color: string;
|
|
@@ -12452,7 +10523,7 @@ export declare const RADIO_GROUP_DEFAULT_PROPS: {
|
|
|
12452
10523
|
readonly disabled: undefined;
|
|
12453
10524
|
};
|
|
12454
10525
|
|
|
12455
|
-
export declare const RadioGroup:
|
|
10526
|
+
export declare const RadioGroup: __VLS_WithTemplateSlots_62<DefineComponent<RadioGroupProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
12456
10527
|
change: (payload: string) => any;
|
|
12457
10528
|
"update:modelValue": (payload: string) => any;
|
|
12458
10529
|
}, string, PublicProps, Readonly<RadioGroupProps> & Readonly<{
|
|
@@ -12474,7 +10545,7 @@ export declare interface RadioGroupEmits extends RadioGroupRootEmits {
|
|
|
12474
10545
|
change: RadioGroupRootEmits['update:modelValue'];
|
|
12475
10546
|
}
|
|
12476
10547
|
|
|
12477
|
-
export declare const RadioGroupItem:
|
|
10548
|
+
export declare const RadioGroupItem: __VLS_WithTemplateSlots_63<DefineComponent<RadioGroupItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
12478
10549
|
blur: (e: InputEvent) => any;
|
|
12479
10550
|
focus: (e: InputEvent) => any;
|
|
12480
10551
|
"update:modelValue": (payload: string) => any;
|
|
@@ -12586,7 +10657,7 @@ declare interface RadioProps extends PrimitiveProps, FormFieldProps {
|
|
|
12586
10657
|
checked?: boolean;
|
|
12587
10658
|
}
|
|
12588
10659
|
|
|
12589
|
-
export declare const Rate:
|
|
10660
|
+
export declare const Rate: __VLS_WithTemplateSlots_64<DefineComponent<RateProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
12590
10661
|
change: (value: number) => any;
|
|
12591
10662
|
"update:modelValue": (value: number) => any;
|
|
12592
10663
|
hoverChange: (value: number) => any;
|
|
@@ -12953,7 +11024,7 @@ declare interface ScrollAreaViewportProps extends PrimitiveProps {
|
|
|
12953
11024
|
nonce?: string;
|
|
12954
11025
|
}
|
|
12955
11026
|
|
|
12956
|
-
export declare const ScrollContainer:
|
|
11027
|
+
export declare const ScrollContainer: __VLS_WithTemplateSlots_65<DefineComponent<ScrollContainerProps, {
|
|
12957
11028
|
container: Ref<any, any>;
|
|
12958
11029
|
wrap: Ref<any, any>;
|
|
12959
11030
|
root: Ref<any, any>;
|
|
@@ -13220,7 +11291,7 @@ export declare const ScrollContainerTypes: readonly ["auto", "always", "scroll",
|
|
|
13220
11291
|
|
|
13221
11292
|
declare type ScrollType = 'auto' | 'always' | 'scroll' | 'hover';
|
|
13222
11293
|
|
|
13223
|
-
export declare const Segmented:
|
|
11294
|
+
export declare const Segmented: __VLS_WithTemplateSlots_66<DefineComponent<SegmentedProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
13224
11295
|
change: (event?: string | number | undefined) => any;
|
|
13225
11296
|
"update:modelValue": (event?: string | number | undefined) => any;
|
|
13226
11297
|
entryFocus: (event: Event) => any;
|
|
@@ -13342,7 +11413,7 @@ export declare interface SegmentedSlots {
|
|
|
13342
11413
|
badgeText: (data: SegmentedSlotProps) => never;
|
|
13343
11414
|
}
|
|
13344
11415
|
|
|
13345
|
-
export declare const Select:
|
|
11416
|
+
export declare const Select: __VLS_WithTemplateSlots_67<DefineComponent<SelectProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
13346
11417
|
select: (value: string, selected: boolean) => any;
|
|
13347
11418
|
change: (value: AcceptableValue) => any;
|
|
13348
11419
|
"update:modelValue": (value: AcceptableValue) => any;
|
|
@@ -13526,7 +11597,7 @@ export declare interface SelectItemSlotProps {
|
|
|
13526
11597
|
option: SelectOptionItem;
|
|
13527
11598
|
}
|
|
13528
11599
|
|
|
13529
|
-
export declare const SelectLabel:
|
|
11600
|
+
export declare const SelectLabel: __VLS_WithTemplateSlots_68<DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>, {
|
|
13530
11601
|
default?(_: {}): any;
|
|
13531
11602
|
}>;
|
|
13532
11603
|
|
|
@@ -13876,7 +11947,7 @@ declare interface SelectTriggerTagSlotProps extends SelectTriggerDefSlotProps {
|
|
|
13876
11947
|
*/
|
|
13877
11948
|
export declare const setDefaultDir: (dir: Direction | undefined) => void;
|
|
13878
11949
|
|
|
13879
|
-
export declare const Shortcut:
|
|
11950
|
+
export declare const Shortcut: __VLS_WithTemplateSlots_69<DefineComponent<ShortcutProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ShortcutProps> & Readonly<{}>, {
|
|
13880
11951
|
plus: boolean;
|
|
13881
11952
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, Readonly<ShortcutSlots> & ShortcutSlots>;
|
|
13882
11953
|
|
|
@@ -13997,7 +12068,7 @@ export declare type SkeletonType = (typeof SkeletonTypes)[number];
|
|
|
13997
12068
|
*/
|
|
13998
12069
|
export declare const SkeletonTypes: readonly ["avatar", "input", "button", "paragraph", "headline", "list", "base", "custom", "custom-items"];
|
|
13999
12070
|
|
|
14000
|
-
export declare const Step:
|
|
12071
|
+
export declare const Step: __VLS_WithTemplateSlots_71<DefineComponent<StepItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<StepItemProps> & Readonly<{}>, {
|
|
14001
12072
|
disabled: boolean;
|
|
14002
12073
|
status: "error" | "current" | "completed" | "upcoming";
|
|
14003
12074
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<StepItemSlots> & StepItemSlots>;
|
|
@@ -14190,7 +12261,7 @@ export declare const StepperSizes: readonly ["sm", "md", "lg"];
|
|
|
14190
12261
|
*/
|
|
14191
12262
|
export declare const stepPrefix: string;
|
|
14192
12263
|
|
|
14193
|
-
export declare const Steps:
|
|
12264
|
+
export declare const Steps: __VLS_WithTemplateSlots_70<DefineComponent<StepsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
14194
12265
|
change: (value?: number | undefined) => any;
|
|
14195
12266
|
"update:modelValue": (value?: number | undefined) => any;
|
|
14196
12267
|
}, string, PublicProps, Readonly<StepsProps> & Readonly<{
|
|
@@ -14303,7 +12374,7 @@ export declare const SUB_MENU_DEFAULT_PROPS: {
|
|
|
14303
12374
|
readonly branchIcon: "tabler:chevron-right";
|
|
14304
12375
|
};
|
|
14305
12376
|
|
|
14306
|
-
export declare const SubMenu:
|
|
12377
|
+
export declare const SubMenu: __VLS_WithTemplateSlots_72<DefineComponent<SubMenuProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
14307
12378
|
"update:open": (value: boolean) => any;
|
|
14308
12379
|
}, string, PublicProps, Readonly<SubMenuProps> & Readonly<{
|
|
14309
12380
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
@@ -14376,7 +12447,7 @@ export declare interface SubMenuSlots extends MenuItemSlots {
|
|
|
14376
12447
|
}) => never;
|
|
14377
12448
|
}
|
|
14378
12449
|
|
|
14379
|
-
export declare const Switch:
|
|
12450
|
+
export declare const Switch: __VLS_WithTemplateSlots_73<DefineComponent<SwitchProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
14380
12451
|
blur: (e: InputEvent) => any;
|
|
14381
12452
|
change: (value: boolean) => any;
|
|
14382
12453
|
focus: (e: InputEvent) => any;
|
|
@@ -14494,11 +12565,11 @@ export declare interface SwitchSlots {
|
|
|
14494
12565
|
}) => never;
|
|
14495
12566
|
}
|
|
14496
12567
|
|
|
14497
|
-
export declare const TabContent:
|
|
12568
|
+
export declare const TabContent: __VLS_WithTemplateSlots_84<DefineComponent<TabsContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TabsContentProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
14498
12569
|
default?(_: {}): any;
|
|
14499
12570
|
}>;
|
|
14500
12571
|
|
|
14501
|
-
export declare const Table:
|
|
12572
|
+
export declare const Table: __VLS_WithTemplateSlots_74<DefineComponent<TableProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TableProps> & Readonly<{}>, {
|
|
14502
12573
|
size: "lg" | "xlg";
|
|
14503
12574
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableElement>, {
|
|
14504
12575
|
default?(_: {}): any;
|
|
@@ -14536,7 +12607,7 @@ export declare type TableSize = (typeof TableSizes)[number];
|
|
|
14536
12607
|
*/
|
|
14537
12608
|
export declare const TableSizes: readonly ["lg", "xlg"];
|
|
14538
12609
|
|
|
14539
|
-
export declare const TabList:
|
|
12610
|
+
export declare const TabList: __VLS_WithTemplateSlots_82<DefineComponent<TabListProps, {
|
|
14540
12611
|
measure: () => void;
|
|
14541
12612
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TabListProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
14542
12613
|
leftScrollRef: ({
|
|
@@ -15001,7 +13072,7 @@ export declare interface TabListSlots {
|
|
|
15001
13072
|
default?: (data?: object) => never;
|
|
15002
13073
|
}
|
|
15003
13074
|
|
|
15004
|
-
export declare const Tabs:
|
|
13075
|
+
export declare const Tabs: __VLS_WithTemplateSlots_81<DefineComponent<TabsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
15005
13076
|
change: (payload: string | number) => any;
|
|
15006
13077
|
"update:modelValue": (payload: string | number) => any;
|
|
15007
13078
|
dragStart: (event: SortableEvent, sortable: pantographSortable) => any;
|
|
@@ -15148,7 +13219,7 @@ declare interface TabsTriggerProps extends PrimitiveProps {
|
|
|
15148
13219
|
disabled?: boolean;
|
|
15149
13220
|
}
|
|
15150
13221
|
|
|
15151
|
-
export declare const TabTrigger:
|
|
13222
|
+
export declare const TabTrigger: __VLS_WithTemplateSlots_83<DefineComponent<TabTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TabTriggerProps> & Readonly<{}>, {
|
|
15152
13223
|
loading: boolean;
|
|
15153
13224
|
draggable: boolean;
|
|
15154
13225
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<TabTriggerSlots> & TabTriggerSlots>;
|
|
@@ -15197,7 +13268,7 @@ export declare interface TabTriggerSlots {
|
|
|
15197
13268
|
badgeIcon?: (data?: object) => never;
|
|
15198
13269
|
}
|
|
15199
13270
|
|
|
15200
|
-
export declare const TBody:
|
|
13271
|
+
export declare const TBody: __VLS_WithTemplateSlots_78<DefineComponent<TBodyProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TBodyProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableSectionElement>, {
|
|
15201
13272
|
default?(_: {}): any;
|
|
15202
13273
|
}>;
|
|
15203
13274
|
|
|
@@ -15209,7 +13280,7 @@ export declare interface TBodyProps {
|
|
|
15209
13280
|
class?: ClassValue;
|
|
15210
13281
|
}
|
|
15211
13282
|
|
|
15212
|
-
export declare const Td:
|
|
13283
|
+
export declare const Td: __VLS_WithTemplateSlots_76<DefineComponent<TdProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TdProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableCellElement>, Readonly<TdSlots> & TdSlots>;
|
|
15213
13284
|
|
|
15214
13285
|
/**
|
|
15215
13286
|
* Props for the Td component (table data cell)
|
|
@@ -15371,7 +13442,7 @@ export declare type TextareaStatus = (typeof TextareaStatuses)[number];
|
|
|
15371
13442
|
*/
|
|
15372
13443
|
export declare const TextareaStatuses: readonly ["error", "warning", "success", "none"];
|
|
15373
13444
|
|
|
15374
|
-
export declare const TFoot:
|
|
13445
|
+
export declare const TFoot: __VLS_WithTemplateSlots_80<DefineComponent<TFootProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TFootProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableSectionElement>, {
|
|
15375
13446
|
default?(_: {}): any;
|
|
15376
13447
|
}>;
|
|
15377
13448
|
|
|
@@ -15385,9 +13456,9 @@ export declare interface TFootProps {
|
|
|
15385
13456
|
sticky?: boolean;
|
|
15386
13457
|
}
|
|
15387
13458
|
|
|
15388
|
-
export declare const Th:
|
|
13459
|
+
export declare const Th: __VLS_WithTemplateSlots_75<DefineComponent<ThProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ThProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableCellElement>, Readonly<ThSlots> & ThSlots>;
|
|
15389
13460
|
|
|
15390
|
-
export declare const THead:
|
|
13461
|
+
export declare const THead: __VLS_WithTemplateSlots_79<DefineComponent<THeadProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<THeadProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableSectionElement>, {
|
|
15391
13462
|
default?(_: {}): any;
|
|
15392
13463
|
}>;
|
|
15393
13464
|
|
|
@@ -15431,7 +13502,7 @@ export declare interface ThSlots {
|
|
|
15431
13502
|
after: (params?: object) => never;
|
|
15432
13503
|
}
|
|
15433
13504
|
|
|
15434
|
-
export declare const Toast:
|
|
13505
|
+
export declare const Toast: __VLS_WithTemplateSlots_85<DefineComponent<ToastProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
15435
13506
|
cancel: (e: PointerEvent) => any;
|
|
15436
13507
|
ok: (e: PointerEvent) => any;
|
|
15437
13508
|
closeNotification: (e: PointerEvent) => any;
|
|
@@ -15589,7 +13660,7 @@ export declare type ToastType = (typeof ToastTypes)[number];
|
|
|
15589
13660
|
*/
|
|
15590
13661
|
export declare const ToastTypes: readonly ["info", "success", "warning", "error"];
|
|
15591
13662
|
|
|
15592
|
-
export declare const Tooltip:
|
|
13663
|
+
export declare const Tooltip: __VLS_WithTemplateSlots_86<DefineComponent<TooltipProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
15593
13664
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
15594
13665
|
pointerDownOutside: (event: Event) => any;
|
|
15595
13666
|
"update:open": (value: boolean) => any;
|
|
@@ -15722,7 +13793,7 @@ export declare interface TooltipProps extends TooltipRootProps, TooltipProviderP
|
|
|
15722
13793
|
wrapperCls?: string;
|
|
15723
13794
|
}
|
|
15724
13795
|
|
|
15725
|
-
export declare const TooltipProvider:
|
|
13796
|
+
export declare const TooltipProvider: __VLS_WithTemplateSlots_87<DefineComponent<TooltipProviderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
15726
13797
|
default?(_: {}): any;
|
|
15727
13798
|
}>;
|
|
15728
13799
|
|
|
@@ -15878,11 +13949,11 @@ export declare interface TooltipSlots {
|
|
|
15878
13949
|
|
|
15879
13950
|
declare interface TooltipTriggerProps extends PopperAnchorProps {}
|
|
15880
13951
|
|
|
15881
|
-
export declare const Tr:
|
|
13952
|
+
export declare const Tr: __VLS_WithTemplateSlots_77<DefineComponent<TrProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TrProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableRowElement>, {
|
|
15882
13953
|
default?(_: {}): any;
|
|
15883
13954
|
}>;
|
|
15884
13955
|
|
|
15885
|
-
export declare const Tree:
|
|
13956
|
+
export declare const Tree: __VLS_WithTemplateSlots_88<DefineComponent<TreeProps, {
|
|
15886
13957
|
disabled: ComputedRef<boolean | undefined>;
|
|
15887
13958
|
props: TreeProps;
|
|
15888
13959
|
dir: ComputedRef<Direction | undefined>;
|
|
@@ -16115,7 +14186,7 @@ export declare type TreeItem = object & TreeFlattenItem & {
|
|
|
16115
14186
|
_hidden?: boolean;
|
|
16116
14187
|
};
|
|
16117
14188
|
|
|
16118
|
-
export declare const TreeNode:
|
|
14189
|
+
export declare const TreeNode: __VLS_WithTemplateSlots_89<DefineComponent<TreeNodeProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TreeNodeProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, Readonly<TreeNodeSlots> & TreeNodeSlots>;
|
|
16119
14190
|
|
|
16120
14191
|
/**
|
|
16121
14192
|
* Props for the TreeNode component
|
|
@@ -16330,7 +14401,7 @@ export declare interface TrProps {
|
|
|
16330
14401
|
onMouseleave?: (event: MouseEvent) => void;
|
|
16331
14402
|
}
|
|
16332
14403
|
|
|
16333
|
-
export declare const Upload:
|
|
14404
|
+
export declare const Upload: __VLS_WithTemplateSlots_90<DefineComponent<UploadProps, {
|
|
16334
14405
|
listRef: Ref<any, any>;
|
|
16335
14406
|
progressSize: ComputedRef<any>;
|
|
16336
14407
|
resetRequest: ComputedRef<any>;
|
|
@@ -16724,7 +14795,7 @@ export declare interface UploadItemCustomActions {
|
|
|
16724
14795
|
remove?: boolean;
|
|
16725
14796
|
}
|
|
16726
14797
|
|
|
16727
|
-
export declare const UploadList:
|
|
14798
|
+
export declare const UploadList: __VLS_WithTemplateSlots_91<DefineComponent<Partial<UploadProps>, {
|
|
16728
14799
|
addFiles: (files: File[]) => void;
|
|
16729
14800
|
fileList: Ref<UploadFile[], UploadFile[]>;
|
|
16730
14801
|
getAccept: ComputedRef<string | undefined>;
|
|
@@ -16895,7 +14966,7 @@ export declare type UploadStatus = (typeof UploadStatuses)[number];
|
|
|
16895
14966
|
*/
|
|
16896
14967
|
export declare const UploadStatuses: readonly ["error", "paused", "done", "uploading", "waiting"];
|
|
16897
14968
|
|
|
16898
|
-
export declare const UploadTrigger:
|
|
14969
|
+
export declare const UploadTrigger: __VLS_WithTemplateSlots_92<DefineComponent<UploadBaseProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
16899
14970
|
addFiles: (files: File[]) => any;
|
|
16900
14971
|
}, string, PublicProps, Readonly<UploadBaseProps> & Readonly<{
|
|
16901
14972
|
onAddFiles?: ((files: File[]) => any) | undefined;
|
|
@@ -17158,503 +15229,503 @@ declare module 'vue' {
|
|
|
17158
15229
|
|
|
17159
15230
|
declare module 'vue' {
|
|
17160
15231
|
interface GlobalComponents {
|
|
17161
|
-
|
|
15232
|
+
Button: DefineComponent<ButtonProps, ButtonSlots>;
|
|
17162
15233
|
}
|
|
17163
15234
|
}
|
|
17164
15235
|
|
|
17165
15236
|
|
|
17166
15237
|
declare module 'vue' {
|
|
17167
15238
|
interface GlobalComponents {
|
|
17168
|
-
|
|
15239
|
+
CheckboxGroup: DefineComponent<CheckboxGroupProps, Record<string, any>, CheckboxGroupEmits>;
|
|
17169
15240
|
}
|
|
17170
15241
|
}
|
|
17171
15242
|
|
|
17172
15243
|
|
|
17173
15244
|
declare module 'vue' {
|
|
17174
15245
|
interface GlobalComponents {
|
|
17175
|
-
|
|
15246
|
+
PinInput: DefineComponent<PinInputProps, undefined, PinInputEmits>;
|
|
17176
15247
|
}
|
|
17177
15248
|
}
|
|
17178
15249
|
|
|
17179
15250
|
|
|
17180
15251
|
declare module 'vue' {
|
|
17181
15252
|
interface GlobalComponents {
|
|
17182
|
-
|
|
15253
|
+
FormValidation: DefineComponent<FormValidationProps>;
|
|
17183
15254
|
}
|
|
17184
15255
|
}
|
|
17185
15256
|
|
|
17186
15257
|
|
|
17187
15258
|
declare module 'vue' {
|
|
17188
15259
|
interface GlobalComponents {
|
|
17189
|
-
|
|
15260
|
+
ColorSwatchGroup: DefineComponent<ColorSwatchGroupProps, ColorSwatchGroupSlots, ColorSwatchGroupEmits>;
|
|
17190
15261
|
}
|
|
17191
15262
|
}
|
|
17192
15263
|
|
|
17193
15264
|
|
|
17194
15265
|
declare module 'vue' {
|
|
17195
15266
|
interface GlobalComponents {
|
|
17196
|
-
|
|
15267
|
+
Popover: DefineComponent<PopoverProps, PopoverSlots, PopoverEmits>;
|
|
17197
15268
|
}
|
|
17198
15269
|
}
|
|
17199
15270
|
|
|
17200
15271
|
|
|
17201
15272
|
declare module 'vue' {
|
|
17202
15273
|
interface GlobalComponents {
|
|
17203
|
-
|
|
15274
|
+
DropZone: DefineComponent<DropZoneProps, DropZoneSlots, DropZoneEmits>;
|
|
17204
15275
|
}
|
|
17205
15276
|
}
|
|
17206
15277
|
|
|
17207
15278
|
|
|
17208
15279
|
declare module 'vue' {
|
|
17209
15280
|
interface GlobalComponents {
|
|
17210
|
-
|
|
15281
|
+
Menu: DefineComponent<MenuProps, MenuSlots, MenuEmits>;
|
|
15282
|
+
MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
|
|
17211
15283
|
}
|
|
17212
15284
|
}
|
|
17213
15285
|
|
|
17214
15286
|
|
|
17215
15287
|
declare module 'vue' {
|
|
17216
15288
|
interface GlobalComponents {
|
|
17217
|
-
|
|
15289
|
+
AlertDialog: DefineComponent<AlertDialogProps, AlertDialogSlots, AlertDialogEmits>;
|
|
17218
15290
|
}
|
|
17219
15291
|
}
|
|
17220
15292
|
|
|
17221
15293
|
|
|
17222
15294
|
declare module 'vue' {
|
|
17223
15295
|
interface GlobalComponents {
|
|
17224
|
-
|
|
15296
|
+
Shortcut: DefineComponent<ShortcutProps, ShortcutSlots>;
|
|
17225
15297
|
}
|
|
17226
15298
|
}
|
|
17227
15299
|
|
|
17228
15300
|
|
|
17229
15301
|
declare module 'vue' {
|
|
17230
15302
|
interface GlobalComponents {
|
|
17231
|
-
|
|
15303
|
+
Image: DefineComponent<ImageProps, ImageSlots>;
|
|
17232
15304
|
}
|
|
17233
15305
|
}
|
|
17234
15306
|
|
|
17235
15307
|
|
|
17236
15308
|
declare module 'vue' {
|
|
17237
15309
|
interface GlobalComponents {
|
|
17238
|
-
|
|
15310
|
+
Card: DefineComponent<CardProps, CardSlots>;
|
|
17239
15311
|
}
|
|
17240
15312
|
}
|
|
17241
15313
|
|
|
17242
15314
|
|
|
17243
15315
|
declare module 'vue' {
|
|
17244
15316
|
interface GlobalComponents {
|
|
17245
|
-
|
|
15317
|
+
AvatarGroup: DefineComponent<AvatarGroupProps, AvatarGroupSlots>;
|
|
17246
15318
|
}
|
|
17247
15319
|
}
|
|
17248
15320
|
|
|
17249
15321
|
|
|
17250
15322
|
declare module 'vue' {
|
|
17251
15323
|
interface GlobalComponents {
|
|
17252
|
-
|
|
15324
|
+
Combobox: DefineComponent<ComboboxProps, ComboboxSlots, ComboboxEmits>;
|
|
15325
|
+
ComboboxInput: DefineComponent<ComboboxInputProps>;
|
|
15326
|
+
ComboboxOption: DefineComponent;
|
|
17253
15327
|
}
|
|
17254
15328
|
}
|
|
17255
15329
|
|
|
17256
15330
|
|
|
17257
15331
|
declare module 'vue' {
|
|
17258
15332
|
interface GlobalComponents {
|
|
17259
|
-
|
|
15333
|
+
IconButton: DefineComponent<IconButtonProps, IconButtonSlots>;
|
|
17260
15334
|
}
|
|
17261
15335
|
}
|
|
17262
15336
|
|
|
17263
15337
|
|
|
17264
15338
|
declare module 'vue' {
|
|
17265
15339
|
interface GlobalComponents {
|
|
17266
|
-
|
|
15340
|
+
Kbd: DefineComponent<KbdProps, KbdSlots>;
|
|
17267
15341
|
}
|
|
17268
15342
|
}
|
|
17269
15343
|
|
|
17270
15344
|
|
|
17271
15345
|
declare module 'vue' {
|
|
17272
15346
|
interface GlobalComponents {
|
|
17273
|
-
|
|
15347
|
+
Segmented: DefineComponent<SegmentedProps, SegmentedSlots, SegmentedEmits>;
|
|
17274
15348
|
}
|
|
17275
15349
|
}
|
|
17276
15350
|
|
|
17277
15351
|
|
|
17278
15352
|
declare module 'vue' {
|
|
17279
15353
|
interface GlobalComponents {
|
|
17280
|
-
|
|
17281
|
-
ComboboxInput: DefineComponent<ComboboxInputProps>;
|
|
17282
|
-
ComboboxOption: DefineComponent;
|
|
15354
|
+
SubMenu: DefineComponent<SubMenuProps, SubMenuSlots>;
|
|
17283
15355
|
}
|
|
17284
15356
|
}
|
|
17285
15357
|
|
|
17286
15358
|
|
|
17287
15359
|
declare module 'vue' {
|
|
17288
15360
|
interface GlobalComponents {
|
|
17289
|
-
|
|
15361
|
+
Link: DefineComponent<LinkProps, LinkSlots, LinkEmits>;
|
|
17290
15362
|
}
|
|
17291
15363
|
}
|
|
17292
15364
|
|
|
17293
15365
|
|
|
17294
15366
|
declare module 'vue' {
|
|
17295
15367
|
interface GlobalComponents {
|
|
17296
|
-
|
|
15368
|
+
ScrollContainer: DefineComponent<ScrollContainerProps>;
|
|
17297
15369
|
}
|
|
17298
15370
|
}
|
|
17299
15371
|
|
|
17300
15372
|
|
|
17301
15373
|
declare module 'vue' {
|
|
17302
15374
|
interface GlobalComponents {
|
|
17303
|
-
|
|
15375
|
+
Indicator: DefineComponent<IndicatorProps>;
|
|
17304
15376
|
}
|
|
17305
15377
|
}
|
|
17306
15378
|
|
|
17307
15379
|
|
|
17308
15380
|
declare module 'vue' {
|
|
17309
15381
|
interface GlobalComponents {
|
|
17310
|
-
|
|
15382
|
+
Textarea: DefineComponent<TextareaProps, Record<string, any>, TextareaEmits>;
|
|
17311
15383
|
}
|
|
17312
15384
|
}
|
|
17313
15385
|
|
|
17314
15386
|
|
|
17315
15387
|
declare module 'vue' {
|
|
17316
15388
|
interface GlobalComponents {
|
|
17317
|
-
|
|
15389
|
+
Steps: DefineComponent<StepsProps, StepsSlots, StepsEmits>;
|
|
15390
|
+
Step: DefineComponent<StepItemProps, StepItemSlots>;
|
|
17318
15391
|
}
|
|
17319
15392
|
}
|
|
17320
15393
|
|
|
17321
15394
|
|
|
17322
15395
|
declare module 'vue' {
|
|
17323
15396
|
interface GlobalComponents {
|
|
17324
|
-
|
|
15397
|
+
InputGroup: DefineComponent<InputGroupProps>;
|
|
17325
15398
|
}
|
|
17326
15399
|
}
|
|
17327
15400
|
|
|
17328
15401
|
|
|
17329
15402
|
declare module 'vue' {
|
|
17330
15403
|
interface GlobalComponents {
|
|
17331
|
-
|
|
15404
|
+
Select: DefineComponent<SelectProps, SelectSlots, SelectEmits>;
|
|
15405
|
+
SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
|
|
15406
|
+
SelectLabel: DefineComponent;
|
|
17332
15407
|
}
|
|
17333
15408
|
}
|
|
17334
15409
|
|
|
17335
15410
|
|
|
17336
15411
|
declare module 'vue' {
|
|
17337
15412
|
interface GlobalComponents {
|
|
17338
|
-
|
|
15413
|
+
ChipGroup: DefineComponent<ChipGroupProps, ChipGroupSlots, ChipGroupEmits>;
|
|
17339
15414
|
}
|
|
17340
15415
|
}
|
|
17341
15416
|
|
|
17342
15417
|
|
|
17343
15418
|
declare module 'vue' {
|
|
17344
15419
|
interface GlobalComponents {
|
|
17345
|
-
|
|
15420
|
+
MenuItem: DefineComponent<MenuItemProps, MenuItemSlots>;
|
|
17346
15421
|
}
|
|
17347
15422
|
}
|
|
17348
15423
|
|
|
17349
15424
|
|
|
17350
15425
|
declare module 'vue' {
|
|
17351
15426
|
interface GlobalComponents {
|
|
17352
|
-
|
|
15427
|
+
GraphicalObject: DefineComponent<GraphicalObjectProps, GraphicalObjectSlots>;
|
|
17353
15428
|
}
|
|
17354
15429
|
}
|
|
17355
15430
|
|
|
17356
15431
|
|
|
17357
15432
|
declare module 'vue' {
|
|
17358
15433
|
interface GlobalComponents {
|
|
17359
|
-
|
|
15434
|
+
Chip: DefineComponent<ChipProps, ChipSlots, ChipEmits>;
|
|
17360
15435
|
}
|
|
17361
15436
|
}
|
|
17362
15437
|
|
|
17363
15438
|
|
|
17364
15439
|
declare module 'vue' {
|
|
17365
15440
|
interface GlobalComponents {
|
|
17366
|
-
|
|
15441
|
+
ConfigProvider: DefineComponent<ConfigProviderProps, ConfigProviderSlots>;
|
|
17367
15442
|
}
|
|
17368
15443
|
}
|
|
17369
15444
|
|
|
17370
15445
|
|
|
17371
15446
|
declare module 'vue' {
|
|
17372
15447
|
interface GlobalComponents {
|
|
17373
|
-
|
|
15448
|
+
Pagination: DefineComponent<PaginationProps, Record<string, any>, PaginationEmits>;
|
|
17374
15449
|
}
|
|
17375
15450
|
}
|
|
17376
15451
|
|
|
17377
15452
|
|
|
17378
15453
|
declare module 'vue' {
|
|
17379
15454
|
interface GlobalComponents {
|
|
17380
|
-
|
|
15455
|
+
IndentLevel: DefineComponent<IndentLevelProps>;
|
|
17381
15456
|
}
|
|
17382
15457
|
}
|
|
17383
15458
|
|
|
17384
15459
|
|
|
17385
15460
|
declare module 'vue' {
|
|
17386
15461
|
interface GlobalComponents {
|
|
17387
|
-
|
|
15462
|
+
Input: DefineComponent<InputProps, InputSlots, InputEmits>;
|
|
17388
15463
|
}
|
|
17389
15464
|
}
|
|
17390
15465
|
|
|
17391
15466
|
|
|
17392
15467
|
declare module 'vue' {
|
|
17393
15468
|
interface GlobalComponents {
|
|
17394
|
-
|
|
15469
|
+
Blanket: DefineComponent<BlanketProps>;
|
|
17395
15470
|
}
|
|
17396
15471
|
}
|
|
17397
15472
|
|
|
17398
15473
|
|
|
17399
15474
|
declare module 'vue' {
|
|
17400
15475
|
interface GlobalComponents {
|
|
17401
|
-
|
|
17402
|
-
DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
|
|
15476
|
+
Badge: DefineComponent<BadgeProps, BadgeSlots>;
|
|
17403
15477
|
}
|
|
17404
15478
|
}
|
|
17405
15479
|
|
|
17406
15480
|
|
|
17407
15481
|
declare module 'vue' {
|
|
17408
15482
|
interface GlobalComponents {
|
|
17409
|
-
|
|
15483
|
+
Dialog: DefineComponent<DialogProps, DialogSlots, DialogEmits>;
|
|
15484
|
+
DialogTitle: DefineComponent<DialogTitleProps, DialogTitleSlots>;
|
|
17410
15485
|
}
|
|
17411
15486
|
}
|
|
17412
15487
|
|
|
17413
15488
|
|
|
17414
15489
|
declare module 'vue' {
|
|
17415
15490
|
interface GlobalComponents {
|
|
17416
|
-
|
|
17417
|
-
|
|
15491
|
+
RadioGroup: DefineComponent<RadioGroupProps, Record<string, any>, RadioGroupEmits>;
|
|
15492
|
+
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
17418
15493
|
}
|
|
17419
15494
|
}
|
|
17420
15495
|
|
|
17421
15496
|
|
|
17422
15497
|
declare module 'vue' {
|
|
17423
15498
|
interface GlobalComponents {
|
|
17424
|
-
|
|
15499
|
+
Table: DefineComponent<TableProps, Record<string, any>, Record<string, any>>;
|
|
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>;
|
|
17425
15506
|
}
|
|
17426
15507
|
}
|
|
17427
15508
|
|
|
17428
15509
|
|
|
17429
15510
|
declare module 'vue' {
|
|
17430
15511
|
interface GlobalComponents {
|
|
17431
|
-
|
|
15512
|
+
Switch: DefineComponent<SwitchProps, SwitchSlots, SwitchEmits>;
|
|
17432
15513
|
}
|
|
17433
15514
|
}
|
|
17434
15515
|
|
|
17435
15516
|
|
|
17436
|
-
/**
|
|
17437
|
-
* Global component declaration for TypeScript support
|
|
17438
|
-
* Enables <Tooltip> usage in templates without explicit import
|
|
17439
|
-
*/
|
|
17440
15517
|
declare module 'vue' {
|
|
17441
15518
|
interface GlobalComponents {
|
|
17442
|
-
|
|
17443
|
-
TooltipProvider: DefineComponent<TooltipProviderProps>;
|
|
15519
|
+
InputNumber: DefineComponent<InputNumberProps, InputNumberSlots, InputNumberEmits>;
|
|
17444
15520
|
}
|
|
17445
15521
|
}
|
|
17446
15522
|
|
|
17447
15523
|
|
|
17448
15524
|
declare module 'vue' {
|
|
17449
15525
|
interface GlobalComponents {
|
|
17450
|
-
|
|
15526
|
+
Tabs: DefineComponent<TabsProps, Record<string, any>, TabsEmits>;
|
|
15527
|
+
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
15528
|
+
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
15529
|
+
TabContent: DefineComponent;
|
|
17451
15530
|
}
|
|
17452
15531
|
}
|
|
17453
15532
|
|
|
17454
15533
|
|
|
17455
15534
|
declare module 'vue' {
|
|
17456
15535
|
interface GlobalComponents {
|
|
17457
|
-
|
|
17458
|
-
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
15536
|
+
Toast: DefineComponent<ToastProps, ToastSlots, ToastEmits>;
|
|
17459
15537
|
}
|
|
17460
15538
|
}
|
|
17461
15539
|
|
|
17462
15540
|
|
|
17463
15541
|
declare module 'vue' {
|
|
17464
15542
|
interface GlobalComponents {
|
|
17465
|
-
|
|
17466
|
-
MenuItemWrapper: DefineComponent<MenuItemWrapperProps, SubMenuSlots>;
|
|
15543
|
+
ColorPicker: DefineComponent<ColorPickerProps, undefined, ColorPickerEmits>;
|
|
17467
15544
|
}
|
|
17468
15545
|
}
|
|
17469
15546
|
|
|
17470
15547
|
|
|
15548
|
+
/**
|
|
15549
|
+
* Global component declaration for TypeScript support
|
|
15550
|
+
* Enables <Tooltip> usage in templates without explicit import
|
|
15551
|
+
*/
|
|
17471
15552
|
declare module 'vue' {
|
|
17472
15553
|
interface GlobalComponents {
|
|
17473
|
-
|
|
15554
|
+
Tooltip: DefineComponent<TooltipProps, TooltipSlots>;
|
|
15555
|
+
TooltipProvider: DefineComponent<TooltipProviderProps>;
|
|
17474
15556
|
}
|
|
17475
15557
|
}
|
|
17476
15558
|
|
|
17477
15559
|
|
|
17478
15560
|
declare module 'vue' {
|
|
17479
15561
|
interface GlobalComponents {
|
|
17480
|
-
|
|
15562
|
+
Label: DefineComponent<LabelProps, LabelSlots>;
|
|
17481
15563
|
}
|
|
17482
15564
|
}
|
|
17483
15565
|
|
|
17484
15566
|
|
|
17485
15567
|
declare module 'vue' {
|
|
17486
15568
|
interface GlobalComponents {
|
|
17487
|
-
|
|
15569
|
+
Banner: DefineComponent<BannerProps, BannerSlots, BannerEmits>;
|
|
17488
15570
|
}
|
|
17489
15571
|
}
|
|
17490
15572
|
|
|
17491
15573
|
|
|
17492
15574
|
declare module 'vue' {
|
|
17493
15575
|
interface GlobalComponents {
|
|
17494
|
-
|
|
15576
|
+
ColorTrigger: DefineComponent<ColorTriggerProps, ColorTriggerSlots>;
|
|
17495
15577
|
}
|
|
17496
15578
|
}
|
|
17497
15579
|
|
|
17498
15580
|
|
|
17499
15581
|
declare module 'vue' {
|
|
17500
15582
|
interface GlobalComponents {
|
|
17501
|
-
|
|
17502
|
-
TabList: DefineComponent<TabListProps, TabListSlots>;
|
|
17503
|
-
TabTrigger: DefineComponent<TabTriggerProps, TabTriggerSlots>;
|
|
17504
|
-
TabContent: DefineComponent;
|
|
15583
|
+
PageIndicator: DefineComponent<PageIndicatorProps, PageIndicatorSlots, PageIndicatorEmits>;
|
|
17505
15584
|
}
|
|
17506
15585
|
}
|
|
17507
15586
|
|
|
17508
15587
|
|
|
17509
15588
|
declare module 'vue' {
|
|
17510
15589
|
interface GlobalComponents {
|
|
17511
|
-
|
|
15590
|
+
GraphicalObjectGroup: DefineComponent<GraphicalObjectGroupProps, GraphicalObjectGroupSlots>;
|
|
17512
15591
|
}
|
|
17513
15592
|
}
|
|
17514
15593
|
|
|
17515
15594
|
|
|
17516
15595
|
declare module 'vue' {
|
|
17517
15596
|
interface GlobalComponents {
|
|
17518
|
-
|
|
15597
|
+
Icon: DefineComponent<IconProps>;
|
|
17519
15598
|
}
|
|
17520
15599
|
}
|
|
17521
15600
|
|
|
17522
15601
|
|
|
17523
15602
|
declare module 'vue' {
|
|
17524
15603
|
interface GlobalComponents {
|
|
17525
|
-
|
|
15604
|
+
ColorSwatch: DefineComponent<ColorSwatchProps, ColorSwatchSlots, undefined>;
|
|
17526
15605
|
}
|
|
17527
15606
|
}
|
|
17528
15607
|
|
|
17529
15608
|
|
|
17530
15609
|
declare module 'vue' {
|
|
17531
15610
|
interface GlobalComponents {
|
|
17532
|
-
|
|
15611
|
+
FloatButton: DefineComponent<FloatButtonProps, FloatButtonSlots>;
|
|
17533
15612
|
}
|
|
17534
15613
|
}
|
|
17535
15614
|
|
|
17536
15615
|
|
|
17537
15616
|
declare module 'vue' {
|
|
17538
15617
|
interface GlobalComponents {
|
|
17539
|
-
|
|
15618
|
+
Tree: DefineComponent<TreeProps, TreeSlots, TreeEmits>;
|
|
15619
|
+
TreeNode: DefineComponent<TreeNodeProps, TreeNodeSlots>;
|
|
17540
15620
|
}
|
|
17541
15621
|
}
|
|
17542
15622
|
|
|
17543
15623
|
|
|
17544
15624
|
declare module 'vue' {
|
|
17545
15625
|
interface GlobalComponents {
|
|
17546
|
-
|
|
15626
|
+
Upload: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
15627
|
+
UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
15628
|
+
UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
|
|
17547
15629
|
}
|
|
17548
15630
|
}
|
|
17549
15631
|
|
|
17550
15632
|
|
|
17551
15633
|
declare module 'vue' {
|
|
17552
15634
|
interface GlobalComponents {
|
|
17553
|
-
|
|
15635
|
+
ButtonGroup: DefineComponent<ButtonGroupProps>;
|
|
17554
15636
|
}
|
|
17555
15637
|
}
|
|
17556
15638
|
|
|
17557
15639
|
|
|
17558
15640
|
declare module 'vue' {
|
|
17559
15641
|
interface GlobalComponents {
|
|
17560
|
-
|
|
17561
|
-
SelectOption: DefineComponent<SelectOptionProps, SelectOptionSlots>;
|
|
17562
|
-
SelectLabel: DefineComponent;
|
|
15642
|
+
Divider: DefineComponent<DividerProps>;
|
|
17563
15643
|
}
|
|
17564
15644
|
}
|
|
17565
15645
|
|
|
17566
15646
|
|
|
17567
15647
|
declare module 'vue' {
|
|
17568
15648
|
interface GlobalComponents {
|
|
17569
|
-
|
|
15649
|
+
Modal: DefineComponent<ModalProps, ModalSlots, ModalEmits>;
|
|
15650
|
+
ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
|
|
17570
15651
|
}
|
|
17571
15652
|
}
|
|
17572
15653
|
|
|
17573
15654
|
|
|
17574
15655
|
declare module 'vue' {
|
|
17575
15656
|
interface GlobalComponents {
|
|
17576
|
-
|
|
15657
|
+
Rate: DefineComponent<RateProps, RateSlots, RateEmits>;
|
|
17577
15658
|
}
|
|
17578
15659
|
}
|
|
17579
15660
|
|
|
17580
15661
|
|
|
17581
15662
|
declare module 'vue' {
|
|
17582
15663
|
interface GlobalComponents {
|
|
17583
|
-
|
|
17584
|
-
ModalTitle: DefineComponent<ModalTitleProps, ModalTitleSlots>;
|
|
15664
|
+
Stepper: DefineComponent<StepperProps, undefined, StepperEmits>;
|
|
17585
15665
|
}
|
|
17586
15666
|
}
|
|
17587
15667
|
|
|
17588
15668
|
|
|
17589
15669
|
declare module 'vue' {
|
|
17590
15670
|
interface GlobalComponents {
|
|
17591
|
-
|
|
15671
|
+
Checkbox: DefineComponent<CheckboxProps, CheckboxSlots, CheckboxEmits>;
|
|
17592
15672
|
}
|
|
17593
15673
|
}
|
|
17594
15674
|
|
|
17595
15675
|
|
|
17596
15676
|
declare module 'vue' {
|
|
17597
15677
|
interface GlobalComponents {
|
|
17598
|
-
|
|
17599
|
-
UploadList: DefineComponent<UploadProps, UploadSlots, UploadEmits>;
|
|
17600
|
-
UploadTrigger: DefineComponent<Record<string, any>, Record<string, any>, UploadTriggerEmits>;
|
|
15678
|
+
ActionButton: DefineComponent<ActionButtonProps, ActionButtonSlots>;
|
|
17601
15679
|
}
|
|
17602
15680
|
}
|
|
17603
15681
|
|
|
17604
15682
|
|
|
17605
15683
|
declare module 'vue' {
|
|
17606
15684
|
interface GlobalComponents {
|
|
17607
|
-
|
|
15685
|
+
HoverCard: DefineComponent<HoverCardProps, HoverCardSlots, HoverCardEmits>;
|
|
17608
15686
|
}
|
|
17609
15687
|
}
|
|
17610
15688
|
|
|
17611
15689
|
|
|
17612
15690
|
declare module 'vue' {
|
|
17613
15691
|
interface GlobalComponents {
|
|
17614
|
-
|
|
17615
|
-
|
|
15692
|
+
Drawer: DefineComponent<DrawerProps, DrawerSlots, DrawerEmits>;
|
|
15693
|
+
DrawerTitle: DefineComponent<DrawerTitleProps, DrawerTitleSlots>;
|
|
17616
15694
|
}
|
|
17617
15695
|
}
|
|
17618
15696
|
|
|
17619
15697
|
|
|
17620
15698
|
declare module 'vue' {
|
|
17621
15699
|
interface GlobalComponents {
|
|
17622
|
-
|
|
15700
|
+
Avatar: DefineComponent<AvatarProps, AvatarSlots, AvatarEmits>;
|
|
17623
15701
|
}
|
|
17624
15702
|
}
|
|
17625
15703
|
|
|
17626
15704
|
|
|
17627
15705
|
declare module 'vue' {
|
|
17628
15706
|
interface GlobalComponents {
|
|
17629
|
-
|
|
15707
|
+
Breadcrumb: DefineComponent<BreadcrumbProps, BreadcrumbSlots, BreadcrumbEmits>;
|
|
17630
15708
|
}
|
|
17631
15709
|
}
|
|
17632
15710
|
|
|
17633
15711
|
|
|
17634
15712
|
declare module 'vue' {
|
|
17635
15713
|
interface GlobalComponents {
|
|
17636
|
-
|
|
17637
|
-
Th: DefineComponent<ThProps, ThSlots>;
|
|
17638
|
-
Td: DefineComponent<TdProps, TdSlots>;
|
|
17639
|
-
Tr: DefineComponent<TrProps>;
|
|
17640
|
-
TBody: DefineComponent<TBodyProps>;
|
|
17641
|
-
THead: DefineComponent<THeadProps>;
|
|
17642
|
-
TFoot: DefineComponent<TFootProps>;
|
|
15714
|
+
Skeleton: DefineComponent<SkeletonProps>;
|
|
17643
15715
|
}
|
|
17644
15716
|
}
|
|
17645
15717
|
|
|
17646
15718
|
|
|
17647
15719
|
declare module 'vue' {
|
|
17648
15720
|
interface GlobalComponents {
|
|
17649
|
-
|
|
17650
|
-
RadioGroupItem: DefineComponent<RadioGroupItemProps, RadioGroupSlots, RadioGroupItemEmits>;
|
|
15721
|
+
Alert: DefineComponent<AlertProps, AlertSlots, AlertEmits>;
|
|
17651
15722
|
}
|
|
17652
15723
|
}
|
|
17653
15724
|
|
|
17654
15725
|
|
|
17655
15726
|
declare module 'vue' {
|
|
17656
15727
|
interface GlobalComponents {
|
|
17657
|
-
|
|
15728
|
+
Empty: DefineComponent<EmptyProps, EmptySlots>;
|
|
17658
15729
|
}
|
|
17659
15730
|
}
|
|
17660
15731
|
|