@rocketui/vue 0.1.24 → 0.1.27

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.
@@ -1398,6 +1398,14 @@ declare interface ModalProps {
1398
1398
  * <Modal style="color: red" />
1399
1399
  */
1400
1400
  style?: string;
1401
+ /**
1402
+ * Control the scroll of the body
1403
+ * @type boolean
1404
+ * @default false
1405
+ * @example
1406
+ * <Modal :modelValue="true" :allowBodyScroll="true" />
1407
+ */
1408
+ allowBodyScroll?: boolean;
1401
1409
  }
1402
1410
 
1403
1411
  declare function onClick(): void;
@@ -2332,6 +2340,14 @@ export declare const RModal: __VLS_WithTemplateSlots_8<DefineComponent<__VLS_Wit
2332
2340
  block: boolean;
2333
2341
  title: string;
2334
2342
  description: string;
2343
+ icon: string;
2344
+ width: string;
2345
+ height: string;
2346
+ outsideClick: boolean;
2347
+ class: string;
2348
+ overlayClass: string;
2349
+ style: string;
2350
+ allowBodyScroll: boolean;
2335
2351
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2336
2352
  "update:modelValue": (...args: any[]) => void;
2337
2353
  }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_10<__VLS_TypePropsToRuntimeProps_11<ModalProps>, {
@@ -2339,13 +2355,29 @@ export declare const RModal: __VLS_WithTemplateSlots_8<DefineComponent<__VLS_Wit
2339
2355
  block: boolean;
2340
2356
  title: string;
2341
2357
  description: string;
2358
+ icon: string;
2359
+ width: string;
2360
+ height: string;
2361
+ outsideClick: boolean;
2362
+ class: string;
2363
+ overlayClass: string;
2364
+ style: string;
2365
+ allowBodyScroll: boolean;
2342
2366
  }>>> & {
2343
2367
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2344
2368
  }, {
2369
+ width: string;
2370
+ height: string;
2371
+ style: string;
2345
2372
  title: string;
2373
+ class: string | string[];
2374
+ icon: string;
2346
2375
  block: boolean;
2376
+ outsideClick: boolean;
2347
2377
  modelValue: boolean;
2348
2378
  description: string;
2379
+ overlayClass: string | string[];
2380
+ allowBodyScroll: boolean;
2349
2381
  }, {}>, {
2350
2382
  header?(_: {}): any;
2351
2383
  default?(_: {}): any;