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
React Alert is prepared for any length of text, as well as an optional close button. For a styling, use one of the **required** contextual `color` props (e.g., `primary`). For inline dismissal, use the [dismissing prop](#dismissing).
25
25
@@ -114,7 +114,7 @@ return (
114
114
115
115
### Link color
116
116
117
-
Use the `<CAlertLink>` component to immediately give matching colored links inside any alert.
117
+
Use the `<CAlertLink>` component to immediately give matching colored links inside any react alert component.
118
118
119
119
<Example>
120
120
<CAlertcolor="primary">
@@ -172,7 +172,7 @@ Use the `<CAlertLink>` component to immediately give matching colored links insi
172
172
173
173
### Additional content
174
174
175
-
Alert can also incorporate supplementary components & elements like heading, paragraph, and divider.
175
+
React Alert can also incorporate supplementary components & elements like heading, paragraph, and divider.
176
176
177
177
<Example>
178
178
<CAlertcolor="success">
@@ -194,7 +194,7 @@ Alert can also incorporate supplementary components & elements like heading,
194
194
195
195
### Icons
196
196
197
-
Similarly, you can use [flexbox utilities](https//coreui.io/docs/4.0/utilities/flex") and [CoreUI Icons](https://icons.coreui.io) to create alerts with icons. Depending on your icons and content, you may want to add more utilities or custom styles.
197
+
Similarly, you can use [flexbox utilities](https//coreui.io/docs/4.0/utilities/flex") and [CoreUI Icons](https://icons.coreui.io) to create react alerts with icons. Depending on your icons and content, you may want to add more utilities or custom styles.
Copy file name to clipboardExpand all lines: packages/docs/content/4.2/components/image.mdx
+1-1
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ Images in CoreUI for React.js are made responsive with `fluid` property. This ap
25
25
26
26
## Image thumbnails
27
27
28
-
In addition to our [border-radius utilities](https://coreui.io/docs/4.0/utilities/borders), you can use prop`thumbnail` to give an image a rounded 1px border appearance.
28
+
In addition to our [border-radius utilities](https://coreui.io/docs/utilities/borders), you can use prop`thumbnail` to give an image a rounded 1px border appearance.
Copy file name to clipboardExpand all lines: packages/docs/content/4.2/components/navbar.mdx
+1-1
Original file line number
Diff line number
Diff line change
@@ -514,7 +514,7 @@ Place various form controls and components within a navbar:
514
514
</CNavbar>
515
515
```
516
516
517
-
Immediate child elements of `<CNavbar>` use flex layout and will default to `justify-content: space-between`. Use additional [flex utilities](https://coreui.io/docs/4.0/utilities/flex/) as needed to adjust this behavior.
517
+
Immediate child elements of `<CNavbar>` use flex layout and will default to `justify-content: space-between`. Use additional [flex utilities](https://coreui.io/docs/utilities/flex/) as needed to adjust this behavior.
Copy file name to clipboardExpand all lines: packages/docs/content/4.2/components/table.mdx
+9-9
Original file line number
Diff line number
Diff line change
@@ -17,9 +17,9 @@ import {
17
17
CTableRow,
18
18
} from'@coreui/react/src/index'
19
19
20
-
## Overview
20
+
## How to use React Table Component
21
21
22
-
Due to the widespread use of `<CTable>` elements across third-party widgets like calendars and date pickers, CoreUI's tables are **opt-in**. All table styles are not inherited in CoreUI, meaning any nested tables can be styled independent from the parent.
22
+
Due to the widespread use of `<CTable>` elements across third-party widgets like calendars and date pickers, CoreUI's react tables are **opt-in**. All table styles are not inherited in CoreUI, meaning any nested tables can be styled independent from the parent.
23
23
24
24
Using the most basic table CoreUI, here's how `<CTable>`-based tables look in CoreUI.
25
25
@@ -89,7 +89,7 @@ Using the most basic table CoreUI, here's how `<CTable>`-based tables look in Co
89
89
90
90
## Variants
91
91
92
-
Use contextual classes to color tables, table rows or individual cells.
92
+
Use contextual classes to color react tables, table rows or individual cells.
93
93
94
94
<Example>
95
95
<CTable>
@@ -213,7 +213,7 @@ Use contextual classes to color tables, table rows or individual cells.
213
213
214
214
### striped rows
215
215
216
-
Use `striped` property to add zebra-striping to any table row within the `<CTableBody>`.
216
+
Use `striped` property to add zebra-striping to any react table row within the `<CTableBody>`.
217
217
218
218
<Example>
219
219
<CTablestriped>
@@ -279,7 +279,7 @@ Use `striped` property to add zebra-striping to any table row within the `<CTabl
279
279
</CTable>
280
280
```
281
281
282
-
These classes can also be added to table variants:
282
+
These classes can also be added to react table variants:
283
283
284
284
<Example>
285
285
<CTablecolor="dark"striped>
@@ -411,7 +411,7 @@ These classes can also be added to table variants:
411
411
412
412
### Hoverable rows
413
413
414
-
Use `hover` property to enable a hover state on table rows within a `<CTableBody>`.
414
+
Use `hover` property to enable a hover state on react table rows within a `<CTableBody>`.
415
415
416
416
<Example>
417
417
<CTablehover>
@@ -817,7 +817,7 @@ Add `bordered` property for borders on all sides of the table and cells.
817
817
</CTable>
818
818
```
819
819
820
-
[Border color utilities](https://coreui.io/docs/4.0/utilities/borders#border-color) can be added to change colors:
820
+
[Border color utilities](https://coreui.io/docs/utilities/borders#border-color) can be added to change colors:
821
821
822
822
<Example>
823
823
<CTableborderedborderColor="primary">
@@ -885,7 +885,7 @@ Add `bordered` property for borders on all sides of the table and cells.
885
885
886
886
### Tables without borders
887
887
888
-
Add `borderless` property for a table without borders.
888
+
Add `borderless` property for a react table without borders.
889
889
890
890
<Example>
891
891
<CTableborderless>
@@ -1221,7 +1221,7 @@ Table cells of `<CTableHead>` are always vertical aligned to the bottom. Table c
1221
1221
1222
1222
## Nesting
1223
1223
1224
-
Border styles, active styles, and table variants are not inherited by nested tables.
1224
+
Border styles, active styles, and react table component variants are not inherited by nested tables.
Copy file name to clipboardExpand all lines: packages/docs/content/4.2/components/toast.mdx
+2-2
Original file line number
Diff line number
Diff line change
@@ -276,7 +276,7 @@ You can stack toasts by wrapping them in a toast container, which will verticall
276
276
277
277
### Custom content
278
278
279
-
Customize your toasts by removing sub-components, tweaking them with [utilities](https://coreui.io/docs/4.0/utilities/api), or by adding your own markup. Here we've created a simpler toast by removing the default `<CToastHeader>`, adding a custom hide icon from [CoreUI Icons](https://icons.coreui.io), and using some [flexbox utilities](https://coreui.io/docs/4.0/utilities/flex) to adjust the layout.
279
+
Customize your toasts by removing sub-components, tweaking them with [utilities](https://coreui.io/docs/utilities/api), or by adding your own markup. Here we've created a simpler toast by removing the default `<CToastHeader>`, adding a custom hide icon from [CoreUI Icons](https://icons.coreui.io), and using some [flexbox utilities](https://coreui.io/docs/utilities/flex) to adjust the layout.
@@ -332,7 +332,7 @@ Alternatively, you can also add additional controls and components to toasts.
332
332
333
333
### Color schemes
334
334
335
-
Building on the above example, you can create different toast color schemes with our [color](https://coreui.io/docs/4.0/utilities/colors) and [background](https://coreui.io/docs/4.0//utilities/background) utilities. Here we've set `color="primary"` and added `.text-white` class to the `<Ctoast>`, and then set `white` property to our close button. For a crisp edge, we remove the default border with `.border-0`.
335
+
Building on the above example, you can create different toast color schemes with our [color](https://coreui.io/docs/utilities/colors) and [background](https://coreui.io/docs//utilities/background) utilities. Here we've set `color="primary"` and added `.text-white` class to the `<Ctoast>`, and then set `white` property to our close button. For a crisp edge, we remove the default border with `.border-0`.
Copy file name to clipboardExpand all lines: packages/docs/content/4.2/layout/breakpoints.mdx
+1-1
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ $grid-breakpoints: (
76
76
);
77
77
```
78
78
79
-
For more information and examples on how to modify our Sass maps and variables, please refer to [the Sass section of the Grid documentation](https://coreui.io/docs/4.0/layout/grid#sass).
79
+
For more information and examples on how to modify our Sass maps and variables, please refer to [the Sass section of the Grid documentation](https://coreui.io/docs/layout/grid#sass).
Copy file name to clipboardExpand all lines: packages/docs/content/4.2/migration/v4.mdx
+1-1
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ menu: "Migration"
5
5
route: "/migration/v4"
6
6
---
7
7
8
-
CoreUI for React is the React.js version of CoreUI components library, so before read this migration guide, please check also [CoreUI 3 to 4 migration guide](https://coreui.io/docs/4.0/migration/).
8
+
CoreUI for React is the React.js version of CoreUI components library, so before read this migration guide, please check also [CoreUI 3 to 4 migration guide](https://coreui.io/docs/migration/).
0 commit comments