openvidu-components: Removed docs directive samples images

pull/715/head
csantosm 2022-04-11 19:13:56 +02:00
parent ad54a3005d
commit c6e08ac287
13 changed files with 3 additions and 38 deletions

View File

@ -15,7 +15,6 @@
"disableDependencies": true, "disableDependencies": true,
"theme": "gitbook", "theme": "gitbook",
"customFavicon": "doc/favicon.ico", "customFavicon": "doc/favicon.ico",
"extTheme": "doc/", "extTheme": "doc/"
"assetsFolder": "doc/assets"
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 274 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 186 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.4 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 383 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 459 KiB

View File

@ -4,7 +4,7 @@ import { Directive, TemplateRef, ViewContainerRef } from '@angular/core';
* The ***ovToolbar** directive allows to replace the default toolbar component injecting your custom template. * The ***ovToolbar** directive allows to replace the default toolbar component injecting your custom template.
* In the example below we've replaced the default toolbar and added the **toggleAudio** and **toggleVide** features. * In the example below we've replaced the default toolbar and added the **toggleAudio** and **toggleVide** features.
* *
* *You can run the sample [here]()*. * You can run the sample [here](components/openvidu-custom-toolbar#run-this-tutorial).
* *
* *
*```html *```html
@ -47,10 +47,6 @@ import { Directive, TemplateRef, ViewContainerRef } from '@angular/core';
* } * }
* ``` * ```
* *
* <div style="text-align: center">
* <img src="../assets/toolbardirective-example.png"/>
* </div>
*
*/ */
@Directive({ @Directive({
selector: '[ovToolbar]' selector: '[ovToolbar]'
@ -111,9 +107,6 @@ export class ToolbarDirective {
* } * }
* } * }
* ``` * ```
* <div style="text-align: center">
* <img src="../assets/toolbarAdditionalButtonsDirective-example.png"/>
* </div>
*/ */
@Directive({ @Directive({
selector: '[ovToolbarAdditionalButtons]' selector: '[ovToolbarAdditionalButtons]'
@ -158,9 +151,6 @@ export class ToolbarAdditionalButtonsDirective {
* } * }
* } * }
* ``` * ```
* <div style="text-align: center">
* <img src="../assets/toolbarAdditionalPanelButtonsDirective-example.png"/>
* </div>
*/ */
@Directive({ @Directive({
selector: '[ovToolbarAdditionalPanelButtons]' selector: '[ovToolbarAdditionalPanelButtons]'
@ -174,7 +164,7 @@ export class ToolbarAdditionalPanelButtonsDirective {
/** /**
* The ***ovPanel** directive allows to replace the default panels with yours. This directive also allows us insert elements * The ***ovPanel** directive allows to replace the default panels with your own. This directive also allows us insert elements
* tagged with the {@link ChatPanelDirective}, {@link ParticipantsPanelDirective} and {@link AdditionalPanelsDirective}. * tagged with the {@link ChatPanelDirective}, {@link ParticipantsPanelDirective} and {@link AdditionalPanelsDirective}.
* *
* In this example we're going to replace the entire {@link PanelComponent} using the ***ovPanel** directive. Inside of it, we're customizing * In this example we're going to replace the entire {@link PanelComponent} using the ***ovPanel** directive. Inside of it, we're customizing
@ -210,9 +200,6 @@ export class ToolbarAdditionalPanelButtonsDirective {
* } * }
* } * }
* ``` * ```
* <div style="text-align: center">
* <img src="../assets/panelDirective.gif"/>
* </div>
*/ */
@Directive({ @Directive({
selector: '[ovPanel]' selector: '[ovPanel]'
@ -288,9 +275,6 @@ export class PanelDirective {
* } * }
* } * }
* ``` * ```
* <div style="text-align: center">
* <img src="../assets/additionalPanelsDirective-example.gif"/>
* </div>
*/ */
@Directive({ @Directive({
selector: '[ovAdditionalPanels]' selector: '[ovAdditionalPanels]'
@ -372,9 +356,6 @@ export class AdditionalPanelsDirective {
*} *}
* ``` * ```
* *
* <div style="text-align: center">
* <img src="../assets/chatPanelDirective-example.png"/>
* </div>
*/ */
@Directive({ @Directive({
selector: '[ovChatPanel]' selector: '[ovChatPanel]'
@ -452,9 +433,6 @@ export class ChatPanelDirective {
* *
* ``` * ```
* *
* <div style="text-align: center">
* <img src="../assets/participantsPanelDirective-example.png"/>
* </div>
*/ */
@Directive({ @Directive({
selector: '[ovParticipantsPanel]' selector: '[ovParticipantsPanel]'
@ -507,9 +485,6 @@ export class ParticipantsPanelDirective {
* *
* ``` * ```
* *
* <div style="text-align: center">
* <img src="../assets/participantPanelItemDirective-example.gif"/>
* </div>
*/ */
@Directive({ @Directive({
selector: '[ovParticipantPanelItem]' selector: '[ovParticipantPanelItem]'
@ -561,9 +536,6 @@ export class ParticipantPanelItemDirective {
* } * }
* ``` * ```
* *
* <div style="text-align: center">
* <img src="../assets/participantPanelItemElementsDirective-example.gif"/>
* </div>
*/ */
@Directive({ @Directive({
@ -643,9 +615,6 @@ export class ParticipantPanelItemElementsDirective {
* *
* ``` * ```
* *
* <div style="text-align: center">
* <img src="../assets/layoutDirective-example.png"/>
* </div>
*/ */
@Directive({ @Directive({
selector: '[ovLayout]' selector: '[ovLayout]'
@ -689,9 +658,6 @@ export class LayoutDirective {
* } * }
* } * }
* ``` * ```
* <div style="text-align: center">
* <img src="../assets/streamDirective-example.png"/>
* </div>
* *
*/ */