ado5 60ac2c1c9a first commit 7 miesięcy temu
..
README.en-US.md 60ac2c1c9a first commit 7 miesięcy temu
README.md 60ac2c1c9a first commit 7 miesięcy temu
checkbox-group-props.d.ts 60ac2c1c9a first commit 7 miesięcy temu
checkbox-group-props.js 60ac2c1c9a first commit 7 miesięcy temu
checkbox.d.ts 60ac2c1c9a first commit 7 miesięcy temu
checkbox.js 60ac2c1c9a first commit 7 miesięcy temu
checkbox.json 60ac2c1c9a first commit 7 miesięcy temu
checkbox.wxml 60ac2c1c9a first commit 7 miesięcy temu
checkbox.wxss 60ac2c1c9a first commit 7 miesięcy temu
props.d.ts 60ac2c1c9a first commit 7 miesięcy temu
props.js 60ac2c1c9a first commit 7 miesięcy temu
type.d.ts 60ac2c1c9a first commit 7 miesięcy temu
type.js 60ac2c1c9a first commit 7 miesięcy temu

README.en-US.md

:: BASE_DOC ::

API

Checkbox Props

name | type | default | description | required -- | -- | -- | -- | -- align | String | left | options:left/right | N block | Boolean | true | - | N check-all | Boolean | false | - | N checked | Boolean | false | - | N default-checked | Boolean | undefined | uncontrolled property | N color | String | #0052d9 | - | N content | String / Slot | - | - | N content-disabled | Boolean | - | - | N disabled | Boolean | undefined | - | N external-classes | Array | - | ['t-class', 't-class-icon', 't-class-label', 't-class-content', 't-class-border'] | N icon | String / Array | circle | Typescript:'circle' \| 'line' \| 'rectangle' \| string[] | N indeterminate | Boolean | false | - | N label | String / Slot | - | - | N max-content-row | Number | 5 | - | N max-label-row | Number | 3 | - | N name | String | - | - | N readonly | Boolean | false | - | N value | String / Number | - | Typescript:string \| number | N

Checkbox Events

name | params | description -- | -- | -- change | (checked: boolean) | -

CheckboxGroup Props

name | type | default | description | required -- | -- | -- | -- | -- disabled | Boolean | false | - | N max | Number | undefined | - | N name | String | - | - | N options | Array | [] | Typescript:Array<CheckboxOption> type CheckboxOption = string \| number \| CheckboxOptionObj interface CheckboxOptionObj { label?: string; value?: string \| number; disabled?: boolean; checkAll?: true }see more ts definition | N value | Array | [] | Typescript:CheckboxGroupValue type CheckboxGroupValue = Array<string \| number>see more ts definition | N default-value | Array | undefined | uncontrolled property。Typescript:CheckboxGroupValue type CheckboxGroupValue = Array<string \| number>see more ts definition | N

CheckboxGroup Events

name | params | description -- | -- | -- change | (value: CheckboxGroupValue, context: CheckboxGroupChangeContext) | see more ts definition
interface CheckboxGroupChangeContext { e: Event; current: string \| number; option: CheckboxOption \| TdCheckboxProps; type: 'check' \| 'uncheck' }