1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- 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: {
- customStyle: StringConstructor;
- disabled?: {
- type: BooleanConstructor;
- value?: boolean;
- };
- max?: {
- type: NumberConstructor;
- value?: number;
- };
- name?: {
- type: StringConstructor;
- value?: string;
- };
- options?: {
- type: ArrayConstructor;
- value?: import("../checkbox/type").CheckboxOption[];
- };
- value?: {
- type: ArrayConstructor;
- value?: import("../checkbox/type").CheckboxGroupValue;
- };
- defaultValue?: {
- type: ArrayConstructor;
- value?: import("../checkbox/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;
- };
- }
|