|
|
|
@ -4,7 +4,7 @@ import type { Ref } from 'vue'
|
|
|
|
|
import ItemChip from './components/ItemChip.vue' |
|
|
|
|
import ListItems from './components/ListItems.vue' |
|
|
|
|
import { inject, ref, useProvideLTARStore, useSmartsheetRowStoreOrThrow } from '#imports' |
|
|
|
|
import { ActiveCellInj, CellValueInj, ColumnInj, ReadonlyInj, ReloadViewDataHookInj, RowInj } from '~/context' |
|
|
|
|
import { ActiveCellInj, CellValueInj, ColumnInj, EditModeInj, ReloadViewDataHookInj, RowInj } from '~/context' |
|
|
|
|
import MdiArrowExpand from '~icons/mdi/arrow-expand' |
|
|
|
|
import MdiPlus from '~icons/mdi/plus' |
|
|
|
|
|
|
|
|
@ -18,7 +18,7 @@ const row = inject(RowInj)
|
|
|
|
|
|
|
|
|
|
const active = inject(ActiveCellInj) |
|
|
|
|
|
|
|
|
|
const editEnabled = inject(ReadonlyInj) |
|
|
|
|
const editEnabled = inject(EditModeInj) |
|
|
|
|
|
|
|
|
|
const listItemsDlg = ref(false) |
|
|
|
|
|
|
|
|
|