File tree 4 files changed +273
-2
lines changed
packages/docs/content/api
4 files changed +273
-2
lines changed Original file line number Diff line number Diff line change
1
+
2
+ ``` jsx
3
+ import { CConditionalPortal } from ' @coreui/react'
4
+ // or
5
+ import CConditionalPortal from ' @coreui/react/src/components/conditional-portal/CConditionalPortal'
6
+ ```
7
+
8
+ | Property | Description | Type | Default |
9
+ | --- | --- | --- | --- |
10
+ | ** portal** | Render some children into a different part of the DOM | ` boolean ` | - |
Original file line number Diff line number Diff line change @@ -16,9 +16,10 @@ import CFormCheck from '@coreui/react/src/components/form/CFormCheck'
16
16
| ** hitArea** | Sets hit area to the full area of the component. | ` 'full' ` | - |
17
17
| ** id** | The id global attribute defines an identifier (ID) that must be unique in the whole document. | ` string ` | - |
18
18
| ** indeterminate** | Input Checkbox indeterminate Property. | ` boolean ` | - |
19
- | ** inline** | Group checkboxes or radios on the same horizontal row by adding . | ` boolean ` | - |
19
+ | ** inline** | Group checkboxes or radios on the same horizontal row. | ` boolean ` | - |
20
20
| ** invalid** | Set component validation state to invalid. | ` boolean ` | - |
21
21
| ** label** | The element represents a caption for a component. | ` ReactNode ` | - |
22
+ | ** reverse** | Put checkboxes or radios on the opposite side. | ` boolean ` | - |
22
23
| ** tooltipFeedback** ** _ 4.2.0+_ ** | Display validation feedback in a styled tooltip. | ` boolean ` | - |
23
24
| ** type** | Specifies the type of component. | ` 'checkbox' ` \| ` 'radio' ` | checkbox |
24
25
| ** valid** | Set component validation state to valid. | ` boolean ` | - |
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import CFormSwitch from '@coreui/react/src/components/form/CFormSwitch'
11
11
| ** id** | The id global attribute defines an identifier (ID) that must be unique in the whole document. | ` string ` | - |
12
12
| ** invalid** | Set component validation state to invalid. | ` boolean ` | - |
13
13
| ** label** | The element represents a caption for a component. | ` ReactNode ` | - |
14
+ | ** reverse** | Put switch on the opposite side. | ` boolean ` | - |
14
15
| ** size** | Size the component large or extra large. Works only with ` switch ` . | ` 'lg' ` \| ` 'xl' ` | - |
15
16
| ** type** | Specifies the type of component. | ` 'checkbox' ` \| ` 'radio' ` | checkbox |
16
17
| ** valid** | Set component validation state to valid. | ` boolean ` | - |
You can’t perform that action at this time.
0 commit comments