Skip to content

Commit 40701f4

Browse files
committed
Update autoquerygrid.md
1 parent 45f762d commit 40701f4

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

MyApp/_pages/vue/autoquerygrid.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -391,6 +391,23 @@ defineProps<{
391391
create?: boolean
392392
edit?: string|number
393393
}>()
394+
395+
type ApiPrefs = {
396+
take?: number
397+
selectedColumns?: string[]
398+
}
399+
400+
type FormStyle = "slideOver" | "card"
401+
type TableStyle = "simple" | "fullWidth" | "stripedRows" | "whiteBackground" | "uppercaseHeadings" | "verticalLines"
402+
403+
type Breakpoint = "xs" | "sm" | "md" | "lg" | "xl" | "2xl"
404+
405+
type GridAllowOptions =
406+
"filtering" | "queryString" | "queryFilters"
407+
408+
type GridShowOptions =
409+
"toolbar" | "preferences" | "pagingNav" | "pagingInfo" | "downloadCsv" |
410+
"refresh" | "copyApiUrl" | "resetPreferences" | "filtersView" | "newItem"
394411
```
395412
396413
## AutoQueryGrid Events

0 commit comments

Comments
 (0)