1
0
Fork 0
mirror of synced 2024-06-29 03:20:34 +12:00

Rename data block to repeater block

This commit is contained in:
Andrew Kingston 2021-11-15 18:07:51 +00:00
parent 9e94df969d
commit b1a2bb59a6
4 changed files with 4 additions and 4 deletions

View file

@ -5,7 +5,7 @@
"children": [ "children": [
"tableblock", "tableblock",
"cardsblock", "cardsblock",
"datablock" "repeaterblock"
] ]
}, },
"section", "section",

View file

@ -2933,8 +2933,8 @@
"suffix": "repeater" "suffix": "repeater"
} }
}, },
"datablock": { "repeaterblock": {
"name": "Data block", "name": "Repeater block",
"icon": "ViewList", "icon": "ViewList",
"illegalChildren": ["section"], "illegalChildren": ["section"],
"hasChildren": true, "hasChildren": true,

View file

@ -1,3 +1,3 @@
export { default as tableblock } from "./TableBlock.svelte" export { default as tableblock } from "./TableBlock.svelte"
export { default as cardsblock } from "./CardsBlock.svelte" export { default as cardsblock } from "./CardsBlock.svelte"
export { default as datablock } from "./DataBlock.svelte" export { default as repeaterblock } from "./RepeaterBlock.svelte"