Skip to content

Commit 28ed5fc

Browse files
update etalons
1 parent 6ba6cea commit 28ed5fc

58 files changed

Lines changed: 36 additions & 52 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

apps/demos/Demos/Common/EditorAppearanceVariants/test-code.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
testUtils.importAnd(() => 'devextreme/animation/fx', () => DevExpress.fx, (fx) => {
2-
fx.off = true;
1+
testUtils.importAnd(() => 'devextreme/animation', () => DevExpress, (animation) => {
2+
animation.fx.off = true;
33

44
return testUtils
55
.postponeUntilFound('.dx-texteditor-with-label.dx-invalid', 100, 10000)

apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Angular/app/app.component.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
<dx-button
3232
text="Clear Selection"
3333
[disabled]="!selectedRows?.length"
34+
stylingMode="text"
3435
(onClick)="grid.instance.clearSelection()"
3536
>
3637
</dx-button>

apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/React/App.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ const App = () => {
8080
disabled={!selectedRowKeys.length}
8181
onClick={onClearButtonClicked}
8282
text="Clear Selection"
83+
stylingMode="text"
8384
/>
8485
</Item>
8586
</Toolbar>

apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/ReactJs/App.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ const App = () => {
9090
disabled={!selectedRowKeys.length}
9191
onClick={onClearButtonClicked}
9292
text="Clear Selection"
93+
stylingMode="text"
9394
/>
9495
</Item>
9596
</Toolbar>

apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Vue/App.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
<DxButton
5151
:disabled="!selectedRowKeys.length"
5252
text="Clear Selection"
53+
stylingMode="text"
5354
@click="clearSelection"
5455
/>
5556
</DxItem>
322 Bytes
-3.41 KB
-1.62 KB
440 Bytes
-3.93 KB

0 commit comments

Comments
 (0)