|
2 | 2 | <dt-popover |
3 | 3 | :id="$attrs.id" |
4 | 4 | :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" |
7 | 8 | :content-class="$attrs.contentClass" |
| 9 | + :content-width="$attrs.contentWidth" |
| 10 | + :element-type="$attrs.elementType" |
8 | 11 | :fallback-placements="$attrs.fallbackPlacements" |
9 | | - :padding="$attrs.padding" |
| 12 | + :footer-class="$attrs.footerClass" |
| 13 | + :header-class="$attrs.headerClass" |
10 | 14 | :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" |
18 | 15 | :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" |
23 | 16 | :max-height="$attrs.maxHeight" |
24 | 17 | :max-width="$attrs.maxWidth" |
25 | | - :tether="$attrs.tether" |
26 | | - :sticky="$attrs.sticky" |
| 18 | + :modal="$attrs.modal" |
| 19 | + :offset="$attrs.offset" |
27 | 20 | :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" |
28 | 29 | :visually-hidden-close="$attrs.visuallyHiddenClose" |
29 | 30 | :visually-hidden-close-label="$attrs.visuallyHiddenCloseLabel" |
30 | | - :append-to="$attrs.appendTo" |
31 | 31 | @opened="$attrs.onOpened" |
32 | 32 | > |
33 | 33 | <template |
|
37 | 37 | <dt-button |
38 | 38 | v-bind="attrs" |
39 | 39 | > |
40 | | - {{ $t('CLICK_TO_OPEN') }} |
| 40 | + Click to open |
41 | 41 | </dt-button> |
42 | 42 | </template> |
43 | 43 | <template |
|
57 | 57 | id="content-close" |
58 | 58 | @click="close" |
59 | 59 | > |
60 | | - {{ $t('CLICK_TO_CLOSE') }} |
| 60 | + Click to close |
61 | 61 | </dt-button> |
62 | 62 | </template> |
63 | 63 | </div> |
|
0 commit comments