You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|**feedback-valid** <br><divclass="badge bg-primary">4.3.0+</div> | Provide valuable, actionable invalid feedback when using standard HTML form validation which applied two CSS pseudo-classes, `:invalid` and `:valid`.false | string | - ||
17
-
|**floating-label** <br><divclass="badge bg-primary">4.3.0+</div> | Provide valuable, actionable valid feedback when using standard HTML form validation which applied two CSS pseudo-classes, `:invalid` and `:valid`.false | string | - ||
18
-
|**id**| The id global attribute defines an identifier (ID) that must be unique in the whole document. | string | - ||
19
-
|**invalid**| Set component validation state to invalid. | boolean | - ||
20
-
|**label** <br><divclass="badge bg-primary">4.3.0+</div> | Add a caption for a component.false | string | - ||
21
-
|**model-value**| The default name for a value passed using v-model. | string| - | - |
22
-
|**plain-text**| Render the component styled as plain text. Removes the default form field styling and preserve the correct margin and padding. Recommend to use only along side `readonly`. | boolean | - ||
23
-
|**readonly**| Toggle the readonly state for the component. | boolean | - ||
24
-
|**size**| Size the component small or large. | string |`'sm' \| 'lg'`||
25
-
|**text** <br><divclass="badge bg-primary">4.3.0+</div> | Add helper text to the component.false | string | - ||
26
-
|**tooltip-feedback** <br><divclass="badge bg-primary">4.3.0+</div> | Display validation feedback in a styled tooltip.false | boolean | - ||
27
-
|**type**| Specifies the type of component. | string |`'color' \| 'file' \| 'text' \| string`| 'text' |
28
-
|**valid**| Set component validation state to valid. | boolean | - ||
11
+
| Prop name | Description | Type | Values | Default |
|**feedback-valid** <br><divclass="badge bg-primary">4.3.0+</div> | Provide valuable, actionable invalid feedback when using standard HTML form validation which applied two CSS pseudo-classes, `:invalid` and `:valid`.false | string | - ||
17
+
|**floating-label** <br><divclass="badge bg-primary">4.3.0+</div> | Provide valuable, actionable valid feedback when using standard HTML form validation which applied two CSS pseudo-classes, `:invalid` and `:valid`.false | string | - ||
18
+
|**id**| The id global attribute defines an identifier (ID) that must be unique in the whole document. | string | - ||
19
+
|**invalid**| Set component validation state to invalid. | boolean | - ||
20
+
|**label** <br><divclass="badge bg-primary">4.3.0+</div> | Add a caption for a component.false | string | - ||
21
+
|**model-value**| The default name for a value passed using v-model. |File\|number\|string | - | - |
22
+
|**plain-text**| Render the component styled as plain text. Removes the default form field styling and preserve the correct margin and padding. Recommend to use only along side `readonly`. | boolean | - ||
23
+
|**readonly**| Toggle the readonly state for the component. | boolean | - ||
24
+
|**size**| Size the component small or large. | string |`'sm' \| 'lg'`||
25
+
|**text** <br><divclass="badge bg-primary">4.3.0+</div> | Add helper text to the component.false | string | - ||
26
+
|**tooltip-feedback** <br><divclass="badge bg-primary">4.3.0+</div> | Display validation feedback in a styled tooltip.false | boolean | - ||
27
+
|**type**| Specifies the type of component. | string |`'color' \| 'file' \| 'text' \| string`| 'text' |
28
+
|**valid**| Set component validation state to valid. | boolean | - ||
|**align**| Set the vertical aligment. | string |`'bottom'`, `'middle'`, `'top'`| - |
14
-
|**border-color**| Sets the border color of the component to one of CoreUI’s themed colors. | string |`'primary'`, `'secondary'`, `'success'`, `'danger'`, `'warning'`, `'info'`, `'dark'`, `'light'`||
15
-
|**bordered**| Add borders on all sides of the table and cells. | boolean | - ||
16
-
|**borderless**| Remove borders on all sides of the table and cells. | boolean | - ||
17
-
|**caption**| Put the `<caption>` on the top of the table. | string |`'top'`| - |
18
-
|**color**| Sets the color context of the component to one of CoreUI’s themed colors. | string |`'primary'`, `'secondary'`, `'success'`, `'danger'`, `'warning'`, `'info'`, `'dark'`, `'light'`, `string`||
19
-
|**hover**| Enable a hover state on table rows within a `<CTableBody>`. | boolean | - ||
20
-
|**responsive**| Make any table responsive across all viewports or pick a maximum breakpoint with which to have a responsive table up to. | boolean\|string |`boolean`, `'sm'`, `'md'`, `'lg'`, `'xl'`, `'xxl'`| - |
21
-
|**small**| Make table more compact by cutting all cell `padding` in half. | boolean | - ||
22
-
|**striped**| Add zebra-striping to any table row within the `<CTableBody>`. | boolean | - ||
11
+
| Prop name | Description | Type | Values | Default |
|**align**| Set the vertical aligment. | string |`'bottom'`, `'middle'`, `'top'`| - |
14
+
|**border-color**| Sets the border color of the component to one of CoreUI’s themed colors. | string |`'primary'`, `'secondary'`, `'success'`, `'danger'`, `'warning'`, `'info'`, `'dark'`, `'light'`||
15
+
|**bordered**| Add borders on all sides of the table and cells. | boolean | - ||
16
+
|**borderless**| Remove borders on all sides of the table and cells. | boolean | - ||
17
+
|**caption**| Put the `<caption>` on the top of the table. | string |`'top'`| - |
18
+
|**color**| Sets the color context of the component to one of CoreUI’s themed colors. | string |`'primary'`, `'secondary'`, `'success'`, `'danger'`, `'warning'`, `'info'`, `'dark'`, `'light'`, `string`||
19
+
|**hover**| Enable a hover state on table rows within a `<CTableBody>`. | boolean | - ||
20
+
|**responsive**| Make any table responsive across all viewports or pick a maximum breakpoint with which to have a responsive table up to. | boolean\|string |`boolean`, `'sm'`, `'md'`, `'lg'`, `'xl'`, `'xxl'`| - |
21
+
|**small**| Make table more compact by cutting all cell `padding` in half. | boolean | - ||
22
+
|**striped**| Add zebra-striping to any table row within the `<CTableBody>`. | boolean | - ||
23
+
|**striped-columns** <br><divclass="badge bg-primary">4.4.0+</div> | Add zebra-striping to any table column.false | boolean | - ||
0 commit comments