123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- import { SuperComponent, RelationsOptions } from '../common/src/index';
- export default class CheckBoxGroup extends SuperComponent {
- externalClasses: string[];
- relations: RelationsOptions;
- data: {
- prefix: string;
- classPrefix: string;
- checkboxOptions: any[];
- };
- properties: {
- borderless: {
- type: BooleanConstructor;
- value: boolean;
- };
- style?: {
- type: StringConstructor;
- value?: string;
- };
- disabled?: {
- type: BooleanConstructor;
- value?: boolean;
- };
- max?: {
- type: NumberConstructor;
- value?: number;
- };
- name?: {
- type: StringConstructor;
- value?: string;
- };
- options?: {
- type: ArrayConstructor;
- value?: import("./type").CheckboxOption[];
- };
- value?: {
- type: ArrayConstructor;
- value?: import("./type").CheckboxGroupValue;
- };
- defaultValue?: {
- type: ArrayConstructor;
- value?: import("./type").CheckboxGroupValue;
- };
- };
- observers: {
- value(): void;
- };
- lifetimes: {
- attached(): void;
- ready(): void;
- };
- controlledProps: {
- key: string;
- event: string;
- }[];
- $checkAll: any;
- methods: {
- getChilds(): any;
- updateChildren(): void;
- updateValue({ value, checked, checkAll, indeterminate }: {
- value: any;
- checked: any;
- checkAll: any;
- indeterminate: any;
- }): void;
- initWithOptions(): void;
- handleInnerChildChange(e: any): void;
- setCheckall(): void;
- };
- }
|