@mythpe/quasar-ui-qui 0.1.51 → 0.1.52
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/package.json
CHANGED
|
@@ -518,7 +518,7 @@ export type MFormSlots = {
|
|
|
518
518
|
|
|
519
519
|
export declare type GenericFormValues = Record<any, any>;
|
|
520
520
|
|
|
521
|
-
export
|
|
521
|
+
export interface MOptionsOptionContext extends Omit<QToggleProps, 'modelValue'>, Omit<QRadioProps, 'modelValue'>, Omit<QCheckboxProps, 'modelValue'> {
|
|
522
522
|
/**
|
|
523
523
|
* Label to display along the component
|
|
524
524
|
*/
|
|
@@ -531,9 +531,11 @@ export type MOptionsOptionContext = Omit<QToggleProps, 'modelValue'> & Omit<QRad
|
|
|
531
531
|
* If true, the option will be disabled
|
|
532
532
|
*/
|
|
533
533
|
disable?: boolean;
|
|
534
|
+
|
|
534
535
|
/**
|
|
535
536
|
* Any other props from QToggle & QCheckbox, or QRadio
|
|
536
537
|
*/
|
|
538
|
+
[key: string]: any;
|
|
537
539
|
}
|
|
538
540
|
|
|
539
541
|
export type MOptionsProps = Omit<QOptionGroupProps, 'name' | 'modelValue' | 'options'> &
|