Skip to content

Commit acc0c98

Browse files
opensearch-trigger-bot[bot]ashwin-pcgithub-actions[bot]joshuarrrr
authored
[OSCI][Doc]Updated EUI doc site links to OUI doc site (#5293) (#5308)
* [OSCI][Doc]Updated EUI doc site links to OUI doc site * [OSCI][Doc]Updated PR details in CHANGELOG --------- Signed-off-by: Vijay Vavdiya <vijayvavdiya@gmail.com> Co-authored-by: Ashwin P Chandran <ashwinpc@amazon.com> (cherry picked from commit 534b2d0) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Josh Romero <rmerqg@amazon.com>
1 parent 7b8a81c commit acc0c98

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

DEVELOPER_GUIDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ You can also use this service outside of React.
454454
455455
When writing a new component, create a sibling SASS file of the same name and import directly into the **top** of the JS/TS component file. Doing so ensures the styles are never separated or lost on import and allows for better modularization (smaller individual plugin asset footprint).
456456
457-
All SASS (.scss) files will automatically build with the [EUI](https://elastic.github.io/eui/#/guidelines/sass) & OpenSearch Dashboards invisibles (SASS variables, mixins, functions) from the [`globals_[theme].scss` file](src/core/public/core_app/styles/_globals_v7light.scss).
457+
All SASS (.scss) files will automatically build with the [OUI](https://oui.opensearch.org/#/guidelines/sass) & OpenSearch Dashboards invisibles (SASS variables, mixins, functions) from the [`globals_[theme].scss` file](src/core/public/core_app/styles/_globals_v7light.scss).
458458
459459
While the styles for this component will only be loaded if the component exists on the page,
460460
the styles **will** be global and so it is recommended to use a three letter prefix on your

src/plugins/home/server/services/tutorials/lib/tutorial_schema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ export const tutorialSchema = {
124124
moduleName: Joi.string(),
125125
isBeta: Joi.boolean().default(false),
126126
shortDescription: Joi.string().required(),
127-
euiIconType: Joi.string(), // EUI icon type string, one of https://elastic.github.io/eui/#/icons
127+
euiIconType: Joi.string(), // OUI icon type string, one of https://oui.opensearch.org/#/display/icons
128128
longDescription: Joi.string().required(),
129129
completionTimeMinutes: Joi.number().integer(),
130130
previewImagePath: Joi.string(),

src/plugins/home/server/services/tutorials/lib/tutorials_registry_types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export interface TutorialSchema {
9595
moduleName?: string;
9696
isBeta?: boolean;
9797
shortDescription: string;
98-
euiIconType?: IconType; // EUI icon type string, one of https://elastic.github.io/eui/#/display/icons;
98+
euiIconType?: IconType; // OUI icon type string, one of https://oui.opensearch.org/#/display/icons;
9999
longDescription: string;
100100
completionTimeMinutes?: number;
101101
previewImagePath?: string;

src/plugins/opensearch_dashboards_legacy/public/notify/toasts/TOAST_NOTIFICATIONS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Toast notifications
22

3-
Use this service to surface toasts in the bottom-right corner of the screen. After a brief delay, they'll disappear. They're useful for notifying the user of state changes. See [the EUI docs](https://elastic.github.io/eui/) for more information on toasts and their role within the UI.
3+
Use this service to surface toasts in the bottom-right corner of the screen. After a brief delay, they'll disappear. They're useful for notifying the user of state changes. See [the OUI docs](https://oui.opensearch.org/) for more information on toasts and their role within the UI.
44

55
## Importing the module
66

@@ -57,7 +57,7 @@ toastNotifications.remove(toast);
5757

5858
### Configuration options
5959

60-
If you want to configure the toast further you can provide an object instead of a string. The properties of this object correspond to the `propTypes` accepted by the `EuiToast` component. Refer to [the EUI docs](https://elastic.github.io/eui/) for info on these `propTypes`.
60+
If you want to configure the toast further you can provide an object instead of a string. The properties of this object correspond to the `propTypes` accepted by the `OuiToast` component. Refer to [the OUI docs](https://oui.opensearch.org/) for info on these `propTypes`.
6161

6262
```js
6363
toastNotifications.add({

0 commit comments

Comments
 (0)