| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- import { type ExtractPropTypes } from 'vue';
- export declare const checkboxProps: {
- name: import("vue").PropType<unknown>;
- shape: {
- type: import("vue").PropType<import("./Checker").CheckerShape>;
- default: import("./Checker").CheckerShape;
- };
- disabled: BooleanConstructor;
- iconSize: (NumberConstructor | StringConstructor)[];
- modelValue: import("vue").PropType<unknown>;
- checkedColor: StringConstructor;
- labelPosition: import("vue").PropType<import("./Checker").CheckerLabelPosition>;
- labelDisabled: BooleanConstructor;
- } & {
- bindGroup: {
- type: BooleanConstructor;
- default: true;
- };
- };
- export type CheckboxProps = ExtractPropTypes<typeof checkboxProps>;
- declare const _default: import("vue").DefineComponent<{
- name: import("vue").PropType<unknown>;
- shape: {
- type: import("vue").PropType<import("./Checker").CheckerShape>;
- default: import("./Checker").CheckerShape;
- };
- disabled: BooleanConstructor;
- iconSize: (NumberConstructor | StringConstructor)[];
- modelValue: import("vue").PropType<unknown>;
- checkedColor: StringConstructor;
- labelPosition: import("vue").PropType<import("./Checker").CheckerLabelPosition>;
- labelDisabled: BooleanConstructor;
- } & {
- bindGroup: {
- type: BooleanConstructor;
- default: true;
- };
- }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
- name: import("vue").PropType<unknown>;
- shape: {
- type: import("vue").PropType<import("./Checker").CheckerShape>;
- default: import("./Checker").CheckerShape;
- };
- disabled: BooleanConstructor;
- iconSize: (NumberConstructor | StringConstructor)[];
- modelValue: import("vue").PropType<unknown>;
- checkedColor: StringConstructor;
- labelPosition: import("vue").PropType<import("./Checker").CheckerLabelPosition>;
- labelDisabled: BooleanConstructor;
- } & {
- bindGroup: {
- type: BooleanConstructor;
- default: true;
- };
- }>> & {
- onChange?: ((...args: any[]) => any) | undefined;
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
- }, {
- disabled: boolean;
- shape: import("./Checker").CheckerShape;
- labelDisabled: boolean;
- bindGroup: boolean;
- }>;
- export default _default;
|