Skip to content

Commit 291ec22

Browse files
committed
remove localization from popover
Signed-off-by: Julio Ortega <julio.ortega@dialpad.com>
1 parent 4cb0441 commit 291ec22

1 file changed

Lines changed: 19 additions & 19 deletions

File tree

packages/dialtone-vue2/components/popover/popover_default.story.vue

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,32 +2,32 @@
22
<dt-popover
33
:id="$attrs.id"
44
:key="uniqueKey"
5-
:open.sync="isOpen"
6-
:placement="$attrs.placement"
5+
:append-to="$attrs.appendTo"
6+
:aria-label="$attrs.ariaLabel"
7+
:aria-labelledby="$attrs.ariaLabelledby"
78
:content-class="$attrs.contentClass"
9+
:content-width="$attrs.contentWidth"
10+
:element-type="$attrs.elementType"
811
:fallback-placements="$attrs.fallbackPlacements"
9-
:padding="$attrs.padding"
12+
:footer-class="$attrs.footerClass"
13+
:header-class="$attrs.headerClass"
1014
:hide-on-click="$attrs.hideOnClick"
11-
:role="$attrs.role"
12-
:element-type="$attrs.elementType"
13-
:transition="$attrs.transition"
14-
:aria-labelledby="$attrs.ariaLabelledby"
15-
:aria-label="$attrs.ariaLabel"
16-
:offset="$attrs.offset"
17-
:modal="$attrs.modal"
1815
:initial-focus-element="$attrs.initialFocusElement"
19-
:content-width="$attrs.contentWidth"
20-
:show-close-button="$attrs.showCloseButton"
21-
:header-class="$attrs.headerClass"
22-
:footer-class="$attrs.footerClass"
2316
:max-height="$attrs.maxHeight"
2417
:max-width="$attrs.maxWidth"
25-
:tether="$attrs.tether"
26-
:sticky="$attrs.sticky"
18+
:modal="$attrs.modal"
19+
:offset="$attrs.offset"
2720
:open-with-arrow-keys="$attrs.openWithArrowKeys"
21+
:open.sync="isOpen"
22+
:padding="$attrs.padding"
23+
:placement="$attrs.placement"
24+
:role="$attrs.role"
25+
:show-close-button="$attrs.showCloseButton"
26+
:sticky="$attrs.sticky"
27+
:tether="$attrs.tether"
28+
:transition="$attrs.transition"
2829
:visually-hidden-close="$attrs.visuallyHiddenClose"
2930
:visually-hidden-close-label="$attrs.visuallyHiddenCloseLabel"
30-
:append-to="$attrs.appendTo"
3131
@opened="$attrs.onOpened"
3232
>
3333
<template
@@ -37,7 +37,7 @@
3737
<dt-button
3838
v-bind="attrs"
3939
>
40-
{{ $t('CLICK_TO_OPEN') }}
40+
Click to open
4141
</dt-button>
4242
</template>
4343
<template
@@ -57,7 +57,7 @@
5757
id="content-close"
5858
@click="close"
5959
>
60-
{{ $t('CLICK_TO_CLOSE') }}
60+
Click to close
6161
</dt-button>
6262
</template>
6363
</div>

0 commit comments

Comments
 (0)