-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
44e5f83
commit dc2a68b
Showing
5 changed files
with
264 additions
and
364 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 0 additions & 38 deletions
38
app/src/routes/(backstage)/(library)/data-entry/selects/single-selects/WithTableInDialog.vue
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
...s/(backstage)/(library)/data-entry/selects/single-selects/WithinTableCellWithinDialog.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<script lang="ts" setup> | ||
import { ref } from 'vue'; | ||
import { XButton, XDialog, XDivider } from '@x/ui'; | ||
import WithinTableCell from './WithinTableCell.vue'; | ||
const status = ref(false); | ||
const more = ref(false); | ||
</script> | ||
|
||
<template> | ||
<XButton label="Launch" @click="status = true" /> | ||
|
||
<XDialog v-model="status" title="With Table in Dialog"> | ||
<p> | ||
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has | ||
been the industry's standard dummy text ever since the 1500s, when an unknown printer took a | ||
galley of type and scrambled it to make a type specimen book. It has survived not only five | ||
centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It | ||
was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum | ||
passages, and more recently with desktop publishing software like Aldus PageMaker including | ||
versions of Lorem Ipsum. | ||
</p> | ||
|
||
<XDivider /> | ||
|
||
<WithinTableCell /> | ||
|
||
<XDivider /> | ||
|
||
<div> | ||
<XButton color="info" @click="more = !more">More</XButton> | ||
|
||
<div v-if="more" class="flex flex-col gap-4 mt-4"> | ||
<p v-for="num in 5" :key="num"> | ||
{{ num }}. Lorem Ipsum is simply dummy text of the printing and typesetting industry. | ||
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an | ||
unknown printer took a galley of type and scrambled it to make a type specimen book. It | ||
has survived not only five centuries, but also the leap into electronic typesetting, | ||
remaining essentially unchanged. It was popularised in the 1960s with the release of | ||
Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing | ||
software like Aldus PageMaker including versions of Lorem Ipsum. | ||
</p> | ||
</div> | ||
</div> | ||
</XDialog> | ||
</template> |
Oops, something went wrong.