diff --git a/app/src/routes/(backstage)/(library)/data-entry/selects/tree-select/+page.vue b/app/src/routes/(backstage)/(library)/data-entry/selects/tree-select/+page.vue index b87a99f4..b1eba23f 100644 --- a/app/src/routes/(backstage)/(library)/data-entry/selects/tree-select/+page.vue +++ b/app/src/routes/(backstage)/(library)/data-entry/selects/tree-select/+page.vue @@ -3,6 +3,8 @@ import { ref } from 'vue'; import { XBreadcrumb, XButton, XCard, XTreeSelect } from '@x/ui'; import WithinPopover from './WithinPopover.vue'; +import WithinTableCell from './WithinTableCell.vue'; +import WithinTableCellWithinDialog from './WithinTableCellWithinDialog.vue'; const values = ref([]); @@ -155,4 +157,20 @@ const values2 = ref([]); + +
+

Within TableCell

+ + + + +
+ +
+

Within TableCell within Dialog

+ + + + +
diff --git a/app/src/routes/(backstage)/(library)/data-entry/selects/tree-select/WithinPopover.vue b/app/src/routes/(backstage)/(library)/data-entry/selects/tree-select/WithinPopover.vue index 4543066e..d5b36d73 100644 --- a/app/src/routes/(backstage)/(library)/data-entry/selects/tree-select/WithinPopover.vue +++ b/app/src/routes/(backstage)/(library)/data-entry/selects/tree-select/WithinPopover.vue @@ -1,87 +1,19 @@