feat(viewer-react): Add groups to Component Stack outputs (#67)

This commit is contained in:
Eric Tuvesson
2024-09-07 14:31:06 +02:00
committed by Richard Osborne
parent 17966cd03c
commit ec79c7f311

View File

@@ -175,6 +175,7 @@ const PageStack = {
topPageName: { topPageName: {
type: 'string', type: 'string',
displayName: 'Top Component Name', displayName: 'Top Component Name',
group: 'General',
get() { get() {
return this._internal.topPageName; return this._internal.topPageName;
} }
@@ -182,6 +183,7 @@ const PageStack = {
stackDepth: { stackDepth: {
type: 'number', type: 'number',
displayName: 'Stack Depth', displayName: 'Stack Depth',
group: 'General',
get() { get() {
return this._internal.stackDepth; return this._internal.stackDepth;
} }