Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Demos: unskip scenarios testcafe tests #29387

Open
wants to merge 5 commits into
base: 24_2
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
background-color: var(--dx-color-main-bg);
}

.options {
::ng-deep .options {
padding: 20px;
background-color: rgba(191, 191, 191, 0.15);
}
Expand All @@ -34,12 +34,12 @@
align-items: center;
}

.caption {
::ng-deep .caption {
font-size: 18px;
font-weight: 500;
}

.option {
::ng-deep .option {
margin-top: 10px;
display: inline-block;
margin-right: 50px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,22 @@
text-align: center;
}

.options {
::ng-deep .options {
padding: 20px;
background-color: rgba(191, 191, 191, 0.15);
}

.caption {
::ng-deep .options-container {
display: flex;
align-items: center;
}

::ng-deep .caption {
font-size: 18px;
font-weight: 500;
}

.option {
::ng-deep .option {
margin-top: 10px;
display: inline-block;
margin-right: 50px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,32 +23,34 @@
</dx-drawer>
<div class="options">
<div class="caption">Options</div>
<div class="option">
<label>Opened state mode</label>
<dx-radio-group
[(value)]="selectedOpenMode"
[items]="showModes"
layout="horizontal"
>
</dx-radio-group>
</div>
<div class="option">
<label>Position</label>
<dx-radio-group
[(value)]="selectedPosition"
[items]="positionModes"
layout="horizontal"
>
</dx-radio-group>
</div>
<div *ngIf="selectedOpenMode !== 'push'" class="option">
<label>Reveal mode</label>
<dx-radio-group
[(value)]="selectedRevealMode"
[items]="showSubmenuModes"
layout="horizontal"
>
</dx-radio-group>
<div class="options-container">
<div class="option">
<label>Opened state mode</label>
<dx-radio-group
[(value)]="selectedOpenMode"
[items]="showModes"
layout="horizontal"
>
</dx-radio-group>
</div>
<div class="option">
<label>Position</label>
<dx-radio-group
[(value)]="selectedPosition"
[items]="positionModes"
layout="horizontal"
>
</dx-radio-group>
</div>
<div *ngIf="selectedOpenMode !== 'push'" class="option">
<label>Reveal mode</label>
<dx-radio-group
[(value)]="selectedRevealMode"
[items]="showSubmenuModes"
layout="horizontal"
>
</dx-radio-group>
</div>
</div>
</div>
</div>
52 changes: 26 additions & 26 deletions apps/demos/Demos/Drawer/TopOrBottomPosition/React/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,37 +62,37 @@ const App = () => {
</Drawer>
<div className="options">
<div className="caption">Options</div>
<div className="option">
<label>Opened state mode</label>
<RadioGroup
items={RadioGroupOpenedOptions}
layout="horizontal"
value={openedStateMode}
onValueChanged={onOpenedStateModeChanged}
/>
</div>
{' '}
<div className="option">
<label>Position</label>
<RadioGroup
items={RadioGroupPositionOptions}
layout="horizontal"
value={position}
onValueChanged={onPositionChanged}
/>
</div>
{' '}
{openedStateMode !== 'push' && (
<div className="options-container">
<div className="option">
<label>Opened state mode</label>
<RadioGroup
items={RadioGroupOpenedOptions}
layout="horizontal"
value={openedStateMode}
onValueChanged={onOpenedStateModeChanged}
/>
</div>
<div className="option">
<label>Reveal mode</label>
<label>Position</label>
<RadioGroup
items={RadioGroupRevealOptions}
items={RadioGroupPositionOptions}
layout="horizontal"
value={revealMode}
onValueChanged={onRevealModeChanged}
value={position}
onValueChanged={onPositionChanged}
/>
</div>
)}
{openedStateMode !== 'push' && (
<div className="option">
<label>Reveal mode</label>
<RadioGroup
items={RadioGroupRevealOptions}
layout="horizontal"
value={revealMode}
onValueChanged={onRevealModeChanged}
/>
</div>
)}
</div>
</div>
</div>
);
Expand Down
5 changes: 5 additions & 0 deletions apps/demos/Demos/Drawer/TopOrBottomPosition/React/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@
background-color: rgba(191, 191, 191, 0.15);
}

.options-container {
display: flex;
align-items: center;
}

.caption {
font-size: 18px;
font-weight: 500;
Expand Down
50 changes: 26 additions & 24 deletions apps/demos/Demos/Drawer/TopOrBottomPosition/ReactJs/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,35 +70,37 @@ const App = () => {
</Drawer>
<div className="options">
<div className="caption">Options</div>
<div className="option">
<label>Opened state mode</label>
<RadioGroup
items={RadioGroupOpenedOptions}
layout="horizontal"
value={openedStateMode}
onValueChanged={onOpenedStateModeChanged}
/>
</div>{' '}
<div className="option">
<label>Position</label>
<RadioGroup
items={RadioGroupPositionOptions}
layout="horizontal"
value={position}
onValueChanged={onPositionChanged}
/>
</div>{' '}
{openedStateMode !== 'push' && (
<div className="options-container">
<div className="option">
<label>Reveal mode</label>
<label>Opened state mode</label>
<RadioGroup
items={RadioGroupRevealOptions}
items={RadioGroupOpenedOptions}
layout="horizontal"
value={revealMode}
onValueChanged={onRevealModeChanged}
value={openedStateMode}
onValueChanged={onOpenedStateModeChanged}
/>
</div>
)}
<div className="option">
<label>Position</label>
<RadioGroup
items={RadioGroupPositionOptions}
layout="horizontal"
value={position}
onValueChanged={onPositionChanged}
/>
</div>
{openedStateMode !== 'push' && (
<div className="option">
<label>Reveal mode</label>
<RadioGroup
items={RadioGroupRevealOptions}
layout="horizontal"
value={revealMode}
onValueChanged={onRevealModeChanged}
/>
</div>
)}
</div>
</div>
</div>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@
background-color: rgba(191, 191, 191, 0.15);
}

.options-container {
display: flex;
align-items: center;
}

.caption {
font-size: 18px;
font-weight: 500;
Expand Down
61 changes: 34 additions & 27 deletions apps/demos/Demos/Drawer/TopOrBottomPosition/Vue/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,32 +23,34 @@
</DxDrawer>
<div class="options">
<div class="caption">Options</div>
<div class="option">
<label>Opened state mode</label>
<DxRadioGroup
v-model:value="selectedOpenMode"
:items="showModes"
layout="horizontal"
/>
</div>
<div class="option">
<label>Position</label>
<DxRadioGroup
v-model:value="selectedPosition"
:items="positionModes"
layout="horizontal"
/>
</div>
<div
v-if="selectedOpenMode !== 'push'"
class="option"
>
<label>Reveal mode</label>
<DxRadioGroup
v-model:value="selectedRevealMode"
:items="showSubmenuModes"
layout="horizontal"
/>
<div class="options-container">
<div class="option">
<label>Opened state mode</label>
<DxRadioGroup
v-model:value="selectedOpenMode"
:items="showModes"
layout="horizontal"
/>
</div>
<div class="option">
<label>Position</label>
<DxRadioGroup
v-model:value="selectedPosition"
:items="positionModes"
layout="horizontal"
/>
</div>
<div
v-if="selectedOpenMode !== 'push'"
class="option"
>
<label>Reveal mode</label>
<DxRadioGroup
v-model:value="selectedRevealMode"
:items="showSubmenuModes"
layout="horizontal"
/>
</div>
</div>
</div>
</div>
Expand Down Expand Up @@ -124,6 +126,11 @@ const toolbarContent = [{
background-color: rgba(191, 191, 191, 0.15);
}

.options-container {
display: flex;
align-items: center;
}

.caption {
font-size: 18px;
font-weight: 500;
Expand All @@ -132,7 +139,7 @@ const toolbarContent = [{
.option {
margin-top: 10px;
display: inline-block;
margin-right: 54px;
margin-right: 50px;
}

label {
Expand Down
24 changes: 13 additions & 11 deletions apps/demos/Demos/Drawer/TopOrBottomPosition/jQuery/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,19 @@
</div>
<div class="options">
<div class="caption">Options</div>
<div class="option">
<label>Opened state mode</label>
<div id="opened-state-mode"></div>
</div>
<div class="option">
<label>Position</label>
<div id="position-mode"></div>
</div>
<div id="reveal-mode-option" class="option">
<label>Reveal mode</label>
<div id="reveal-mode"></div>
<div class="options-container">
<div class="option">
<label>Opened state mode</label>
<div id="opened-state-mode"></div>
</div>
<div class="option">
<label>Position</label>
<div id="position-mode"></div>
</div>
<div id="reveal-mode-option" class="option">
<label>Reveal mode</label>
<div id="reveal-mode"></div>
</div>
</div>
</div>
</div>
Expand Down
5 changes: 5 additions & 0 deletions apps/demos/Demos/Drawer/TopOrBottomPosition/jQuery/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@
background-color: rgba(191, 191, 191, 0.15);
}

.options-container {
display: flex;
align-items: center;
}

.caption {
font-size: 18px;
font-weight: 500;
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified apps/demos/testing/etalons/Drawer-TopOrBottomPosition.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion apps/demos/testing/widgets/accordion/Accordion.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const CHECKBOX_CLASS = 'dx-checkbox';
fixture('Accordion.Overview')
.page('http://localhost:8080/')
.before(async (ctx) => {
ctx.initialWindowSize = [900, 600];
ctx.initialWindowSize = [900, 900];
});

runManualTest('Accordion', 'Overview', ['jQuery', 'React', 'Angular', 'Vue'], (test) => {
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading