@rocketui/vue 0.2.92 → 0.2.93-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2524,7 +2524,6 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
2524
2524
  selectAllText: string;
2525
2525
  disableDeselect: boolean;
2526
2526
  maxVisibleChips: number;
2527
- persistent: boolean;
2528
2527
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2529
2528
  "update:modelValue": (...args: any[]) => void;
2530
2529
  clear: (...args: any[]) => void;
@@ -2557,7 +2556,6 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
2557
2556
  selectAllText: string;
2558
2557
  disableDeselect: boolean;
2559
2558
  maxVisibleChips: number;
2560
- persistent: boolean;
2561
2559
  }>>> & {
2562
2560
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2563
2561
  onClear?: ((...args: any[]) => any) | undefined;
@@ -2570,7 +2568,6 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
2570
2568
  clearable: boolean;
2571
2569
  options: any;
2572
2570
  tooltipClass: string;
2573
- persistent: boolean;
2574
2571
  modelValue: any;
2575
2572
  placeholder: string;
2576
2573
  chips: boolean;
@@ -3542,14 +3539,6 @@ declare interface SelectProps {
3542
3539
  * <Dropdown :maxVisibleChips="3" />
3543
3540
  */
3544
3541
  maxVisibleChips?: number;
3545
- /**
3546
- * Persistent dropdown
3547
- * @type {boolean}
3548
- * @default false
3549
- * @example
3550
- * <Dropdown :persistent="true" />
3551
- */
3552
- persistent?: boolean;
3553
3542
  }
3554
3543
 
3555
3544
  declare interface Tab {