1
0
Fork 0
mirror of synced 2024-06-14 08:24:48 +12:00

Rename blocks to be shorter

This commit is contained in:
Andrew Kingston 2021-11-10 15:56:51 +00:00
parent 32c3788a53
commit 3ebf44d1f7
5 changed files with 8 additions and 8 deletions

View file

@ -3,8 +3,8 @@
"name": "Blocks",
"icon": "Article",
"children": [
"tablewithsearch",
"cardlistwithsearch"
"tableblock",
"cardsblock"
]
},
"section",

View file

@ -2622,9 +2622,9 @@
}
]
},
"tablewithsearch": {
"tableblock": {
"block": true,
"name": "Table with search",
"name": "Table block",
"icon": "Table",
"styles": ["size"],
"info": "Only the first 3 search columns will be used.",
@ -2769,9 +2769,9 @@
}
]
},
"cardlistwithsearch": {
"cardsblock": {
"block": true,
"name": "Card list with search",
"name": "Cards block",
"icon": "Table",
"styles": ["size"],
"info": "Only the first 3 search columns will be used.",

View file

@ -1,2 +1,2 @@
export { default as tablewithsearch } from "./TableWithSearch.svelte"
export { default as cardlistwithsearch } from "./CardListWithSearch.svelte"
export { default as tableblock } from "./TableBlock.svelte"
export { default as cardsblock } from "./CardsBlock.svelte"