@rocketui/vue 0.2.40 → 0.2.42-alpha.0

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.
@@ -2291,6 +2291,8 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
2291
2291
  hideOptionCheckIcon: boolean;
2292
2292
  hideChipClear: boolean;
2293
2293
  tooltipClass: string;
2294
+ showSelectAll: boolean;
2295
+ selectAllText: string;
2294
2296
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2295
2297
  "update:modelValue": (...args: any[]) => void;
2296
2298
  }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_7<__VLS_TypePropsToRuntimeProps_8<SelectProps>, {
@@ -2317,6 +2319,8 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
2317
2319
  hideOptionCheckIcon: boolean;
2318
2320
  hideChipClear: boolean;
2319
2321
  tooltipClass: string;
2322
+ showSelectAll: boolean;
2323
+ selectAllText: string;
2320
2324
  }>>> & {
2321
2325
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2322
2326
  }, {
@@ -2342,6 +2346,8 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
2342
2346
  noOptionsText: string;
2343
2347
  hideOptionCheckIcon: boolean;
2344
2348
  hideChipClear: boolean;
2349
+ showSelectAll: boolean;
2350
+ selectAllText: string;
2345
2351
  }, {}>, {
2346
2352
  prepend?(_: {
2347
2353
  active: boolean;
@@ -2369,7 +2375,7 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
2369
2375
  loading: boolean;
2370
2376
  }): any;
2371
2377
  option?(_: {
2372
- disabled: any;
2378
+ disabled: boolean | undefined;
2373
2379
  isSelected: boolean | {
2374
2380
  [x: string]: any;
2375
2381
  value: string | number;
@@ -2379,7 +2385,7 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
2379
2385
  } | undefined;
2380
2386
  }): any;
2381
2387
  "option-prepend"?(_: {
2382
- disabled: any;
2388
+ disabled: boolean | undefined;
2383
2389
  isSelected: boolean | {
2384
2390
  [x: string]: any;
2385
2391
  value: string | number;
@@ -2389,7 +2395,7 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
2389
2395
  } | undefined;
2390
2396
  }): any;
2391
2397
  "option-append"?(_: {
2392
- disabled: any;
2398
+ disabled: boolean | undefined;
2393
2399
  isSelected: boolean | {
2394
2400
  [x: string]: any;
2395
2401
  value: string | number;
@@ -3142,6 +3148,22 @@ declare interface SelectProps {
3142
3148
  * <Dropdown tooltipClass="w-96" />
3143
3149
  */
3144
3150
  tooltipClass?: string;
3151
+ /**
3152
+ * Show select all option
3153
+ * @type {boolean}
3154
+ * @default false
3155
+ * @example
3156
+ * <Dropdown showSelectAll />
3157
+ */
3158
+ showSelectAll?: boolean;
3159
+ /**
3160
+ * Text of the select all option
3161
+ * @type {string}
3162
+ * @default 'Select all'
3163
+ * @example
3164
+ * <Dropdown selectAllText="Select all" />
3165
+ */
3166
+ selectAllText?: string;
3145
3167
  }
3146
3168
 
3147
3169
  declare interface Tab {