Skip to content

Commit

Permalink
List/Selection: Apply standardized width and added space between span…
Browse files Browse the repository at this point in the history
… and input in Vue template (#27553)

Signed-off-by: Nikki Gonzales <[email protected]>
  • Loading branch information
nikkithelegendarypokemonster authored Jun 14, 2024
1 parent ddd7b20 commit 0e0e83d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
7 changes: 5 additions & 2 deletions apps/demos/Demos/List/ListSelection/Vue/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
<div class="caption">Options</div>
<div class="option">
<span>Selection Mode </span>
{{ " " }}
<DxSelectBox
v-model:value="selectionMode"
:items="['none', 'single', 'multiple', 'all']"
Expand All @@ -27,6 +28,7 @@
</div>
<div class="option">
<span>Select All Mode </span>
{{ " " }}
<DxSelectBox
v-model:value="selectAllMode"
:disabled="selectionMode !== 'all'"
Expand All @@ -35,7 +37,8 @@
/>
</div>
<div class="option">
<span>Select By Click</span>
<span>Select By Click </span>
{{ " " }}
<DxCheckBox
v-model:value="selectByClick"
:element-attr="{ 'aria-label': 'Selection By Click' }"
Expand Down Expand Up @@ -84,7 +87,7 @@ const selectByClick = ref(false);
}
.option > span {
width: 124px;
width: 120px;
display: inline-block;
}
Expand Down
1 change: 0 additions & 1 deletion apps/demos/testing/common.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,6 @@ const SKIPPED_TESTS = {
{ demo: 'Overview', themes: [THEME.material] },
],
List: [
{ demo: 'ListSelection', themes: [THEME.material] },
{ demo: 'ListWithSearchBar', themes: [THEME.material] },
],
Gauges: [
Expand Down
3 changes: 0 additions & 3 deletions apps/demos/utils/visual-tests/matrix-test-helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -242,9 +242,6 @@ const SKIPPED_TESTS = {
Drawer: [
{ demo: 'TopOrBottomPosition', themes: [THEME.material] },
],
List: [
{ demo: 'ListSelection', themes: [THEME.material] },
],
TabPanel: [
{ demo: 'Overview', themes: [THEME.material] },
],
Expand Down

0 comments on commit 0e0e83d

Please sign in to comment.