@rocketui/vue 0.2.94-alpha.2 → 0.2.95
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/rocket-ui-vue.d.ts +26 -0
- package/dist/rocket-ui-vue.js +435 -417
- package/dist/rocket-ui-vue.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/rocket-ui-vue.d.ts
CHANGED
|
@@ -2532,7 +2532,10 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
|
|
|
2532
2532
|
selectAllText: string;
|
|
2533
2533
|
disableDeselect: boolean;
|
|
2534
2534
|
maxVisibleChips: number;
|
|
2535
|
+
innerSearch: boolean;
|
|
2536
|
+
searchLoading: boolean;
|
|
2535
2537
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2538
|
+
search: (...args: any[]) => void;
|
|
2536
2539
|
"update:modelValue": (...args: any[]) => void;
|
|
2537
2540
|
clear: (...args: any[]) => void;
|
|
2538
2541
|
removeOption: (...args: any[]) => void;
|
|
@@ -2564,7 +2567,10 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
|
|
|
2564
2567
|
selectAllText: string;
|
|
2565
2568
|
disableDeselect: boolean;
|
|
2566
2569
|
maxVisibleChips: number;
|
|
2570
|
+
innerSearch: boolean;
|
|
2571
|
+
searchLoading: boolean;
|
|
2567
2572
|
}>>> & {
|
|
2573
|
+
onSearch?: ((...args: any[]) => any) | undefined;
|
|
2568
2574
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2569
2575
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
2570
2576
|
onRemoveOption?: ((...args: any[]) => any) | undefined;
|
|
@@ -2595,6 +2601,8 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
|
|
|
2595
2601
|
selectAllText: string;
|
|
2596
2602
|
disableDeselect: boolean;
|
|
2597
2603
|
maxVisibleChips: number;
|
|
2604
|
+
innerSearch: boolean;
|
|
2605
|
+
searchLoading: boolean;
|
|
2598
2606
|
}, {}>, {
|
|
2599
2607
|
prepend?(_: {
|
|
2600
2608
|
id: string;
|
|
@@ -2661,6 +2669,7 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
|
|
|
2661
2669
|
} | undefined;
|
|
2662
2670
|
}): any;
|
|
2663
2671
|
"not-options"?(_: {}): any;
|
|
2672
|
+
pagination?(_: {}): any;
|
|
2664
2673
|
}>;
|
|
2665
2674
|
|
|
2666
2675
|
/**
|
|
@@ -3548,6 +3557,23 @@ declare interface SelectProps {
|
|
|
3548
3557
|
* <Dropdown :maxVisibleChips="3" />
|
|
3549
3558
|
*/
|
|
3550
3559
|
maxVisibleChips?: number;
|
|
3560
|
+
/**
|
|
3561
|
+
* Allow to search for options inside the dropdown
|
|
3562
|
+
* @type {boolean}
|
|
3563
|
+
* @default true
|
|
3564
|
+
* @example
|
|
3565
|
+
* <Dropdown innerSearch />
|
|
3566
|
+
* <Dropdown :innerSearch="false" />
|
|
3567
|
+
*/
|
|
3568
|
+
innerSearch?: boolean;
|
|
3569
|
+
/**
|
|
3570
|
+
* Loading state of the search
|
|
3571
|
+
* @type {boolean}
|
|
3572
|
+
* @default false
|
|
3573
|
+
* @example
|
|
3574
|
+
* <Dropdown searchLoading />
|
|
3575
|
+
*/
|
|
3576
|
+
searchLoading?: boolean;
|
|
3551
3577
|
}
|
|
3552
3578
|
|
|
3553
3579
|
declare interface Tab {
|