chore(): run build to update readme files (#24880)

This commit is contained in:
Liam DeBeasi
2022-03-04 14:14:57 -05:00
committed by GitHub
parent 9154ce3bdc
commit 65b43aae2b
4 changed files with 24 additions and 0 deletions

View File

@ -661,6 +661,10 @@ Type: `Promise<void>`
## Dependencies
### Used by
- [ion-select](../select)
### Depends on
- [ion-backdrop](../backdrop)
@ -673,6 +677,7 @@ graph TD;
ion-action-sheet --> ion-backdrop
ion-action-sheet --> ion-icon
ion-action-sheet --> ion-ripple-effect
ion-select --> ion-action-sheet
style ion-action-sheet fill:#f9f,stroke:#333,stroke-width:4px
```

View File

@ -1863,6 +1863,10 @@ Type: `Promise<void>`
## Dependencies
### Used by
- [ion-select](../select)
### Depends on
- [ion-ripple-effect](../ripple-effect)
@ -1873,6 +1877,7 @@ Type: `Promise<void>`
graph TD;
ion-alert --> ion-ripple-effect
ion-alert --> ion-backdrop
ion-select --> ion-alert
style ion-alert fill:#f9f,stroke:#333,stroke-width:4px
```

View File

@ -1074,6 +1074,7 @@ Type: `Promise<void>`
### Used by
- [ion-datetime](../datetime)
- [ion-select](../select)
### Depends on
@ -1084,6 +1085,7 @@ Type: `Promise<void>`
graph TD;
ion-popover --> ion-backdrop
ion-datetime --> ion-popover
ion-select --> ion-popover
style ion-popover fill:#f9f,stroke:#333,stroke-width:4px
```

View File

@ -1433,11 +1433,17 @@ Type: `Promise<any>`
### Depends on
- ion-select-popover
- [ion-popover](../popover)
- [ion-action-sheet](../action-sheet)
- [ion-alert](../alert)
### Graph
```mermaid
graph TD;
ion-select --> ion-select-popover
ion-select --> ion-popover
ion-select --> ion-action-sheet
ion-select --> ion-alert
ion-select-popover --> ion-item
ion-select-popover --> ion-checkbox
ion-select-popover --> ion-label
@ -1448,6 +1454,12 @@ graph TD;
ion-item --> ion-icon
ion-item --> ion-ripple-effect
ion-item --> ion-note
ion-popover --> ion-backdrop
ion-action-sheet --> ion-backdrop
ion-action-sheet --> ion-icon
ion-action-sheet --> ion-ripple-effect
ion-alert --> ion-ripple-effect
ion-alert --> ion-backdrop
style ion-select fill:#f9f,stroke:#333,stroke-width:4px
```