diff --git a/docs/assets/examples/textgrid/v2/main.go b/docs/assets/examples/textgrid/v2/main.go index 09045c47..0ce29781 100644 --- a/docs/assets/examples/textgrid/v2/main.go +++ b/docs/assets/examples/textgrid/v2/main.go @@ -1,19 +1,19 @@ package main import ( - "github.com/johnfercher/maroto/v2/pkg/consts/fontstyle" "log" + "github.com/johnfercher/maroto/v2/pkg/consts/align" + "github.com/johnfercher/maroto/v2/pkg/consts/breakline" + "github.com/johnfercher/maroto/v2/pkg/consts/fontfamily" + "github.com/johnfercher/maroto/v2/pkg/consts/fontstyle" "github.com/johnfercher/maroto/v2/pkg/core" "github.com/johnfercher/maroto/v2" - "github.com/johnfercher/maroto/v2/pkg/consts/breakline" - + "github.com/johnfercher/maroto/v2/pkg/components/col" "github.com/johnfercher/maroto/v2/pkg/components/text" - "github.com/johnfercher/maroto/v2/pkg/consts/align" - "github.com/johnfercher/maroto/v2/pkg/config" "github.com/johnfercher/maroto/v2/pkg/props" ) @@ -109,5 +109,14 @@ func GetMaroto() core.Maroto { m.AddAutoRow( text.NewCol(12, longText+" "+longText+" "+longText, props.Text{VerticalPadding: 10, Left: 3, Right: 3, Align: align.Justify, BreakLineStrategy: breakline.EmptySpaceStrategy}), ) + + text := text.New("", props.Text{VerticalPadding: 1, Top: 2, Bottom: 2}). + AddSubText(longText+longText+longText+longText, props.SubText{Color: &props.BlueColor, Family: fontfamily.Arial}). + AddSubText(longText, props.SubText{Color: &props.RedColor, Family: fontfamily.Courier, Size: 10}). + AddSubText(longText, props.SubText{Color: &props.GreenColor, Family: fontfamily.ZapBats, Size: 15}). + AddSubText(longText, props.SubText{Color: &props.BlackColor, Family: fontfamily.Helvetica, Size: 10, Style: fontstyle.Bold}) + + m.AddAutoRow(col.New(12).Add(text)) + return m } diff --git a/docs/assets/pdf/textgridv2.pdf b/docs/assets/pdf/textgridv2.pdf index 2aaf00a5..87f3b7bf 100644 Binary files a/docs/assets/pdf/textgridv2.pdf and b/docs/assets/pdf/textgridv2.pdf differ diff --git a/docs/assets/text/textgridv2.txt b/docs/assets/text/textgridv2.txt index d2d8e793..798aa56e 100644 --- a/docs/assets/text/textgridv2.txt +++ b/docs/assets/text/textgridv2.txt @@ -1,4 +1,4 @@ -generate -> avg: 7.17ms, executions: [7.17ms] -add_row -> avg: 2722.17ns, executions: [14.71μs, 0.38μs, 0.17μs, 0.17μs, 0.12μs, 0.79μs] -add_rows -> avg: 104.00ns, executions: [208.00ns, 83.00ns, 83.00ns, 167.00ns, 0.00ns, 83.00ns] -file_size -> 30.71Kb +generate -> avg: 30.69ms, executions: [30.69ms] +add_row -> avg: 1599.50ns, executions: [3.06μs, 1.25μs, 0.86μs, 0.71μs, 0.73μs, 2.98μs] +add_rows -> avg: 479.17ns, executions: [661.00ns, 581.00ns, 251.00ns, 551.00ns, 190.00ns, 641.00ns] +file_size -> 36.00Kb diff --git a/internal/providers/gofpdf/provider.go b/internal/providers/gofpdf/provider.go index 8073abf6..16b623b5 100644 --- a/internal/providers/gofpdf/provider.go +++ b/internal/providers/gofpdf/provider.go @@ -50,8 +50,12 @@ func (g *provider) AddText(text string, cell *entity.Cell, prop *props.Text) { g.text.Add(text, cell, prop) } -func (g *provider) GetLinesQuantity(text string, textProp *props.Text, colWidth float64) int { - return g.text.GetLinesQuantity(text, textProp, colWidth) +func (g *provider) AddCustomText(cell *entity.Cell, textPs *props.Text, subs ...*entity.SubText) { + g.text.AddCustomText(cell, textPs, subs...) +} + +func (g *provider) GetTextHeight(textProp *props.Text, colWidth float64, text ...*entity.SubText) float64 { + return g.text.GetTextHeight(textProp, colWidth, text...) } func (g *provider) GetFontHeight(prop *props.Font) float64 { diff --git a/internal/providers/gofpdf/provider_test.go b/internal/providers/gofpdf/provider_test.go index aef59568..f0f03f7f 100644 --- a/internal/providers/gofpdf/provider_test.go +++ b/internal/providers/gofpdf/provider_test.go @@ -8,6 +8,7 @@ import ( "github.com/google/uuid" "github.com/johnfercher/maroto/v2/pkg/consts/barcode" + "github.com/johnfercher/maroto/v2/pkg/props" "github.com/johnfercher/maroto/v2/internal/fixture" "github.com/johnfercher/maroto/v2/internal/merror" @@ -57,6 +58,27 @@ func TestProvider_AddText(t *testing.T) { text.AssertNumberOfCalls(t, "Add", 1) } +func TestProvider_AddCustomText(t *testing.T) { + // Arrange + cell := &entity.Cell{} + prop := fixture.TextProp() + sub := entity.SubText{Value: "text", Props: props.NewSubText(&prop)} + + text := mocks.NewText(t) + text.EXPECT().AddCustomText(cell, &prop, &sub) + + dep := &gofpdf.Dependencies{ + Text: text, + } + sut := gofpdf.New(dep) + + // Act + sut.AddCustomText(cell, &prop, &sub) + + // Assert + text.AssertNumberOfCalls(t, "AddCustomText", 1) +} + func TestProvider_GetTextHeight(t *testing.T) { // Arrange fontHeightToReturn := 10.0 diff --git a/internal/providers/gofpdf/text.go b/internal/providers/gofpdf/text.go index dee6a5ad..c18da8d5 100644 --- a/internal/providers/gofpdf/text.go +++ b/internal/providers/gofpdf/text.go @@ -29,101 +29,57 @@ func NewText(pdf gofpdfwrapper.Fpdf, math core.Math, font core.Font) *text { } } -// Add a text inside a cell. -func (s *text) Add(text string, cell *entity.Cell, textProp *props.Text) { - s.font.SetFont(textProp.Family, textProp.Style, textProp.Size) - fontHeight := s.font.GetHeight(textProp.Family, textProp.Style, textProp.Size) - - if textProp.Top > cell.Height { - textProp.Top = cell.Height - } - - if textProp.Left > cell.Width { - textProp.Left = cell.Width - } - - if textProp.Right > cell.Width { - textProp.Right = cell.Width - } - - width := cell.Width - textProp.Left - textProp.Right - if width < 0 { - width = 0 - } - - x := cell.X + textProp.Left - y := cell.Y + textProp.Top - +// This method is responsible for allowing the union of a set of subtexts in the same text +func (s *text) AddCustomText(cell *entity.Cell, textPs *props.Text, subs ...*entity.SubText) { originalColor := s.font.GetColor() - if textProp.Color != nil { - s.font.SetColor(textProp.Color) - } - - // override style if hyperlink is set - if textProp.Hyperlink != nil { - s.font.SetColor(&props.BlueColor) - } + defer s.font.SetColor(originalColor) - y += fontHeight + availableWidth := s.validTextProps(textPs, cell, cell.Width-textPs.Left-textPs.Right) + lines := s.splitTextByLine(availableWidth, textPs.BreakLineStrategy, subs...) - // Apply Unicode before calc spaces - unicodeText := s.textToUnicode(text, textProp) - stringWidth := s.pdf.GetStringWidth(unicodeText) + yOfLine := cell.Y + textPs.Top + for _, line := range lines { + x := cell.X + textPs.Left + heightLargestFont := s.findLargestFontHeight(line...) + yOfLine += heightLargestFont + textPs.VerticalPadding - // If should add one line - if stringWidth < width { - s.addLine(textProp, x, width, y, stringWidth, unicodeText) - if textProp.Color != nil { - s.font.SetColor(originalColor) + for _, subtext := range line { + s.addLine(&subtext.Props, x, availableWidth, yOfLine, subtext.Value, textPs.Align) + x += s.pdf.GetStringWidth(subtext.Value) } - return - } - - var lines []string - - if textProp.BreakLineStrategy == breakline.EmptySpaceStrategy { - words := strings.Split(unicodeText, " ") - lines = s.getLinesBreakingLineFromSpace(words, width) - } else { - lines = s.getLinesBreakingLineWithDash(unicodeText, width) - } - - accumulateOffsetY := 0.0 - - for index, line := range lines { - lineWidth := s.pdf.GetStringWidth(line) - - s.addLine(textProp, x, width, y+float64(index)*fontHeight+accumulateOffsetY, lineWidth, line) - accumulateOffsetY += textProp.VerticalPadding - } - - if textProp.Color != nil { - s.font.SetColor(originalColor) } } -// GetLinesQuantity retrieve the quantity of lines which a text will occupy to avoid that text to extrapolate a cell. -func (s *text) GetLinesQuantity(text string, textProp *props.Text, colWidth float64) int { - s.font.SetFont(textProp.Family, textProp.Style, textProp.Size) +// Add a text inside a cell. +func (s *text) Add(text string, cell *entity.Cell, textProp *props.Text) { + s.AddCustomText(cell, textProp, &entity.SubText{Value: text, Props: props.NewSubText(textProp)}) +} - textTranslated := s.textToUnicode(text, textProp) +// GetTextHeight returns the height occupied by the text in the document +func (s *text) GetTextHeight(textProp *props.Text, availableWidth float64, text ...*entity.SubText) float64 { + lines := s.splitTextByLine(availableWidth, textProp.BreakLineStrategy, text...) + if len(text) < 2 { + lineHeight := s.font.GetHeight(text[0].Props.Family, text[0].Props.Style, text[0].Props.Size) + textProp.VerticalPadding + return lineHeight * float64(len(lines)) + } - if textProp.BreakLineStrategy == breakline.DashStrategy { - return len(s.getLinesBreakingLineWithDash(text, colWidth)) - } else { - return len(s.getLinesBreakingLineFromSpace(strings.Split(textTranslated, " "), colWidth)) + textHeight := 0.0 + for _, line := range lines { + textHeight += s.findLargestFontHeight(line...) + textProp.VerticalPadding } + return textHeight } -func (s *text) getLinesBreakingLineFromSpace(words []string, colWidth float64) []string { - currentlySize := 0.0 +// getLinesBreakingLineFromSpace is responsible for sending text in lines, breaking lines in the spaces between words. +func (s *text) getLinesBreakingLineFromSpace(text string, colWidth, currentlySize float64) ([]string, float64) { actualLine := 0 + words := strings.Split(text, " ") lines := []string{} lines = append(lines, "") for _, word := range words { - if s.pdf.GetStringWidth(word+" ")+currentlySize < colWidth { + if s.fitsInTheCurrentLine(word+" ", currentlySize, colWidth) { lines[actualLine] = lines[actualLine] + word + " " currentlySize += s.pdf.GetStringWidth(word + " ") } else { @@ -134,19 +90,16 @@ func (s *text) getLinesBreakingLineFromSpace(words []string, colWidth float64) [ } } - return lines + return lines, currentlySize } -func (s *text) getLinesBreakingLineWithDash(words string, colWidth float64) []string { - currentlySize := 0.0 - +func (s *text) getLinesBreakingLineWithDash(words string, colWidth, currentlySize float64) ([]string, float64) { lines := []string{} - dashSize := s.pdf.GetStringWidth(" - ") var content string for _, letter := range words { - if currentlySize+dashSize > colWidth-dashSize { + if !s.fitsInTheCurrentLine(" - ", currentlySize, colWidth-dashSize) { content += "-" lines = append(lines, content) content = "" @@ -154,34 +107,32 @@ func (s *text) getLinesBreakingLineWithDash(words string, colWidth float64) []st } letterString := fmt.Sprintf("%c", letter) - width := s.pdf.GetStringWidth(letterString) content += letterString - currentlySize += width + currentlySize += s.pdf.GetStringWidth(letterString) } if content != "" { lines = append(lines, content) } - - return lines + return lines, currentlySize } -func (s *text) addLine(textProp *props.Text, xColOffset, colWidth, yColOffset, textWidth float64, text string) { +func (s *text) addLine(subProp *props.SubText, xColOffset, colWidth, yColOffset float64, text string, alignText align.Type) { left, top, _, _ := s.pdf.GetMargins() + textWidth := s.pdf.GetStringWidth(text) + s.font.SetColor(subProp.Color) - fontHeight := s.font.GetHeight(textProp.Family, textProp.Style, textProp.Size) + fontHeight := s.font.GetHeight(subProp.Family, subProp.Style, subProp.Size) - if textProp.Align == align.Left { + if alignText == align.Left { s.pdf.Text(xColOffset+left, yColOffset+top, text) - - if textProp.Hyperlink != nil { - s.pdf.LinkString(xColOffset+left, yColOffset+top-fontHeight, textWidth, fontHeight, *textProp.Hyperlink) + if subProp.Hyperlink != nil { + s.pdf.LinkString(xColOffset+left, yColOffset+top-fontHeight, textWidth, fontHeight, *subProp.Hyperlink) } - return } - if textProp.Align == align.Justify { + if alignText == align.Justify { const spaceString = " " const emptyString = "" @@ -206,8 +157,8 @@ func (s *text) addLine(textProp *props.Text, xColOffset, colWidth, yColOffset, t x = finishX + spaceWidth } - if textProp.Hyperlink != nil { - s.pdf.LinkString(initX, yColOffset+top-fontHeight, finishX-initX, fontHeight, *textProp.Hyperlink) + if subProp.Hyperlink != nil { + s.pdf.LinkString(initX, yColOffset+top-fontHeight, finishX-initX, fontHeight, *subProp.Hyperlink) } return @@ -215,20 +166,20 @@ func (s *text) addLine(textProp *props.Text, xColOffset, colWidth, yColOffset, t var modifier float64 = 2 - if textProp.Align == align.Right { + if alignText == align.Right { modifier = 1 } dx := (colWidth - textWidth) / modifier - if textProp.Hyperlink != nil { - s.pdf.LinkString(dx+xColOffset+left, yColOffset+top-fontHeight, textWidth, fontHeight, *textProp.Hyperlink) + if subProp.Hyperlink != nil { + s.pdf.LinkString(dx+xColOffset+left, yColOffset+top-fontHeight, textWidth, fontHeight, *subProp.Hyperlink) } s.pdf.Text(dx+xColOffset+left, yColOffset+top, text) } -func (s *text) textToUnicode(txt string, props *props.Text) string { +func (s *text) textToUnicode(txt string, props *props.SubText) string { if props.Family == fontfamily.Arial || props.Family == fontfamily.Helvetica || props.Family == fontfamily.Symbol || @@ -249,3 +200,88 @@ func isIncorrectSpaceWidth(textWidth, spaceWidth, defaultSpaceWidth float64, tex lastChar := rune(text[len(text)-1]) return !unicode.IsLetter(lastChar) && !unicode.IsNumber(lastChar) } + +// This method is responsible for validating text properties, ensuring that they are within the standard +func (s *text) validTextProps(ps *props.Text, cell *entity.Cell, width float64) float64 { + if ps.Top > cell.Height { + ps.Top = cell.Height + } + + if ps.Left > cell.Width { + ps.Left = cell.Width + } + + if ps.Right > cell.Width { + ps.Right = cell.Width + } + if width < 0 { + width = 0 + } + return width +} + +// splitTextByLine is responsible for order subtext in lines. +// +// The organization of the lines will be done considering the available space and the chosen line +// break strategy. The returned array has all the subtexts of the line and all the lines of the text +func (s *text) splitTextByLine(widthAvailable float64, breakLineStrategy breakline.Strategy, subs ...*entity.SubText) [][]*entity.SubText { + sizeLasLine := 0.0 + newText := [][]*entity.SubText{} + + for _, sub := range subs { + sizeLasLine, newText = s.factoryLine(sub, widthAvailable, sizeLasLine, newText, breakLineStrategy) + } + return newText +} + +// This method is responsible for making a new line with the subText sent. +func (s *text) factoryLine(sub *entity.SubText, width float64, sizeLastLine float64, newText [][]*entity.SubText, + strategy breakline.Strategy, +) (float64, [][]*entity.SubText) { + getLines := s.selectStrategyBreak(strategy) + s.font.SetFont(sub.Props.Family, sub.Props.Style, sub.Props.Size) + lineValues, currentSize := getLines(s.textToUnicode(sub.Value, &sub.Props), width, sizeLastLine) + return currentSize, s.mergeSubtext(newText, lineValues, s.fitsInTheCurrentLine(lineValues[0], sizeLastLine, width), sub.Props) +} + +// This method is responsible for checking if the word fits on the current line +func (s *text) fitsInTheCurrentLine(word string, currentSize, widthAvailable float64) bool { + return s.pdf.GetStringWidth(word)+currentSize < widthAvailable +} + +// This method is responsible for selecting the correct function to break the line according to the passed strategy +func (s *text) selectStrategyBreak(strategy breakline.Strategy) func(string, float64, float64) ([]string, float64) { + if strategy == breakline.EmptySpaceStrategy { + return s.getLinesBreakingLineFromSpace + } else { + return s.getLinesBreakingLineWithDash + } +} + +// This method is responsible for finding the font with the highest height in the set of subtexts. +func (s *text) findLargestFontHeight(subs ...*entity.SubText) float64 { + fontSize := 0.0 + for _, sub := range subs { + size := s.font.GetHeight(sub.Props.Family, sub.Props.Style, sub.Props.Size) + if size > fontSize { + fontSize = size + } + } + return fontSize +} + +// This function is responsible for adding the new line to the group of lines already created, +// merging the subtexts into the same line if necessary. +func (s *text) mergeSubtext(currentLines [][]*entity.SubText, newLines []string, merge bool, ps props.SubText) [][]*entity.SubText { + startInsert := 0 + + if merge && len(currentLines) != 0 { + currentLines[len(currentLines)-1] = append(currentLines[len(currentLines)-1], &entity.SubText{Value: newLines[0], Props: ps}) + startInsert = 1 + } + + for i := startInsert; i < len(newLines); i++ { + currentLines = append(currentLines, []*entity.SubText{{Value: newLines[i], Props: ps}}) + } + return currentLines +} diff --git a/internal/providers/gofpdf/text_test.go b/internal/providers/gofpdf/text_test.go index 2271654f..421f5984 100644 --- a/internal/providers/gofpdf/text_test.go +++ b/internal/providers/gofpdf/text_test.go @@ -5,9 +5,9 @@ import ( "testing" "github.com/johnfercher/maroto/v2/internal/providers/gofpdf" - "github.com/johnfercher/maroto/v2/pkg/consts/breakline" "github.com/johnfercher/maroto/v2/pkg/consts/fontfamily" "github.com/johnfercher/maroto/v2/pkg/consts/fontstyle" + "github.com/johnfercher/maroto/v2/pkg/core/entity" "github.com/johnfercher/maroto/v2/pkg/props" "github.com/johnfercher/maroto/v2/mocks" @@ -22,41 +22,59 @@ func TestNewText(t *testing.T) { } func TestGetLinesheight(t *testing.T) { - t.Run("when a text that occupies two lines is sent with EmptySpaceStrategy, should two is returned", func(t *testing.T) { + t.Run("when the text lines have height 10, it should return 10", func(t *testing.T) { textProp := &props.Text{} textProp.MakeValid(&props.Font{Family: fontfamily.Arial, Size: 10, Style: fontstyle.Normal}) - font := mocks.NewFont(t) - font.EXPECT().SetFont(textProp.Family, textProp.Style, textProp.Size) - pdf := mocks.NewFpdf(t) + font.EXPECT().SetFont(textProp.Family, textProp.Style, textProp.Size) + font.EXPECT().GetHeight(textProp.Family, textProp.Style, textProp.Size).Return(10) pdf.EXPECT().GetStringWidth("text ").Return(5) + pdf.EXPECT().GetStringWidth("text text ").Return(5) pdf.EXPECT().UnicodeTranslatorFromDescriptor("").Return(func(s string) string { return s }) text := gofpdf.NewText(pdf, mocks.NewMath(t), font) + subText := entity.SubText{Value: "text text", Props: props.NewSubText(textProp)} - height := text.GetLinesQuantity("text text text text", textProp, 11) + height := text.GetTextHeight(textProp, 11, &subText) - assert.Equal(t, 2, height) + assert.Equal(t, 10.0, height) }) - t.Run("When a text that occupies two lines is sent with EmptySpaceStrategy, should two is returned", func(t *testing.T) { - textProp := &props.Text{BreakLineStrategy: breakline.DashStrategy} + t.Run("when 3 subtexts have height 10, it should return 30", func(t *testing.T) { + textProp := &props.Text{} textProp.MakeValid(&props.Font{Family: fontfamily.Arial, Size: 10, Style: fontstyle.Normal}) - font := mocks.NewFont(t) + pdf := mocks.NewFpdf(t) + font.EXPECT().SetFont(textProp.Family, textProp.Style, textProp.Size) + font.EXPECT().GetHeight(textProp.Family, textProp.Style, textProp.Size).Return(10) + pdf.EXPECT().GetStringWidth("text ").Return(5) + pdf.EXPECT().GetStringWidth("text text ").Return(5) + pdf.EXPECT().UnicodeTranslatorFromDescriptor("").Return(func(s string) string { return s }) + text := gofpdf.NewText(pdf, mocks.NewMath(t), font) + subText := entity.SubText{Value: "text text text", Props: props.NewSubText(textProp)} + + height := text.GetTextHeight(textProp, 11, &subText, &subText) + assert.Equal(t, 30.0, height) + }) + + t.Run("When vertical padding is sent, should increment row height with vertical padding", func(t *testing.T) { + textProp := props.Text{VerticalPadding: 5} + textProp.MakeValid(&props.Font{Family: fontfamily.Arial, Size: 10, Style: fontstyle.Normal}) + font := mocks.NewFont(t) pdf := mocks.NewFpdf(t) - pdf.EXPECT().GetStringWidth("t").Return(1) - pdf.EXPECT().GetStringWidth(" ").Return(1) - pdf.EXPECT().GetStringWidth(" - ").Return(1) + + font.EXPECT().SetFont(textProp.Family, textProp.Style, textProp.Size) + font.EXPECT().GetHeight(textProp.Family, textProp.Style, textProp.Size).Return(10) + pdf.EXPECT().GetStringWidth("text ").Return(5) pdf.EXPECT().UnicodeTranslatorFromDescriptor("").Return(func(s string) string { return s }) text := gofpdf.NewText(pdf, mocks.NewMath(t), font) + height := text.GetTextHeight(&textProp, 10.0, &entity.SubText{Value: "text", Props: props.NewSubText(&textProp)}) - height := text.GetLinesQuantity("tttt tttt tttt tttt", textProp, 11) - - assert.Equal(t, 2, height) + // Act + assert.Equal(t, 15.0, height) }) } diff --git a/mocks/Provider.go b/mocks/Provider.go index dd7b2bf4..c7c760a0 100644 --- a/mocks/Provider.go +++ b/mocks/Provider.go @@ -95,6 +95,55 @@ func (_c *Provider_AddBarCode_Call) RunAndReturn(run func(string, *entity.Cell, return _c } +// AddCustomText provides a mock function with given fields: cell, textPs, subs +func (_m *Provider) AddCustomText(cell *entity.Cell, textPs *props.Text, subs ...*entity.SubText) { + _va := make([]interface{}, len(subs)) + for _i := range subs { + _va[_i] = subs[_i] + } + var _ca []interface{} + _ca = append(_ca, cell, textPs) + _ca = append(_ca, _va...) + _m.Called(_ca...) +} + +// Provider_AddCustomText_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AddCustomText' +type Provider_AddCustomText_Call struct { + *mock.Call +} + +// AddCustomText is a helper method to define mock.On call +// - cell *entity.Cell +// - textPs *props.Text +// - subs ...*entity.SubText +func (_e *Provider_Expecter) AddCustomText(cell interface{}, textPs interface{}, subs ...interface{}) *Provider_AddCustomText_Call { + return &Provider_AddCustomText_Call{Call: _e.mock.On("AddCustomText", + append([]interface{}{cell, textPs}, subs...)...)} +} + +func (_c *Provider_AddCustomText_Call) Run(run func(cell *entity.Cell, textPs *props.Text, subs ...*entity.SubText)) *Provider_AddCustomText_Call { + _c.Call.Run(func(args mock.Arguments) { + variadicArgs := make([]*entity.SubText, len(args)-2) + for i, a := range args[2:] { + if a != nil { + variadicArgs[i] = a.(*entity.SubText) + } + } + run(args[0].(*entity.Cell), args[1].(*props.Text), variadicArgs...) + }) + return _c +} + +func (_c *Provider_AddCustomText_Call) Return() *Provider_AddCustomText_Call { + _c.Call.Return() + return _c +} + +func (_c *Provider_AddCustomText_Call) RunAndReturn(run func(*entity.Cell, *props.Text, ...*entity.SubText)) *Provider_AddCustomText_Call { + _c.Call.Return(run) + return _c +} + // AddImageFromBytes provides a mock function with given fields: bytes, cell, prop, _a3 func (_m *Provider) AddImageFromBytes(bytes []byte, cell *entity.Cell, prop *props.Rect, _a3 extension.Type) { _m.Called(bytes, cell, prop, _a3) @@ -710,50 +759,64 @@ func (_c *Provider_GetFontHeight_Call) RunAndReturn(run func(*props.Font) float6 return _c } -// GetLinesQuantity provides a mock function with given fields: text, textProp, colWidth -func (_m *Provider) GetLinesQuantity(text string, textProp *props.Text, colWidth float64) int { - ret := _m.Called(text, textProp, colWidth) +// GetTextHeight provides a mock function with given fields: textProp, colWidth, text +func (_m *Provider) GetTextHeight(textProp *props.Text, colWidth float64, text ...*entity.SubText) float64 { + _va := make([]interface{}, len(text)) + for _i := range text { + _va[_i] = text[_i] + } + var _ca []interface{} + _ca = append(_ca, textProp, colWidth) + _ca = append(_ca, _va...) + ret := _m.Called(_ca...) if len(ret) == 0 { - panic("no return value specified for GetLinesQuantity") + panic("no return value specified for GetTextHeight") } - var r0 int - if rf, ok := ret.Get(0).(func(string, *props.Text, float64) int); ok { - r0 = rf(text, textProp, colWidth) + var r0 float64 + if rf, ok := ret.Get(0).(func(*props.Text, float64, ...*entity.SubText) float64); ok { + r0 = rf(textProp, colWidth, text...) } else { - r0 = ret.Get(0).(int) + r0 = ret.Get(0).(float64) } return r0 } -// Provider_GetLinesQuantity_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetLinesQuantity' -type Provider_GetLinesQuantity_Call struct { +// Provider_GetTextHeight_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetTextHeight' +type Provider_GetTextHeight_Call struct { *mock.Call } -// GetLinesQuantity is a helper method to define mock.On call -// - text string +// GetTextHeight is a helper method to define mock.On call // - textProp *props.Text // - colWidth float64 -func (_e *Provider_Expecter) GetLinesQuantity(text interface{}, textProp interface{}, colWidth interface{}) *Provider_GetLinesQuantity_Call { - return &Provider_GetLinesQuantity_Call{Call: _e.mock.On("GetLinesQuantity", text, textProp, colWidth)} +// - text ...*entity.SubText +func (_e *Provider_Expecter) GetTextHeight(textProp interface{}, colWidth interface{}, text ...interface{}) *Provider_GetTextHeight_Call { + return &Provider_GetTextHeight_Call{Call: _e.mock.On("GetTextHeight", + append([]interface{}{textProp, colWidth}, text...)...)} } -func (_c *Provider_GetLinesQuantity_Call) Run(run func(text string, textProp *props.Text, colWidth float64)) *Provider_GetLinesQuantity_Call { +func (_c *Provider_GetTextHeight_Call) Run(run func(textProp *props.Text, colWidth float64, text ...*entity.SubText)) *Provider_GetTextHeight_Call { _c.Call.Run(func(args mock.Arguments) { - run(args[0].(string), args[1].(*props.Text), args[2].(float64)) + variadicArgs := make([]*entity.SubText, len(args)-2) + for i, a := range args[2:] { + if a != nil { + variadicArgs[i] = a.(*entity.SubText) + } + } + run(args[0].(*props.Text), args[1].(float64), variadicArgs...) }) return _c } -func (_c *Provider_GetLinesQuantity_Call) Return(_a0 int) *Provider_GetLinesQuantity_Call { +func (_c *Provider_GetTextHeight_Call) Return(_a0 float64) *Provider_GetTextHeight_Call { _c.Call.Return(_a0) return _c } -func (_c *Provider_GetLinesQuantity_Call) RunAndReturn(run func(string, *props.Text, float64) int) *Provider_GetLinesQuantity_Call { +func (_c *Provider_GetTextHeight_Call) RunAndReturn(run func(*props.Text, float64, ...*entity.SubText) float64) *Provider_GetTextHeight_Call { _c.Call.Return(run) return _c } diff --git a/mocks/Text.go b/mocks/Text.go index 781e9117..80c00219 100644 --- a/mocks/Text.go +++ b/mocks/Text.go @@ -57,50 +57,113 @@ func (_c *Text_Add_Call) RunAndReturn(run func(string, *entity.Cell, *props.Text return _c } -// GetLinesQuantity provides a mock function with given fields: text, textProp, colWidth -func (_m *Text) GetLinesQuantity(text string, textProp *props.Text, colWidth float64) int { - ret := _m.Called(text, textProp, colWidth) +// AddCustomText provides a mock function with given fields: cell, textPs, subs +func (_m *Text) AddCustomText(cell *entity.Cell, textPs *props.Text, subs ...*entity.SubText) { + _va := make([]interface{}, len(subs)) + for _i := range subs { + _va[_i] = subs[_i] + } + var _ca []interface{} + _ca = append(_ca, cell, textPs) + _ca = append(_ca, _va...) + _m.Called(_ca...) +} + +// Text_AddCustomText_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AddCustomText' +type Text_AddCustomText_Call struct { + *mock.Call +} + +// AddCustomText is a helper method to define mock.On call +// - cell *entity.Cell +// - textPs *props.Text +// - subs ...*entity.SubText +func (_e *Text_Expecter) AddCustomText(cell interface{}, textPs interface{}, subs ...interface{}) *Text_AddCustomText_Call { + return &Text_AddCustomText_Call{Call: _e.mock.On("AddCustomText", + append([]interface{}{cell, textPs}, subs...)...)} +} + +func (_c *Text_AddCustomText_Call) Run(run func(cell *entity.Cell, textPs *props.Text, subs ...*entity.SubText)) *Text_AddCustomText_Call { + _c.Call.Run(func(args mock.Arguments) { + variadicArgs := make([]*entity.SubText, len(args)-2) + for i, a := range args[2:] { + if a != nil { + variadicArgs[i] = a.(*entity.SubText) + } + } + run(args[0].(*entity.Cell), args[1].(*props.Text), variadicArgs...) + }) + return _c +} + +func (_c *Text_AddCustomText_Call) Return() *Text_AddCustomText_Call { + _c.Call.Return() + return _c +} + +func (_c *Text_AddCustomText_Call) RunAndReturn(run func(*entity.Cell, *props.Text, ...*entity.SubText)) *Text_AddCustomText_Call { + _c.Call.Return(run) + return _c +} + +// GetTextHeight provides a mock function with given fields: textProp, colWidth, text +func (_m *Text) GetTextHeight(textProp *props.Text, colWidth float64, text ...*entity.SubText) float64 { + _va := make([]interface{}, len(text)) + for _i := range text { + _va[_i] = text[_i] + } + var _ca []interface{} + _ca = append(_ca, textProp, colWidth) + _ca = append(_ca, _va...) + ret := _m.Called(_ca...) if len(ret) == 0 { - panic("no return value specified for GetLinesQuantity") + panic("no return value specified for GetTextHeight") } - var r0 int - if rf, ok := ret.Get(0).(func(string, *props.Text, float64) int); ok { - r0 = rf(text, textProp, colWidth) + var r0 float64 + if rf, ok := ret.Get(0).(func(*props.Text, float64, ...*entity.SubText) float64); ok { + r0 = rf(textProp, colWidth, text...) } else { - r0 = ret.Get(0).(int) + r0 = ret.Get(0).(float64) } return r0 } -// Text_GetLinesQuantity_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetLinesQuantity' -type Text_GetLinesQuantity_Call struct { +// Text_GetTextHeight_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetTextHeight' +type Text_GetTextHeight_Call struct { *mock.Call } -// GetLinesQuantity is a helper method to define mock.On call -// - text string +// GetTextHeight is a helper method to define mock.On call // - textProp *props.Text // - colWidth float64 -func (_e *Text_Expecter) GetLinesQuantity(text interface{}, textProp interface{}, colWidth interface{}) *Text_GetLinesQuantity_Call { - return &Text_GetLinesQuantity_Call{Call: _e.mock.On("GetLinesQuantity", text, textProp, colWidth)} +// - text ...*entity.SubText +func (_e *Text_Expecter) GetTextHeight(textProp interface{}, colWidth interface{}, text ...interface{}) *Text_GetTextHeight_Call { + return &Text_GetTextHeight_Call{Call: _e.mock.On("GetTextHeight", + append([]interface{}{textProp, colWidth}, text...)...)} } -func (_c *Text_GetLinesQuantity_Call) Run(run func(text string, textProp *props.Text, colWidth float64)) *Text_GetLinesQuantity_Call { +func (_c *Text_GetTextHeight_Call) Run(run func(textProp *props.Text, colWidth float64, text ...*entity.SubText)) *Text_GetTextHeight_Call { _c.Call.Run(func(args mock.Arguments) { - run(args[0].(string), args[1].(*props.Text), args[2].(float64)) + variadicArgs := make([]*entity.SubText, len(args)-2) + for i, a := range args[2:] { + if a != nil { + variadicArgs[i] = a.(*entity.SubText) + } + } + run(args[0].(*props.Text), args[1].(float64), variadicArgs...) }) return _c } -func (_c *Text_GetLinesQuantity_Call) Return(_a0 int) *Text_GetLinesQuantity_Call { +func (_c *Text_GetTextHeight_Call) Return(_a0 float64) *Text_GetTextHeight_Call { _c.Call.Return(_a0) return _c } -func (_c *Text_GetLinesQuantity_Call) RunAndReturn(run func(string, *props.Text, float64) int) *Text_GetLinesQuantity_Call { +func (_c *Text_GetTextHeight_Call) RunAndReturn(run func(*props.Text, float64, ...*entity.SubText) float64) *Text_GetTextHeight_Call { _c.Call.Return(run) return _c } diff --git a/pkg/components/text/example_test.go b/pkg/components/text/example_test.go index fc906a9e..f0edaa7f 100644 --- a/pkg/components/text/example_test.go +++ b/pkg/components/text/example_test.go @@ -4,13 +4,17 @@ import ( "github.com/johnfercher/maroto/v2" "github.com/johnfercher/maroto/v2/pkg/components/col" "github.com/johnfercher/maroto/v2/pkg/components/text" + "github.com/johnfercher/maroto/v2/pkg/props" ) // ExampleNew demonstrates how to create a text component. func ExampleNew() { m := maroto.New() - text := text.New("text") + text := text.New("text"). + AddSubText("subText1", props.SubText{Size: 10}). + AddSubText("subText2", props.SubText{Size: 20}) + col := col.New(12).Add(text) m.AddRow(10, col) diff --git a/pkg/components/text/text.go b/pkg/components/text/text.go index 3f278928..5dd167cf 100644 --- a/pkg/components/text/text.go +++ b/pkg/components/text/text.go @@ -12,21 +12,27 @@ import ( ) type Text struct { - value string - prop props.Text + text []*entity.SubText config *entity.Config + props props.Text } -// New is responsible to create an instance of a Text. -func New(value string, ps ...props.Text) core.Component { +// New is responsible for creating an instance of a Text. It will create a subtext +// with value and use props to derive the subtext props +func New(value string, ps ...props.Text) *Text { textProp := props.Text{} + subText := []*entity.SubText{} + if len(ps) > 0 { textProp = ps[0] } + if len(value) > 0 { + subText = append(subText, &entity.SubText{Value: value, Props: props.NewSubText(&textProp)}) + } return &Text{ - value: value, - prop: textProp, + text: subText, + props: textProp, } } @@ -52,10 +58,36 @@ func NewRow(height float64, value string, ps ...props.Text) core.Row { // GetStructure returns the Structure of a Text. func (t *Text) GetStructure() *node.Node[core.Structure] { + node := node.New( + core.Structure{ + Type: "text", + Details: t.props.ToMap(), + }) + + for _, sub := range t.text { + node.AddNext(t.getStructSubText(sub)) + } + + return node +} + +// AddSubText will be used to add a subText to the current text. +// This method allows you to use different styles on the same text +func (t *Text) AddSubText(text string, ps ...props.SubText) *Text { + subTextPs := props.SubText{} + if len(ps) > 0 { + subTextPs = ps[0] + } + + t.text = append(t.text, &entity.SubText{Value: text, Props: subTextPs}) + return t +} + +func (t *Text) getStructSubText(sub *entity.SubText) *node.Node[core.Structure] { str := core.Structure{ - Type: "text", - Value: t.value, - Details: t.prop.ToMap(), + Type: "sub_text", + Value: sub.Value, + Details: sub.Props.ToMap(), } return node.New(str) @@ -63,19 +95,21 @@ func (t *Text) GetStructure() *node.Node[core.Structure] { // GetHeight returns the height that the text will have in the PDF func (t *Text) GetHeight(provider core.Provider, cell *entity.Cell) float64 { - amountLines := provider.GetLinesQuantity(t.value, &t.prop, cell.Width-t.prop.Left-t.prop.Right) - fontHeight := provider.GetFontHeight(&props.Font{Family: t.prop.Family, Style: t.prop.Style, Size: t.prop.Size, Color: t.prop.Color}) - textHeight := float64(amountLines)*fontHeight + float64(amountLines-1)*t.prop.VerticalPadding - return textHeight + t.prop.Top + t.prop.Bottom + amountLines := provider.GetTextHeight(&t.props, cell.Width-t.props.Left-t.props.Right, t.text...) + return amountLines + t.props.Top + t.props.Bottom } // SetConfig sets the config. func (t *Text) SetConfig(config *entity.Config) { t.config = config - t.prop.MakeValid(t.config.DefaultFont) + t.props.MakeValid(t.config.DefaultFont) + for _, sub := range t.text { + sub.Props.MakeValid(t.config.DefaultFont) + } } // Render renders a Text into a PDF context. func (t *Text) Render(provider core.Provider, cell *entity.Cell) { - provider.AddText(t.value, cell, &t.prop) + innerCell := cell.Copy() + provider.AddCustomText(&innerCell, &t.props, t.text...) } diff --git a/pkg/components/text/text_test.go b/pkg/components/text/text_test.go index d66adaac..acc9af6d 100644 --- a/pkg/components/text/text_test.go +++ b/pkg/components/text/text_test.go @@ -83,20 +83,19 @@ func TestNewAutoRow(t *testing.T) { func TestText_Render(t *testing.T) { t.Run("should call provider correctly", func(t *testing.T) { // Arrange - value := "textValue" cell := fixture.CellEntity() prop := fixture.TextProp() - sut := text.New(value, prop) + sut := text.New("textValue", prop) provider := mocks.NewProvider(t) - provider.EXPECT().AddText(value, &cell, &prop) + provider.EXPECT().AddCustomText(&cell, &prop, &entity.SubText{Value: "textValue", Props: props.NewSubText(&prop)}) sut.SetConfig(&entity.Config{}) // Act sut.Render(provider, &cell) // Assert - provider.AssertNumberOfCalls(t, "AddText", 1) + provider.AssertNumberOfCalls(t, "AddCustomText", 1) }) } @@ -115,54 +114,39 @@ func TestText_SetConfig(t *testing.T) { } func TestText_GetHeight(t *testing.T) { - t.Run("When top margin is sent, should increment row height with top margin", func(t *testing.T) { + t.Run("When top and bottom margin are sent, should increment row height with margin", func(t *testing.T) { cell := fixture.CellEntity() font := fixture.FontProp() - textProp := props.Text{Top: 10} + textProp := props.Text{Top: 10, Bottom: 10} textProp.MakeValid(&font) sut := text.New("text", textProp) provider := mocks.NewProvider(t) - provider.EXPECT().GetLinesQuantity("text", &textProp, 100.0).Return(5.0) - provider.EXPECT().GetFontHeight(&font).Return(2.0) + provider.EXPECT().GetTextHeight(&textProp, 100.0, &entity.SubText{Value: "text", Props: props.NewSubText(&textProp)}).Return(20.0) // Act height := sut.GetHeight(provider, &cell) - assert.Equal(t, 20.0, height) + assert.Equal(t, 40.0, height) }) +} - t.Run("When vertical padding is sent, should increment row height with vertical padding", func(t *testing.T) { - cell := fixture.CellEntity() - font := fixture.FontProp() - textProp := props.Text{VerticalPadding: 5} - textProp.MakeValid(&font) - - sut := text.New("text", textProp) - - provider := mocks.NewProvider(t) - provider.EXPECT().GetLinesQuantity("text", &textProp, 100.0).Return(5.0) - provider.EXPECT().GetFontHeight(&font).Return(2.0) - +func TestAddSubText(t *testing.T) { + t.Run("when prop is not sent, should use default", func(t *testing.T) { // Act - height := sut.GetHeight(provider, &cell) - assert.Equal(t, 30.0, height) - }) + sut := text.New("subText 1") + sut.AddSubText("subText 2") - t.Run("When font has a height of 2, should return 10", func(t *testing.T) { - cell := fixture.CellEntity() - font := fixture.FontProp() - textProp := props.Text{} - textProp.MakeValid(&font) - - sut := text.New("text", textProp) - - provider := mocks.NewProvider(t) - provider.EXPECT().GetLinesQuantity("text", &textProp, 100.0).Return(5.0) - provider.EXPECT().GetFontHeight(&font).Return(2.0) + // Assert + test.New(t).Assert(sut.GetStructure()).Equals("components/texts/add_subtext_default_prop.json") + }) + t.Run("when prop is sent, should use the provided", func(t *testing.T) { + ps := fixture.TextProp() // Act - height := sut.GetHeight(provider, &cell) - assert.Equal(t, 10.0, height) + sut := text.New("subText 1", ps) + sut.AddSubText("subText 2", props.NewSubText(&ps)) + // Assert + test.New(t).Assert(sut.GetStructure()).Equals("components/texts/add_subtext_custom_prop.json") }) } diff --git a/pkg/core/components.go b/pkg/core/components.go index f24cd6f1..f560a52b 100644 --- a/pkg/core/components.go +++ b/pkg/core/components.go @@ -35,7 +35,8 @@ type Line interface { // Text is the abstraction which deals of how to add text inside PDF. type Text interface { Add(text string, cell *entity.Cell, textProp *props.Text) - GetLinesQuantity(text string, textProp *props.Text, colWidth float64) int + AddCustomText(cell *entity.Cell, textPs *props.Text, subs ...*entity.SubText) + GetTextHeight(textProp *props.Text, colWidth float64, text ...*entity.SubText) float64 } // Font is the abstraction which deals of how to set fontstyle configurations. diff --git a/pkg/core/entity/subtext.go b/pkg/core/entity/subtext.go new file mode 100644 index 00000000..0c8b083f --- /dev/null +++ b/pkg/core/entity/subtext.go @@ -0,0 +1,9 @@ +package entity + +import "github.com/johnfercher/maroto/v2/pkg/props" + +// SubText represents part of a text, this structure allows different properties in the same text +type SubText struct { + Value string + Props props.SubText +} diff --git a/pkg/core/provider.go b/pkg/core/provider.go index 72ce633b..8442ea16 100644 --- a/pkg/core/provider.go +++ b/pkg/core/provider.go @@ -14,9 +14,10 @@ type Provider interface { // Features AddLine(cell *entity.Cell, prop *props.Line) + AddCustomText(cell *entity.Cell, textPs *props.Text, subs ...*entity.SubText) AddText(text string, cell *entity.Cell, prop *props.Text) GetFontHeight(prop *props.Font) float64 - GetLinesQuantity(text string, textProp *props.Text, colWidth float64) int + GetTextHeight(textProp *props.Text, colWidth float64, text ...*entity.SubText) float64 AddMatrixCode(code string, cell *entity.Cell, prop *props.Rect) AddQrCode(code string, cell *entity.Cell, rect *props.Rect) AddBarCode(code string, cell *entity.Cell, prop *props.Barcode) diff --git a/pkg/props/subtext.go b/pkg/props/subtext.go new file mode 100644 index 00000000..19c29b16 --- /dev/null +++ b/pkg/props/subtext.go @@ -0,0 +1,72 @@ +package props + +import "github.com/johnfercher/maroto/v2/pkg/consts/fontstyle" + +// SubText represents properties from a SubText inside a cell. +type SubText struct { + // Family of the text, ex: consts.Arial, helvetica and etc. + Family string + // Style of the text, ex: consts.Normal, bold and etc. + Style fontstyle.Type + // Size of the text. + Size float64 + // Color define the font style color. + Color *Color + // Hyperlink define a link to be opened when the text is clicked. + Hyperlink *string +} + +func (s *SubText) MakeValid(font *Font) { + undefinedValue := 0.0 + + if s.Family == "" { + s.Family = font.Family + } + + if s.Style == "" { + s.Style = font.Style + } + + if s.Size == undefinedValue { + s.Size = font.Size + } + + if s.Color == nil { + s.Color = font.Color + } +} + +func (s *SubText) ToMap() map[string]interface{} { + m := make(map[string]interface{}) + if s.Family != "" { + m["prop_font_family"] = s.Family + } + + if s.Style != "" { + m["prop_font_style"] = s.Style + } + + if s.Size != 0 { + m["prop_font_size"] = s.Size + } + + if s.Color != nil { + m["prop_color"] = s.Color.ToString() + } + + if s.Hyperlink != nil { + m["prop_hyperlink"] = *s.Hyperlink + } + + return m +} + +func NewSubText(t *Text) SubText { + return SubText{ + Family: t.Family, + Style: t.Style, + Size: t.Size, + Color: t.Color, + Hyperlink: t.Hyperlink, + } +} diff --git a/pkg/props/subtext_test.go b/pkg/props/subtext_test.go new file mode 100644 index 00000000..f188b4da --- /dev/null +++ b/pkg/props/subtext_test.go @@ -0,0 +1,52 @@ +package props_test + +import ( + "testing" + + "github.com/stretchr/testify/assert" + + "github.com/johnfercher/maroto/v2/pkg/consts/fontfamily" + "github.com/johnfercher/maroto/v2/pkg/consts/fontstyle" + "github.com/johnfercher/maroto/v2/pkg/props" +) + +func TestSubText_MakeValid(t *testing.T) { + cases := []struct { + name string + fontProp *props.SubText + assert func(t *testing.T, prop *props.SubText) + }{ + { + "When family is not defined, should define arial", + &props.SubText{ + Family: "", + }, + func(t *testing.T, prop *props.SubText) { + assert.Equal(t, prop.Family, fontfamily.Arial) + }, + }, + { + "When style is not defined, should define normal", + &props.SubText{ + Style: "", + }, + func(t *testing.T, prop *props.SubText) { + assert.Equal(t, prop.Style, fontstyle.Normal) + }, + }, + { + "When size is zero, should define 10.0", + &props.SubText{ + Size: 0.0, + }, + func(t *testing.T, prop *props.SubText) { + assert.Equal(t, prop.Size, 10.0) + }, + }, + } + + for _, c := range cases { + c.fontProp.MakeValid(&props.Font{Family: fontfamily.Arial, Size: 10, Style: fontstyle.Normal}) + c.assert(t, c.fontProp) + } +} diff --git a/test/maroto/components/list/build.json b/test/maroto/components/list/build.json index 43cb567d..42d429ed 100755 --- a/test/maroto/components/list/build.json +++ b/test/maroto/components/list/build.json @@ -10,8 +10,13 @@ "type": "col", "nodes": [ { - "value": "Key", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "Key", + "type": "sub_text" + } + ] } ] }, @@ -20,8 +25,13 @@ "type": "col", "nodes": [ { - "value": "Value", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "Value", + "type": "sub_text" + } + ] } ] } @@ -43,8 +53,13 @@ "type": "col", "nodes": [ { - "value": "key(0)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "key(0)", + "type": "sub_text" + } + ] } ] }, @@ -53,8 +68,13 @@ "type": "col", "nodes": [ { - "value": "value(0)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "value(0)", + "type": "sub_text" + } + ] } ] } @@ -69,8 +89,13 @@ "type": "col", "nodes": [ { - "value": "key(1)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "key(1)", + "type": "sub_text" + } + ] } ] }, @@ -79,8 +104,13 @@ "type": "col", "nodes": [ { - "value": "value(1)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "value(1)", + "type": "sub_text" + } + ] } ] } @@ -102,8 +132,13 @@ "type": "col", "nodes": [ { - "value": "key(2)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "key(2)", + "type": "sub_text" + } + ] } ] }, @@ -112,8 +147,13 @@ "type": "col", "nodes": [ { - "value": "value(2)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "value(2)", + "type": "sub_text" + } + ] } ] } @@ -128,8 +168,13 @@ "type": "col", "nodes": [ { - "value": "key(3)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "key(3)", + "type": "sub_text" + } + ] } ] }, @@ -138,8 +183,13 @@ "type": "col", "nodes": [ { - "value": "value(3)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "value(3)", + "type": "sub_text" + } + ] } ] } @@ -161,8 +211,13 @@ "type": "col", "nodes": [ { - "value": "key(4)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "key(4)", + "type": "sub_text" + } + ] } ] }, @@ -171,8 +226,13 @@ "type": "col", "nodes": [ { - "value": "value(4)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "value(4)", + "type": "sub_text" + } + ] } ] } @@ -187,8 +247,13 @@ "type": "col", "nodes": [ { - "value": "key(5)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "key(5)", + "type": "sub_text" + } + ] } ] }, @@ -197,8 +262,13 @@ "type": "col", "nodes": [ { - "value": "value(5)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "value(5)", + "type": "sub_text" + } + ] } ] } @@ -220,8 +290,13 @@ "type": "col", "nodes": [ { - "value": "key(6)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "key(6)", + "type": "sub_text" + } + ] } ] }, @@ -230,8 +305,13 @@ "type": "col", "nodes": [ { - "value": "value(6)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "value(6)", + "type": "sub_text" + } + ] } ] } @@ -246,8 +326,13 @@ "type": "col", "nodes": [ { - "value": "key(7)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "key(7)", + "type": "sub_text" + } + ] } ] }, @@ -256,8 +341,13 @@ "type": "col", "nodes": [ { - "value": "value(7)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "value(7)", + "type": "sub_text" + } + ] } ] } @@ -279,8 +369,13 @@ "type": "col", "nodes": [ { - "value": "key(8)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "key(8)", + "type": "sub_text" + } + ] } ] }, @@ -289,8 +384,13 @@ "type": "col", "nodes": [ { - "value": "value(8)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "value(8)", + "type": "sub_text" + } + ] } ] } @@ -305,8 +405,13 @@ "type": "col", "nodes": [ { - "value": "key(9)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "key(9)", + "type": "sub_text" + } + ] } ] }, @@ -315,8 +420,13 @@ "type": "col", "nodes": [ { - "value": "value(9)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "value(9)", + "type": "sub_text" + } + ] } ] } diff --git a/test/maroto/components/list/build_from_pointer.json b/test/maroto/components/list/build_from_pointer.json index 43cb567d..42d429ed 100755 --- a/test/maroto/components/list/build_from_pointer.json +++ b/test/maroto/components/list/build_from_pointer.json @@ -10,8 +10,13 @@ "type": "col", "nodes": [ { - "value": "Key", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "Key", + "type": "sub_text" + } + ] } ] }, @@ -20,8 +25,13 @@ "type": "col", "nodes": [ { - "value": "Value", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "Value", + "type": "sub_text" + } + ] } ] } @@ -43,8 +53,13 @@ "type": "col", "nodes": [ { - "value": "key(0)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "key(0)", + "type": "sub_text" + } + ] } ] }, @@ -53,8 +68,13 @@ "type": "col", "nodes": [ { - "value": "value(0)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "value(0)", + "type": "sub_text" + } + ] } ] } @@ -69,8 +89,13 @@ "type": "col", "nodes": [ { - "value": "key(1)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "key(1)", + "type": "sub_text" + } + ] } ] }, @@ -79,8 +104,13 @@ "type": "col", "nodes": [ { - "value": "value(1)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "value(1)", + "type": "sub_text" + } + ] } ] } @@ -102,8 +132,13 @@ "type": "col", "nodes": [ { - "value": "key(2)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "key(2)", + "type": "sub_text" + } + ] } ] }, @@ -112,8 +147,13 @@ "type": "col", "nodes": [ { - "value": "value(2)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "value(2)", + "type": "sub_text" + } + ] } ] } @@ -128,8 +168,13 @@ "type": "col", "nodes": [ { - "value": "key(3)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "key(3)", + "type": "sub_text" + } + ] } ] }, @@ -138,8 +183,13 @@ "type": "col", "nodes": [ { - "value": "value(3)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "value(3)", + "type": "sub_text" + } + ] } ] } @@ -161,8 +211,13 @@ "type": "col", "nodes": [ { - "value": "key(4)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "key(4)", + "type": "sub_text" + } + ] } ] }, @@ -171,8 +226,13 @@ "type": "col", "nodes": [ { - "value": "value(4)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "value(4)", + "type": "sub_text" + } + ] } ] } @@ -187,8 +247,13 @@ "type": "col", "nodes": [ { - "value": "key(5)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "key(5)", + "type": "sub_text" + } + ] } ] }, @@ -197,8 +262,13 @@ "type": "col", "nodes": [ { - "value": "value(5)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "value(5)", + "type": "sub_text" + } + ] } ] } @@ -220,8 +290,13 @@ "type": "col", "nodes": [ { - "value": "key(6)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "key(6)", + "type": "sub_text" + } + ] } ] }, @@ -230,8 +305,13 @@ "type": "col", "nodes": [ { - "value": "value(6)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "value(6)", + "type": "sub_text" + } + ] } ] } @@ -246,8 +326,13 @@ "type": "col", "nodes": [ { - "value": "key(7)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "key(7)", + "type": "sub_text" + } + ] } ] }, @@ -256,8 +341,13 @@ "type": "col", "nodes": [ { - "value": "value(7)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "value(7)", + "type": "sub_text" + } + ] } ] } @@ -279,8 +369,13 @@ "type": "col", "nodes": [ { - "value": "key(8)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "key(8)", + "type": "sub_text" + } + ] } ] }, @@ -289,8 +384,13 @@ "type": "col", "nodes": [ { - "value": "value(8)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "value(8)", + "type": "sub_text" + } + ] } ] } @@ -305,8 +405,13 @@ "type": "col", "nodes": [ { - "value": "key(9)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "key(9)", + "type": "sub_text" + } + ] } ] }, @@ -315,8 +420,13 @@ "type": "col", "nodes": [ { - "value": "value(9)", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "value(9)", + "type": "sub_text" + } + ] } ] } diff --git a/test/maroto/components/texts/add_subtext_custom_prop.json b/test/maroto/components/texts/add_subtext_custom_prop.json new file mode 100755 index 00000000..1b9d5f7b --- /dev/null +++ b/test/maroto/components/texts/add_subtext_custom_prop.json @@ -0,0 +1,40 @@ +{ + "type": "text", + "details": { + "prop_align": "R", + "prop_bottom": 13, + "prop_breakline_strategy": "dash_strategy", + "prop_color": "RGB(100, 50, 200)", + "prop_font_family": "helvetica", + "prop_font_size": 14, + "prop_font_style": "B", + "prop_hyperlink": "https://www.google.com", + "prop_left": 3, + "prop_top": 12, + "prop_vertical_padding": 20 + }, + "nodes": [ + { + "value": "subText 1", + "type": "sub_text", + "details": { + "prop_color": "RGB(100, 50, 200)", + "prop_font_family": "helvetica", + "prop_font_size": 14, + "prop_font_style": "B", + "prop_hyperlink": "https://www.google.com" + } + }, + { + "value": "subText 2", + "type": "sub_text", + "details": { + "prop_color": "RGB(100, 50, 200)", + "prop_font_family": "helvetica", + "prop_font_size": 14, + "prop_font_style": "B", + "prop_hyperlink": "https://www.google.com" + } + } + ] +} \ No newline at end of file diff --git a/test/maroto/components/texts/add_subtext_default_prop.json b/test/maroto/components/texts/add_subtext_default_prop.json new file mode 100755 index 00000000..a549b9ff --- /dev/null +++ b/test/maroto/components/texts/add_subtext_default_prop.json @@ -0,0 +1,13 @@ +{ + "type": "text", + "nodes": [ + { + "value": "subText 1", + "type": "sub_text" + }, + { + "value": "subText 2", + "type": "sub_text" + } + ] +} \ No newline at end of file diff --git a/test/maroto/components/texts/new_text_auto_row_custom_prop.json b/test/maroto/components/texts/new_text_auto_row_custom_prop.json index 08e1cab0..b4d3875e 100755 --- a/test/maroto/components/texts/new_text_auto_row_custom_prop.json +++ b/test/maroto/components/texts/new_text_auto_row_custom_prop.json @@ -10,7 +10,6 @@ }, "nodes": [ { - "value": "code", "type": "text", "details": { "prop_align": "R", @@ -24,7 +23,20 @@ "prop_left": 3, "prop_top": 12, "prop_vertical_padding": 20 - } + }, + "nodes": [ + { + "value": "code", + "type": "sub_text", + "details": { + "prop_color": "RGB(100, 50, 200)", + "prop_font_family": "helvetica", + "prop_font_size": 14, + "prop_font_style": "B", + "prop_hyperlink": "https://www.google.com" + } + } + ] } ] } diff --git a/test/maroto/components/texts/new_text_auto_row_default_prop.json b/test/maroto/components/texts/new_text_auto_row_default_prop.json index 173a2c04..b160c6c9 100755 --- a/test/maroto/components/texts/new_text_auto_row_default_prop.json +++ b/test/maroto/components/texts/new_text_auto_row_default_prop.json @@ -10,8 +10,13 @@ }, "nodes": [ { - "value": "code", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "code", + "type": "sub_text" + } + ] } ] } diff --git a/test/maroto/components/texts/new_text_col_custom_prop.json b/test/maroto/components/texts/new_text_col_custom_prop.json index 3bfb1667..450a45e1 100755 --- a/test/maroto/components/texts/new_text_col_custom_prop.json +++ b/test/maroto/components/texts/new_text_col_custom_prop.json @@ -3,7 +3,6 @@ "type": "col", "nodes": [ { - "value": "code", "type": "text", "details": { "prop_align": "R", @@ -17,7 +16,20 @@ "prop_left": 3, "prop_top": 12, "prop_vertical_padding": 20 - } + }, + "nodes": [ + { + "value": "code", + "type": "sub_text", + "details": { + "prop_color": "RGB(100, 50, 200)", + "prop_font_family": "helvetica", + "prop_font_size": 14, + "prop_font_style": "B", + "prop_hyperlink": "https://www.google.com" + } + } + ] } ] } \ No newline at end of file diff --git a/test/maroto/components/texts/new_text_col_default_prop.json b/test/maroto/components/texts/new_text_col_default_prop.json index ba519354..67dcf6f2 100755 --- a/test/maroto/components/texts/new_text_col_default_prop.json +++ b/test/maroto/components/texts/new_text_col_default_prop.json @@ -3,8 +3,13 @@ "type": "col", "nodes": [ { - "value": "code", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "code", + "type": "sub_text" + } + ] } ] } \ No newline at end of file diff --git a/test/maroto/components/texts/new_text_custom_prop.json b/test/maroto/components/texts/new_text_custom_prop.json index 6ba9bbe4..cb0720c3 100755 --- a/test/maroto/components/texts/new_text_custom_prop.json +++ b/test/maroto/components/texts/new_text_custom_prop.json @@ -1,5 +1,4 @@ { - "value": "code", "type": "text", "details": { "prop_align": "R", @@ -13,5 +12,18 @@ "prop_left": 3, "prop_top": 12, "prop_vertical_padding": 20 - } + }, + "nodes": [ + { + "value": "code", + "type": "sub_text", + "details": { + "prop_color": "RGB(100, 50, 200)", + "prop_font_family": "helvetica", + "prop_font_size": 14, + "prop_font_style": "B", + "prop_hyperlink": "https://www.google.com" + } + } + ] } \ No newline at end of file diff --git a/test/maroto/components/texts/new_text_default_prop.json b/test/maroto/components/texts/new_text_default_prop.json index 7bda82c6..3679363c 100755 --- a/test/maroto/components/texts/new_text_default_prop.json +++ b/test/maroto/components/texts/new_text_default_prop.json @@ -1,4 +1,9 @@ { - "value": "code", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "code", + "type": "sub_text" + } + ] } \ No newline at end of file diff --git a/test/maroto/components/texts/new_text_empty.json b/test/maroto/components/texts/new_text_empty.json new file mode 100644 index 00000000..64ff2bec --- /dev/null +++ b/test/maroto/components/texts/new_text_empty.json @@ -0,0 +1,9 @@ +{ + "type": "text", + "nodes": [ + { + "type": "sub_text", + "value": "" + } + ] +} \ No newline at end of file diff --git a/test/maroto/components/texts/new_text_row_custom_prop.json b/test/maroto/components/texts/new_text_row_custom_prop.json index 8f03da4b..a44f8597 100755 --- a/test/maroto/components/texts/new_text_row_custom_prop.json +++ b/test/maroto/components/texts/new_text_row_custom_prop.json @@ -10,7 +10,6 @@ }, "nodes": [ { - "value": "code", "type": "text", "details": { "prop_align": "R", @@ -24,7 +23,20 @@ "prop_left": 3, "prop_top": 12, "prop_vertical_padding": 20 - } + }, + "nodes": [ + { + "value": "code", + "type": "sub_text", + "details": { + "prop_color": "RGB(100, 50, 200)", + "prop_font_family": "helvetica", + "prop_font_size": 14, + "prop_font_style": "B", + "prop_hyperlink": "https://www.google.com" + } + } + ] } ] } diff --git a/test/maroto/components/texts/new_text_row_default_prop.json b/test/maroto/components/texts/new_text_row_default_prop.json index 72636cdc..1902e607 100755 --- a/test/maroto/components/texts/new_text_row_default_prop.json +++ b/test/maroto/components/texts/new_text_row_default_prop.json @@ -10,8 +10,13 @@ }, "nodes": [ { - "value": "code", - "type": "text" + "type": "text", + "nodes": [ + { + "value": "code", + "type": "sub_text" + } + ] } ] } diff --git a/test/maroto/example_unit_test.json b/test/maroto/example_unit_test.json index 16a126da..913e9a77 100755 --- a/test/maroto/example_unit_test.json +++ b/test/maroto/example_unit_test.json @@ -120,7 +120,6 @@ "type": "col", "nodes": [ { - "value": "text", "type": "text", "details": { "prop_align": "L", @@ -128,7 +127,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } diff --git a/test/maroto/examples/addpage.json b/test/maroto/examples/addpage.json index 70303b66..6b8badbb 100755 --- a/test/maroto/examples/addpage.json +++ b/test/maroto/examples/addpage.json @@ -37,7 +37,6 @@ }, "nodes": [ { - "value": "page1 row1", "type": "text", "details": { "prop_align": "L", @@ -45,7 +44,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "page1 row1", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -63,7 +73,6 @@ }, "nodes": [ { - "value": "page1 row2", "type": "text", "details": { "prop_align": "L", @@ -71,7 +80,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "page1 row2", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -89,7 +109,6 @@ }, "nodes": [ { - "value": "page1 row3", "type": "text", "details": { "prop_align": "L", @@ -97,7 +116,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "page1 row3", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -115,7 +145,6 @@ }, "nodes": [ { - "value": "page1 row4", "type": "text", "details": { "prop_align": "L", @@ -123,7 +152,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "page1 row4", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -141,7 +181,6 @@ }, "nodes": [ { - "value": "page1 row5", "type": "text", "details": { "prop_align": "L", @@ -149,7 +188,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "page1 row5", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -167,7 +217,6 @@ }, "nodes": [ { - "value": "page1 row6", "type": "text", "details": { "prop_align": "L", @@ -175,7 +224,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "page1 row6", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -193,7 +253,6 @@ }, "nodes": [ { - "value": "page1 row7", "type": "text", "details": { "prop_align": "L", @@ -201,7 +260,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "page1 row7", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -219,7 +289,6 @@ }, "nodes": [ { - "value": "page1 row8", "type": "text", "details": { "prop_align": "L", @@ -227,7 +296,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "page1 row8", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -260,7 +340,6 @@ }, "nodes": [ { - "value": "page1 row9", "type": "text", "details": { "prop_align": "L", @@ -268,7 +347,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "page1 row9", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -301,7 +391,6 @@ }, "nodes": [ { - "value": "page2 row1", "type": "text", "details": { "prop_align": "L", @@ -309,7 +398,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "page2 row1", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -342,7 +442,6 @@ }, "nodes": [ { - "value": "page3 row1", "type": "text", "details": { "prop_align": "L", @@ -350,7 +449,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "page3 row1", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } diff --git a/test/maroto/examples/autorow.json b/test/maroto/examples/autorow.json index 88b28894..471809bf 100755 --- a/test/maroto/examples/autorow.json +++ b/test/maroto/examples/autorow.json @@ -42,7 +42,6 @@ "type": "col", "nodes": [ { - "value": "Numa toca no chão vivia um hobbit. Não uma toca nojenta, suja, úmida, \ncheia de pontas de minhocas e um cheiro de limo, nem tam pouco uma toca seca, vazia, arenosa, \nsem nenhum lugar onde se sentar ou onde comer: era uma toca de hobbit, e isso significa conforto.\nEla tinha uma porta perfeitamente redonda feito uma escotilha, pintada de verde, com uma maçaneta\namarela e brilhante de latão exatamente no meio. A porta se abria para um corredor em forma de tubo,\nfeito um túnel: um túnel muito confortável, sem fumaça, de paredes com painéis e assoalhos\nazulejados e acarpetados, com cadeiras enceradas e montes e montes de cabieiros para chapéus e\ncasacos - o hobbit apreciava visitas.", "type": "text", "details": { "prop_align": "L", @@ -50,7 +49,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Numa toca no chão vivia um hobbit. Não uma toca nojenta, suja, úmida, \ncheia de pontas de minhocas e um cheiro de limo, nem tam pouco uma toca seca, vazia, arenosa, \nsem nenhum lugar onde se sentar ou onde comer: era uma toca de hobbit, e isso significa conforto.\nEla tinha uma porta perfeitamente redonda feito uma escotilha, pintada de verde, com uma maçaneta\namarela e brilhante de latão exatamente no meio. A porta se abria para um corredor em forma de tubo,\nfeito um túnel: um túnel muito confortável, sem fumaça, de paredes com painéis e assoalhos\nazulejados e acarpetados, com cadeiras enceradas e montes e montes de cabieiros para chapéus e\ncasacos - o hobbit apreciava visitas.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -78,7 +88,6 @@ "type": "col", "nodes": [ { - "value": "Numa toca no chão vivia um hobbit. Não uma toca nojenta, suja, úmida, \ncheia de pontas de minhocas e um cheiro de limo, nem tam pouco uma toca seca, vazia, arenosa, \nsem nenhum lugar onde se sentar ou onde comer: era uma toca de hobbit, e isso significa conforto.\nEla tinha uma porta perfeitamente redonda feito uma escotilha, pintada de verde, com uma maçaneta\namarela e brilhante de latão exatamente no meio. A porta se abria para um corredor em forma de tubo,\nfeito um túnel: um túnel muito confortável, sem fumaça, de paredes com painéis e assoalhos\nazulejados e acarpetados, com cadeiras enceradas e montes e montes de cabieiros para chapéus e\ncasacos - o hobbit apreciava visitas.", "type": "text", "details": { "prop_align": "L", @@ -86,7 +95,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 13 - } + }, + "nodes": [ + { + "value": "Numa toca no chão vivia um hobbit. Não uma toca nojenta, suja, úmida, \ncheia de pontas de minhocas e um cheiro de limo, nem tam pouco uma toca seca, vazia, arenosa, \nsem nenhum lugar onde se sentar ou onde comer: era uma toca de hobbit, e isso significa conforto.\nEla tinha uma porta perfeitamente redonda feito uma escotilha, pintada de verde, com uma maçaneta\namarela e brilhante de latão exatamente no meio. A porta se abria para um corredor em forma de tubo,\nfeito um túnel: um túnel muito confortável, sem fumaça, de paredes com painéis e assoalhos\nazulejados e acarpetados, com cadeiras enceradas e montes e montes de cabieiros para chapéus e\ncasacos - o hobbit apreciava visitas.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 13 + } + } + ] } ] } @@ -114,7 +134,6 @@ "type": "col", "nodes": [ { - "value": "Numa toca no chão vivia um hobbit. Não uma toca nojenta, suja, úmida, \ncheia de pontas de minhocas e um cheiro de limo, nem tam pouco uma toca seca, vazia, arenosa, \nsem nenhum lugar onde se sentar ou onde comer: era uma toca de hobbit, e isso significa conforto.\nEla tinha uma porta perfeitamente redonda feito uma escotilha, pintada de verde, com uma maçaneta\namarela e brilhante de latão exatamente no meio. A porta se abria para um corredor em forma de tubo,\nfeito um túnel: um túnel muito confortável, sem fumaça, de paredes com painéis e assoalhos\nazulejados e acarpetados, com cadeiras enceradas e montes e montes de cabieiros para chapéus e\ncasacos - o hobbit apreciava visitas.", "type": "text", "details": { "prop_align": "L", @@ -124,7 +143,18 @@ "prop_font_family": "arial", "prop_font_size": 13, "prop_top": 8 - } + }, + "nodes": [ + { + "value": "Numa toca no chão vivia um hobbit. Não uma toca nojenta, suja, úmida, \ncheia de pontas de minhocas e um cheiro de limo, nem tam pouco uma toca seca, vazia, arenosa, \nsem nenhum lugar onde se sentar ou onde comer: era uma toca de hobbit, e isso significa conforto.\nEla tinha uma porta perfeitamente redonda feito uma escotilha, pintada de verde, com uma maçaneta\namarela e brilhante de latão exatamente no meio. A porta se abria para um corredor em forma de tubo,\nfeito um túnel: um túnel muito confortável, sem fumaça, de paredes com painéis e assoalhos\nazulejados e acarpetados, com cadeiras enceradas e montes e montes de cabieiros para chapéus e\ncasacos - o hobbit apreciava visitas.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 13 + } + } + ] } ] } @@ -154,7 +184,6 @@ "type": "col", "nodes": [ { - "value": "Numa toca no chão vivia um hobbit. Não uma toca nojenta, suja, úmida, \ncheia de pontas de minhocas e um cheiro de limo, nem tam pouco uma toca seca, vazia, arenosa, \nsem nenhum lugar onde se sentar ou onde comer: era uma toca de hobbit, e isso significa conforto.\nEla tinha uma porta perfeitamente redonda feito uma escotilha, pintada de verde, com uma maçaneta\namarela e brilhante de latão exatamente no meio. A porta se abria para um corredor em forma de tubo,\nfeito um túnel: um túnel muito confortável, sem fumaça, de paredes com painéis e assoalhos\nazulejados e acarpetados, com cadeiras enceradas e montes e montes de cabieiros para chapéus e\ncasacos - o hobbit apreciava visitas.", "type": "text", "details": { "prop_align": "L", @@ -162,7 +191,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Numa toca no chão vivia um hobbit. Não uma toca nojenta, suja, úmida, \ncheia de pontas de minhocas e um cheiro de limo, nem tam pouco uma toca seca, vazia, arenosa, \nsem nenhum lugar onde se sentar ou onde comer: era uma toca de hobbit, e isso significa conforto.\nEla tinha uma porta perfeitamente redonda feito uma escotilha, pintada de verde, com uma maçaneta\namarela e brilhante de latão exatamente no meio. A porta se abria para um corredor em forma de tubo,\nfeito um túnel: um túnel muito confortável, sem fumaça, de paredes com painéis e assoalhos\nazulejados e acarpetados, com cadeiras enceradas e montes e montes de cabieiros para chapéus e\ncasacos - o hobbit apreciava visitas.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -190,7 +230,6 @@ "type": "col", "nodes": [ { - "value": "Numa toca no chão vivia um hobbit. Não uma toca nojenta, suja, úmida, \ncheia de pontas de minhocas e um cheiro de limo, nem tam pouco uma toca seca, vazia, arenosa, \nsem nenhum lugar onde se sentar ou onde comer: era uma toca de hobbit, e isso significa conforto.\nEla tinha uma porta perfeitamente redonda feito uma escotilha, pintada de verde, com uma maçaneta\namarela e brilhante de latão exatamente no meio. A porta se abria para um corredor em forma de tubo,\nfeito um túnel: um túnel muito confortável, sem fumaça, de paredes com painéis e assoalhos\nazulejados e acarpetados, com cadeiras enceradas e montes e montes de cabieiros para chapéus e\ncasacos - o hobbit apreciava visitas.", "type": "text", "details": { "prop_align": "L", @@ -198,7 +237,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Numa toca no chão vivia um hobbit. Não uma toca nojenta, suja, úmida, \ncheia de pontas de minhocas e um cheiro de limo, nem tam pouco uma toca seca, vazia, arenosa, \nsem nenhum lugar onde se sentar ou onde comer: era uma toca de hobbit, e isso significa conforto.\nEla tinha uma porta perfeitamente redonda feito uma escotilha, pintada de verde, com uma maçaneta\namarela e brilhante de latão exatamente no meio. A porta se abria para um corredor em forma de tubo,\nfeito um túnel: um túnel muito confortável, sem fumaça, de paredes com painéis e assoalhos\nazulejados e acarpetados, com cadeiras enceradas e montes e montes de cabieiros para chapéus e\ncasacos - o hobbit apreciava visitas.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -241,7 +291,6 @@ "type": "col", "nodes": [ { - "value": "Numa toca no chão vivia um hobbit. Não uma toca nojenta, suja, úmida, \ncheia de pontas de minhocas e um cheiro de limo, nem tam pouco uma toca seca, vazia, arenosa, \nsem nenhum lugar onde se sentar ou onde comer: era uma toca de hobbit, e isso significa conforto.\nEla tinha uma porta perfeitamente redonda feito uma escotilha, pintada de verde, com uma maçaneta\namarela e brilhante de latão exatamente no meio. A porta se abria para um corredor em forma de tubo,\nfeito um túnel: um túnel muito confortável, sem fumaça, de paredes com painéis e assoalhos\nazulejados e acarpetados, com cadeiras enceradas e montes e montes de cabieiros para chapéus e\ncasacos - o hobbit apreciava visitas.", "type": "text", "details": { "prop_align": "L", @@ -249,7 +298,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Numa toca no chão vivia um hobbit. Não uma toca nojenta, suja, úmida, \ncheia de pontas de minhocas e um cheiro de limo, nem tam pouco uma toca seca, vazia, arenosa, \nsem nenhum lugar onde se sentar ou onde comer: era uma toca de hobbit, e isso significa conforto.\nEla tinha uma porta perfeitamente redonda feito uma escotilha, pintada de verde, com uma maçaneta\namarela e brilhante de latão exatamente no meio. A porta se abria para um corredor em forma de tubo,\nfeito um túnel: um túnel muito confortável, sem fumaça, de paredes com painéis e assoalhos\nazulejados e acarpetados, com cadeiras enceradas e montes e montes de cabieiros para chapéus e\ncasacos - o hobbit apreciava visitas.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } diff --git a/test/maroto/examples/background.json b/test/maroto/examples/background.json index 499a80e5..f56e1501 100755 --- a/test/maroto/examples/background.json +++ b/test/maroto/examples/background.json @@ -44,7 +44,6 @@ "type": "col", "nodes": [ { - "value": "O GDG-Petrópolis certifica que Fulano de Tal 123 participou do Evento Exemplo 123 no dia 2019-03-30.", "type": "text", "details": { "prop_align": "L", @@ -52,7 +51,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 18 - } + }, + "nodes": [ + { + "value": "O GDG-Petrópolis certifica que Fulano de Tal 123 participou do Evento Exemplo 123 no dia 2019-03-30.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 18 + } + } + ] } ] }, @@ -136,7 +146,6 @@ "type": "col", "nodes": [ { - "value": "O GDG-Petrópolis certifica que Fulano de Tal 123 participou do Evento Exemplo 123 no dia 2019-03-30.", "type": "text", "details": { "prop_align": "L", @@ -144,7 +153,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 18 - } + }, + "nodes": [ + { + "value": "O GDG-Petrópolis certifica que Fulano de Tal 123 participou do Evento Exemplo 123 no dia 2019-03-30.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 18 + } + } + ] } ] }, @@ -228,7 +248,6 @@ "type": "col", "nodes": [ { - "value": "O GDG-Petrópolis certifica que Fulano de Tal 123 participou do Evento Exemplo 123 no dia 2019-03-30.", "type": "text", "details": { "prop_align": "L", @@ -236,7 +255,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 18 - } + }, + "nodes": [ + { + "value": "O GDG-Petrópolis certifica que Fulano de Tal 123 participou do Evento Exemplo 123 no dia 2019-03-30.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 18 + } + } + ] } ] }, @@ -320,7 +350,6 @@ "type": "col", "nodes": [ { - "value": "O GDG-Petrópolis certifica que Fulano de Tal 123 participou do Evento Exemplo 123 no dia 2019-03-30.", "type": "text", "details": { "prop_align": "L", @@ -328,7 +357,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 18 - } + }, + "nodes": [ + { + "value": "O GDG-Petrópolis certifica que Fulano de Tal 123 participou do Evento Exemplo 123 no dia 2019-03-30.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 18 + } + } + ] } ] }, @@ -412,7 +452,6 @@ "type": "col", "nodes": [ { - "value": "O GDG-Petrópolis certifica que Fulano de Tal 123 participou do Evento Exemplo 123 no dia 2019-03-30.", "type": "text", "details": { "prop_align": "L", @@ -420,7 +459,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 18 - } + }, + "nodes": [ + { + "value": "O GDG-Petrópolis certifica que Fulano de Tal 123 participou do Evento Exemplo 123 no dia 2019-03-30.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 18 + } + } + ] } ] }, diff --git a/test/maroto/examples/billing.json b/test/maroto/examples/billing.json index bf9309a0..f0063909 100755 --- a/test/maroto/examples/billing.json +++ b/test/maroto/examples/billing.json @@ -51,7 +51,6 @@ "type": "col", "nodes": [ { - "value": "AnyCompany Name Inc. 851 Any Street Name, Suite 120, Any City, CA 45123.", "type": "text", "details": { "prop_align": "R", @@ -59,10 +58,20 @@ "prop_color": "RGB(150, 10, 10)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "AnyCompany Name Inc. 851 Any Street Name, Suite 120, Any City, CA 45123.", + "type": "sub_text", + "details": { + "prop_color": "RGB(150, 10, 10)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] }, { - "value": "Tel: 55 024 12345-1234", "type": "text", "details": { "prop_align": "R", @@ -72,10 +81,21 @@ "prop_font_size": 8, "prop_font_style": "BI", "prop_top": 12 - } + }, + "nodes": [ + { + "value": "Tel: 55 024 12345-1234", + "type": "sub_text", + "details": { + "prop_color": "RGB(10, 10, 150)", + "prop_font_family": "arial", + "prop_font_size": 8, + "prop_font_style": "BI" + } + } + ] }, { - "value": "www.mycompany.com", "type": "text", "details": { "prop_align": "R", @@ -85,7 +105,19 @@ "prop_font_size": 8, "prop_font_style": "BI", "prop_top": 15 - } + }, + "nodes": [ + { + "value": "www.mycompany.com", + "type": "sub_text", + "details": { + "prop_color": "RGB(10, 10, 150)", + "prop_font_family": "arial", + "prop_font_size": 8, + "prop_font_style": "BI" + } + } + ] } ] } @@ -103,7 +135,6 @@ }, "nodes": [ { - "value": "Invoice ABC123456789", "type": "text", "details": { "prop_align": "C", @@ -113,7 +144,19 @@ "prop_font_size": 10, "prop_font_style": "B", "prop_top": 3 - } + }, + "nodes": [ + { + "value": "Invoice ABC123456789", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_font_style": "B" + } + } + ] } ] } @@ -131,7 +174,6 @@ "type": "col", "nodes": [ { - "value": "Transactions", "type": "text", "details": { "prop_align": "C", @@ -141,7 +183,19 @@ "prop_font_size": 9, "prop_font_style": "B", "prop_top": 1.5 - } + }, + "nodes": [ + { + "value": "Transactions", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 9, + "prop_font_style": "B" + } + } + ] } ] } @@ -160,7 +214,6 @@ "type": "col", "nodes": [ { - "value": "Product", "type": "text", "details": { "prop_align": "C", @@ -169,7 +222,19 @@ "prop_font_family": "arial", "prop_font_size": 9, "prop_font_style": "B" - } + }, + "nodes": [ + { + "value": "Product", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 9, + "prop_font_style": "B" + } + } + ] } ] }, @@ -178,7 +243,6 @@ "type": "col", "nodes": [ { - "value": "Quantity", "type": "text", "details": { "prop_align": "C", @@ -187,7 +251,19 @@ "prop_font_family": "arial", "prop_font_size": 9, "prop_font_style": "B" - } + }, + "nodes": [ + { + "value": "Quantity", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 9, + "prop_font_style": "B" + } + } + ] } ] }, @@ -196,7 +272,6 @@ "type": "col", "nodes": [ { - "value": "Price", "type": "text", "details": { "prop_align": "C", @@ -205,7 +280,19 @@ "prop_font_family": "arial", "prop_font_size": 9, "prop_font_style": "B" - } + }, + "nodes": [ + { + "value": "Price", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 9, + "prop_font_style": "B" + } + } + ] } ] } @@ -227,7 +314,6 @@ "type": "col", "nodes": [ { - "value": "Swamp", "type": "text", "details": { "prop_align": "C", @@ -235,7 +321,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Swamp", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -244,7 +341,6 @@ "type": "col", "nodes": [ { - "value": "12", "type": "text", "details": { "prop_align": "C", @@ -252,7 +348,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "12", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -261,7 +368,6 @@ "type": "col", "nodes": [ { - "value": "R$ 4,00", "type": "text", "details": { "prop_align": "C", @@ -269,7 +375,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "R$ 4,00", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -288,7 +405,6 @@ "type": "col", "nodes": [ { - "value": "Sorin, A Planeswalker", "type": "text", "details": { "prop_align": "C", @@ -296,7 +412,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Sorin, A Planeswalker", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -305,7 +432,6 @@ "type": "col", "nodes": [ { - "value": "4", "type": "text", "details": { "prop_align": "C", @@ -313,7 +439,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "4", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -322,7 +459,6 @@ "type": "col", "nodes": [ { - "value": "R$ 90,00", "type": "text", "details": { "prop_align": "C", @@ -330,7 +466,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "R$ 90,00", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -352,7 +499,6 @@ "type": "col", "nodes": [ { - "value": "Tassa", "type": "text", "details": { "prop_align": "C", @@ -360,7 +506,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Tassa", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -369,7 +526,6 @@ "type": "col", "nodes": [ { - "value": "4", "type": "text", "details": { "prop_align": "C", @@ -377,7 +533,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "4", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -386,7 +553,6 @@ "type": "col", "nodes": [ { - "value": "R$ 30,00", "type": "text", "details": { "prop_align": "C", @@ -394,7 +560,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "R$ 30,00", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -413,7 +590,6 @@ "type": "col", "nodes": [ { - "value": "Skinrender", "type": "text", "details": { "prop_align": "C", @@ -421,7 +597,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Skinrender", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -430,7 +617,6 @@ "type": "col", "nodes": [ { - "value": "4", "type": "text", "details": { "prop_align": "C", @@ -438,7 +624,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "4", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -447,7 +644,6 @@ "type": "col", "nodes": [ { - "value": "R$ 9,00", "type": "text", "details": { "prop_align": "C", @@ -455,7 +651,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "R$ 9,00", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -477,7 +684,6 @@ "type": "col", "nodes": [ { - "value": "Island", "type": "text", "details": { "prop_align": "C", @@ -485,7 +691,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Island", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -494,7 +711,6 @@ "type": "col", "nodes": [ { - "value": "12", "type": "text", "details": { "prop_align": "C", @@ -502,7 +718,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "12", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -511,7 +738,6 @@ "type": "col", "nodes": [ { - "value": "R$ 4,00", "type": "text", "details": { "prop_align": "C", @@ -519,7 +745,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "R$ 4,00", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -538,7 +775,6 @@ "type": "col", "nodes": [ { - "value": "Mountain", "type": "text", "details": { "prop_align": "C", @@ -546,7 +782,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Mountain", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -555,7 +802,6 @@ "type": "col", "nodes": [ { - "value": "12", "type": "text", "details": { "prop_align": "C", @@ -563,7 +809,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "12", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -572,7 +829,6 @@ "type": "col", "nodes": [ { - "value": "R$ 4,00", "type": "text", "details": { "prop_align": "C", @@ -580,7 +836,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "R$ 4,00", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -602,7 +869,6 @@ "type": "col", "nodes": [ { - "value": "Plain", "type": "text", "details": { "prop_align": "C", @@ -610,7 +876,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Plain", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -619,7 +896,6 @@ "type": "col", "nodes": [ { - "value": "12", "type": "text", "details": { "prop_align": "C", @@ -627,7 +903,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "12", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -636,7 +923,6 @@ "type": "col", "nodes": [ { - "value": "R$ 4,00", "type": "text", "details": { "prop_align": "C", @@ -644,7 +930,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "R$ 4,00", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -663,7 +960,6 @@ "type": "col", "nodes": [ { - "value": "Black Lotus", "type": "text", "details": { "prop_align": "C", @@ -671,7 +967,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Black Lotus", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -680,7 +987,6 @@ "type": "col", "nodes": [ { - "value": "1", "type": "text", "details": { "prop_align": "C", @@ -688,7 +994,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "1", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -697,7 +1014,6 @@ "type": "col", "nodes": [ { - "value": "R$ 1.000,00", "type": "text", "details": { "prop_align": "C", @@ -705,7 +1021,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "R$ 1.000,00", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -727,7 +1054,6 @@ "type": "col", "nodes": [ { - "value": "Time Walk", "type": "text", "details": { "prop_align": "C", @@ -735,7 +1061,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Time Walk", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -744,7 +1081,6 @@ "type": "col", "nodes": [ { - "value": "1", "type": "text", "details": { "prop_align": "C", @@ -752,7 +1088,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "1", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -761,7 +1108,6 @@ "type": "col", "nodes": [ { - "value": "R$ 1.000,00", "type": "text", "details": { "prop_align": "C", @@ -769,7 +1115,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "R$ 1.000,00", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -788,7 +1145,6 @@ "type": "col", "nodes": [ { - "value": "Emberclave", "type": "text", "details": { "prop_align": "C", @@ -796,7 +1152,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Emberclave", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -805,7 +1172,6 @@ "type": "col", "nodes": [ { - "value": "4", "type": "text", "details": { "prop_align": "C", @@ -813,7 +1179,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "4", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -822,7 +1199,6 @@ "type": "col", "nodes": [ { - "value": "R$ 44,00", "type": "text", "details": { "prop_align": "C", @@ -830,7 +1206,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "R$ 44,00", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -852,7 +1239,6 @@ "type": "col", "nodes": [ { - "value": "Anax", "type": "text", "details": { "prop_align": "C", @@ -860,7 +1246,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Anax", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -869,7 +1266,6 @@ "type": "col", "nodes": [ { - "value": "4", "type": "text", "details": { "prop_align": "C", @@ -877,7 +1273,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "4", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -886,7 +1293,6 @@ "type": "col", "nodes": [ { - "value": "R$ 32,00", "type": "text", "details": { "prop_align": "C", @@ -894,7 +1300,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "R$ 32,00", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -913,7 +1330,6 @@ "type": "col", "nodes": [ { - "value": "Murderous Rider", "type": "text", "details": { "prop_align": "C", @@ -921,7 +1337,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Murderous Rider", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -930,7 +1357,6 @@ "type": "col", "nodes": [ { - "value": "4", "type": "text", "details": { "prop_align": "C", @@ -938,7 +1364,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "4", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -947,7 +1384,6 @@ "type": "col", "nodes": [ { - "value": "R$ 22,00", "type": "text", "details": { "prop_align": "C", @@ -955,7 +1391,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "R$ 22,00", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -977,7 +1424,6 @@ "type": "col", "nodes": [ { - "value": "Gray Merchant of Asphodel", "type": "text", "details": { "prop_align": "C", @@ -985,7 +1431,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Gray Merchant of Asphodel", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -994,7 +1451,6 @@ "type": "col", "nodes": [ { - "value": "4", "type": "text", "details": { "prop_align": "C", @@ -1002,7 +1458,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "4", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -1011,7 +1478,6 @@ "type": "col", "nodes": [ { - "value": "R$ 2,00", "type": "text", "details": { "prop_align": "C", @@ -1019,7 +1485,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "R$ 2,00", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1038,7 +1515,6 @@ "type": "col", "nodes": [ { - "value": "Ajani's Pridemate", "type": "text", "details": { "prop_align": "C", @@ -1046,7 +1522,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Ajani's Pridemate", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -1055,7 +1542,6 @@ "type": "col", "nodes": [ { - "value": "4", "type": "text", "details": { "prop_align": "C", @@ -1063,7 +1549,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "4", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -1072,7 +1569,6 @@ "type": "col", "nodes": [ { - "value": "R$ 2,00", "type": "text", "details": { "prop_align": "C", @@ -1080,7 +1576,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "R$ 2,00", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1102,7 +1609,6 @@ "type": "col", "nodes": [ { - "value": "Renan, Chatuba", "type": "text", "details": { "prop_align": "C", @@ -1110,7 +1616,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Renan, Chatuba", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -1119,7 +1636,6 @@ "type": "col", "nodes": [ { - "value": "4", "type": "text", "details": { "prop_align": "C", @@ -1127,7 +1643,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "4", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -1136,7 +1663,6 @@ "type": "col", "nodes": [ { - "value": "R$ 19,00", "type": "text", "details": { "prop_align": "C", @@ -1144,7 +1670,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "R$ 19,00", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1163,7 +1700,6 @@ "type": "col", "nodes": [ { - "value": "Tymarett", "type": "text", "details": { "prop_align": "C", @@ -1171,7 +1707,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Tymarett", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -1180,7 +1727,6 @@ "type": "col", "nodes": [ { - "value": "4", "type": "text", "details": { "prop_align": "C", @@ -1188,7 +1734,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "4", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -1197,7 +1754,6 @@ "type": "col", "nodes": [ { - "value": "R$ 13,00", "type": "text", "details": { "prop_align": "C", @@ -1205,7 +1761,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "R$ 13,00", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1227,7 +1794,6 @@ "type": "col", "nodes": [ { - "value": "Doom Blade", "type": "text", "details": { "prop_align": "C", @@ -1235,7 +1801,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Doom Blade", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -1244,7 +1821,6 @@ "type": "col", "nodes": [ { - "value": "4", "type": "text", "details": { "prop_align": "C", @@ -1252,7 +1828,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "4", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -1261,7 +1848,6 @@ "type": "col", "nodes": [ { - "value": "R$ 5,00", "type": "text", "details": { "prop_align": "C", @@ -1269,7 +1855,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "R$ 5,00", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1288,7 +1885,6 @@ "type": "col", "nodes": [ { - "value": "Dark Lord", "type": "text", "details": { "prop_align": "C", @@ -1296,7 +1892,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dark Lord", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -1305,7 +1912,6 @@ "type": "col", "nodes": [ { - "value": "3", "type": "text", "details": { "prop_align": "C", @@ -1313,7 +1919,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "3", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -1322,7 +1939,6 @@ "type": "col", "nodes": [ { - "value": "R$ 7,00", "type": "text", "details": { "prop_align": "C", @@ -1330,7 +1946,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "R$ 7,00", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1352,7 +1979,6 @@ "type": "col", "nodes": [ { - "value": "Memory of Thanatos", "type": "text", "details": { "prop_align": "C", @@ -1360,7 +1986,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Memory of Thanatos", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -1369,7 +2006,6 @@ "type": "col", "nodes": [ { - "value": "3", "type": "text", "details": { "prop_align": "C", @@ -1377,7 +2013,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "3", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -1386,7 +2033,6 @@ "type": "col", "nodes": [ { - "value": "R$ 32,00", "type": "text", "details": { "prop_align": "C", @@ -1394,7 +2040,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "R$ 32,00", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1413,7 +2070,6 @@ "type": "col", "nodes": [ { - "value": "Poring", "type": "text", "details": { "prop_align": "C", @@ -1421,7 +2077,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Poring", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -1430,7 +2097,6 @@ "type": "col", "nodes": [ { - "value": "4", "type": "text", "details": { "prop_align": "C", @@ -1438,7 +2104,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "4", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -1447,7 +2124,6 @@ "type": "col", "nodes": [ { - "value": "R$ 1,00", "type": "text", "details": { "prop_align": "C", @@ -1455,7 +2131,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "R$ 1,00", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1477,7 +2164,6 @@ "type": "col", "nodes": [ { - "value": "Deviling", "type": "text", "details": { "prop_align": "C", @@ -1485,7 +2171,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Deviling", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -1494,7 +2191,6 @@ "type": "col", "nodes": [ { - "value": "4", "type": "text", "details": { "prop_align": "C", @@ -1502,7 +2198,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "4", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -1511,7 +2218,6 @@ "type": "col", "nodes": [ { - "value": "R$ 99,00", "type": "text", "details": { "prop_align": "C", @@ -1519,7 +2225,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "R$ 99,00", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1538,7 +2255,6 @@ "type": "col", "nodes": [ { - "value": "Seiya", "type": "text", "details": { "prop_align": "C", @@ -1546,7 +2262,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Seiya", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -1555,7 +2282,6 @@ "type": "col", "nodes": [ { - "value": "4", "type": "text", "details": { "prop_align": "C", @@ -1563,7 +2289,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "4", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -1572,7 +2309,6 @@ "type": "col", "nodes": [ { - "value": "R$ 45,00", "type": "text", "details": { "prop_align": "C", @@ -1580,7 +2316,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "R$ 45,00", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1602,7 +2349,6 @@ "type": "col", "nodes": [ { - "value": "Harry Potter", "type": "text", "details": { "prop_align": "C", @@ -1610,7 +2356,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Harry Potter", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -1619,7 +2376,6 @@ "type": "col", "nodes": [ { - "value": "4", "type": "text", "details": { "prop_align": "C", @@ -1627,7 +2383,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "4", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -1636,7 +2403,6 @@ "type": "col", "nodes": [ { - "value": "R$ 62,00", "type": "text", "details": { "prop_align": "C", @@ -1644,7 +2410,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "R$ 62,00", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1663,7 +2440,6 @@ "type": "col", "nodes": [ { - "value": "Goku", "type": "text", "details": { "prop_align": "C", @@ -1671,7 +2447,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Goku", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -1680,7 +2467,6 @@ "type": "col", "nodes": [ { - "value": "4", "type": "text", "details": { "prop_align": "C", @@ -1688,7 +2474,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "4", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -1697,7 +2494,6 @@ "type": "col", "nodes": [ { - "value": "R$ 77,00", "type": "text", "details": { "prop_align": "C", @@ -1705,7 +2501,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "R$ 77,00", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1727,7 +2534,6 @@ "type": "col", "nodes": [ { - "value": "Phreoni", "type": "text", "details": { "prop_align": "C", @@ -1735,7 +2541,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Phreoni", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -1744,7 +2561,6 @@ "type": "col", "nodes": [ { - "value": "4", "type": "text", "details": { "prop_align": "C", @@ -1752,7 +2568,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "4", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -1761,7 +2588,6 @@ "type": "col", "nodes": [ { - "value": "R$ 22,00", "type": "text", "details": { "prop_align": "C", @@ -1769,7 +2595,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "R$ 22,00", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1788,7 +2625,6 @@ "type": "col", "nodes": [ { - "value": "Katheryn High Wizard", "type": "text", "details": { "prop_align": "C", @@ -1796,7 +2632,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Katheryn High Wizard", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -1805,7 +2652,6 @@ "type": "col", "nodes": [ { - "value": "4", "type": "text", "details": { "prop_align": "C", @@ -1813,7 +2659,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "4", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -1822,7 +2679,6 @@ "type": "col", "nodes": [ { - "value": "R$ 25,00", "type": "text", "details": { "prop_align": "C", @@ -1830,7 +2686,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "R$ 25,00", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1852,7 +2719,6 @@ "type": "col", "nodes": [ { - "value": "Lord Seyren", "type": "text", "details": { "prop_align": "C", @@ -1860,7 +2726,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Lord Seyren", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -1869,7 +2746,6 @@ "type": "col", "nodes": [ { - "value": "4", "type": "text", "details": { "prop_align": "C", @@ -1877,7 +2753,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "4", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] }, @@ -1886,7 +2773,6 @@ "type": "col", "nodes": [ { - "value": "R$ 55,00", "type": "text", "details": { "prop_align": "C", @@ -1894,7 +2780,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "R$ 55,00", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1913,7 +2810,6 @@ "type": "col", "nodes": [ { - "value": "Total:", "type": "text", "details": { "prop_align": "R", @@ -1923,7 +2819,19 @@ "prop_font_size": 8, "prop_font_style": "B", "prop_top": 5 - } + }, + "nodes": [ + { + "value": "Total:", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8, + "prop_font_style": "B" + } + } + ] } ] }, @@ -1932,7 +2840,6 @@ "type": "col", "nodes": [ { - "value": "R$ 2.567,00", "type": "text", "details": { "prop_align": "C", @@ -1942,7 +2849,19 @@ "prop_font_size": 8, "prop_font_style": "B", "prop_top": 5 - } + }, + "nodes": [ + { + "value": "R$ 2.567,00", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8, + "prop_font_style": "B" + } + } + ] } ] } @@ -1966,7 +2885,6 @@ } }, { - "value": "5123.151231.512314.1251251.123215", "type": "text", "details": { "prop_align": "C", @@ -1976,7 +2894,19 @@ "prop_font_size": 9, "prop_font_style": "B", "prop_top": 12 - } + }, + "nodes": [ + { + "value": "5123.151231.512314.1251251.123215", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 9, + "prop_font_style": "B" + } + } + ] } ] }, @@ -2005,7 +2935,6 @@ "type": "col", "nodes": [ { - "value": "Tel: 55 024 12345-1234", "type": "text", "details": { "prop_align": "L", @@ -2015,10 +2944,21 @@ "prop_font_size": 8, "prop_font_style": "BI", "prop_top": 13 - } + }, + "nodes": [ + { + "value": "Tel: 55 024 12345-1234", + "type": "sub_text", + "details": { + "prop_color": "RGB(10, 10, 150)", + "prop_font_family": "arial", + "prop_font_size": 8, + "prop_font_style": "BI" + } + } + ] }, { - "value": "www.mycompany.com", "type": "text", "details": { "prop_align": "L", @@ -2028,7 +2968,19 @@ "prop_font_size": 8, "prop_font_style": "BI", "prop_top": 16 - } + }, + "nodes": [ + { + "value": "www.mycompany.com", + "type": "sub_text", + "details": { + "prop_color": "RGB(10, 10, 150)", + "prop_font_family": "arial", + "prop_font_size": 8, + "prop_font_style": "BI" + } + } + ] } ] } diff --git a/test/maroto/examples/cellstyle.json b/test/maroto/examples/cellstyle.json index e72c837e..31cc3523 100755 --- a/test/maroto/examples/cellstyle.json +++ b/test/maroto/examples/cellstyle.json @@ -35,7 +35,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -45,7 +44,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -61,7 +72,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -71,7 +81,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -87,7 +109,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -97,7 +118,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] } @@ -129,7 +162,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -139,7 +171,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -148,7 +192,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -158,7 +201,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -167,7 +222,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -177,7 +231,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] } @@ -212,7 +278,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -222,7 +287,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -238,7 +315,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -248,7 +324,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -264,7 +352,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -274,7 +361,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] } @@ -307,7 +406,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -317,7 +415,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -326,7 +436,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -336,7 +445,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -345,7 +466,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -355,7 +475,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] } @@ -390,7 +522,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -400,7 +531,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -416,7 +559,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -426,7 +568,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -442,7 +596,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -452,7 +605,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] } @@ -485,7 +650,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -495,7 +659,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -504,7 +680,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -514,7 +689,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -523,7 +710,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -533,7 +719,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] } @@ -568,7 +766,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -578,7 +775,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -594,7 +803,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -604,7 +812,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -620,7 +840,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -630,7 +849,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] } @@ -663,7 +894,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -673,7 +903,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -682,7 +924,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -692,7 +933,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -701,7 +954,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -711,7 +963,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] } @@ -746,7 +1010,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -756,7 +1019,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -772,7 +1047,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -782,7 +1056,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -798,7 +1084,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -808,7 +1093,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] } @@ -841,7 +1138,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -851,7 +1147,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -860,7 +1168,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -870,7 +1177,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -879,7 +1198,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -889,7 +1207,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] } @@ -924,7 +1254,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -934,7 +1263,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -950,7 +1291,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -960,7 +1300,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -976,7 +1328,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -986,7 +1337,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] } @@ -1019,7 +1382,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1029,7 +1391,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -1038,7 +1412,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1048,7 +1421,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -1057,7 +1442,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1067,7 +1451,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] } @@ -1102,7 +1498,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1112,7 +1507,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -1128,7 +1535,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1138,7 +1544,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -1154,7 +1572,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1164,7 +1581,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] } @@ -1211,7 +1640,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1221,7 +1649,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -1230,7 +1670,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1240,7 +1679,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -1249,7 +1700,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1259,7 +1709,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] } @@ -1294,7 +1756,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1304,7 +1765,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -1320,7 +1793,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1330,7 +1802,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -1346,7 +1830,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1356,7 +1839,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] } @@ -1389,7 +1884,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1399,7 +1893,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -1408,7 +1914,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1418,7 +1923,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -1427,7 +1944,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1437,7 +1953,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] } @@ -1472,7 +2000,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1482,7 +2009,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -1498,7 +2037,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1508,7 +2046,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -1524,7 +2074,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1534,7 +2083,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] } @@ -1567,7 +2128,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1577,7 +2137,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -1586,7 +2158,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1596,7 +2167,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -1605,7 +2188,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1615,7 +2197,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] } @@ -1650,7 +2244,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1660,7 +2253,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -1676,7 +2281,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1686,7 +2290,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -1702,7 +2318,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1712,7 +2327,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] } @@ -1745,7 +2372,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1755,7 +2381,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -1764,7 +2402,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1774,7 +2411,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -1783,7 +2432,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1793,7 +2441,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] } @@ -1828,7 +2488,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1838,7 +2497,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -1854,7 +2525,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1864,7 +2534,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -1880,7 +2562,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1890,7 +2571,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] } @@ -1923,7 +2616,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1933,7 +2625,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -1942,7 +2646,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1952,7 +2655,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -1961,7 +2676,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -1971,7 +2685,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] } @@ -2006,7 +2732,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -2016,7 +2741,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -2032,7 +2769,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -2042,7 +2778,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -2058,7 +2806,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -2068,7 +2815,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] } @@ -2101,7 +2860,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -2111,7 +2869,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -2120,7 +2890,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -2130,7 +2899,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -2139,7 +2920,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -2149,7 +2929,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] } @@ -2184,7 +2976,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -2194,7 +2985,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -2210,7 +3013,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -2220,7 +3022,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -2236,7 +3050,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -2246,7 +3059,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] } @@ -2278,7 +3103,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -2288,7 +3112,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -2297,7 +3133,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -2307,7 +3142,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -2316,7 +3163,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -2326,7 +3172,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] } @@ -2376,7 +3234,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -2386,7 +3243,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -2402,7 +3271,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -2412,7 +3280,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -2428,7 +3308,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -2438,7 +3317,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] } @@ -2471,7 +3362,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -2481,7 +3371,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -2490,7 +3392,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -2500,7 +3401,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -2509,7 +3422,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -2519,7 +3431,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] } @@ -2554,7 +3478,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -2564,7 +3487,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -2580,7 +3515,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -2590,7 +3524,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -2606,7 +3552,6 @@ }, "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -2616,7 +3561,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 255, 255)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] } @@ -2649,7 +3606,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -2659,7 +3615,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -2668,7 +3636,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -2678,7 +3645,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] }, @@ -2687,7 +3666,6 @@ "type": "col", "nodes": [ { - "value": "string", "type": "text", "details": { "prop_align": "C", @@ -2697,7 +3675,19 @@ "prop_font_size": 12, "prop_font_style": "B", "prop_top": 2 - } + }, + "nodes": [ + { + "value": "string", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12, + "prop_font_style": "B" + } + } + ] } ] } diff --git a/test/maroto/examples/compression.json b/test/maroto/examples/compression.json index 776aa00b..b061a9dd 100755 --- a/test/maroto/examples/compression.json +++ b/test/maroto/examples/compression.json @@ -32,7 +32,6 @@ }, "nodes": [ { - "value": "Main features", "type": "text", "details": { "prop_align": "L", @@ -41,7 +40,18 @@ "prop_font_family": "arial", "prop_font_size": 15, "prop_top": 6.5 - } + }, + "nodes": [ + { + "value": "Main features", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 15 + } + } + ] } ] } @@ -56,7 +66,6 @@ "type": "col", "nodes": [ { - "value": "Barcode:", "type": "text", "details": { "prop_align": "C", @@ -65,7 +74,18 @@ "prop_font_family": "arial", "prop_font_size": 15, "prop_top": 6 - } + }, + "nodes": [ + { + "value": "Barcode:", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 15 + } + } + ] } ] }, @@ -96,7 +116,6 @@ "type": "col", "nodes": [ { - "value": "QrCode:", "type": "text", "details": { "prop_align": "C", @@ -105,7 +124,18 @@ "prop_font_family": "arial", "prop_font_size": 15, "prop_top": 6 - } + }, + "nodes": [ + { + "value": "QrCode:", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 15 + } + } + ] } ] }, @@ -134,7 +164,6 @@ "type": "col", "nodes": [ { - "value": "MatrixCode:", "type": "text", "details": { "prop_align": "C", @@ -143,7 +172,18 @@ "prop_font_family": "arial", "prop_font_size": 15, "prop_top": 6 - } + }, + "nodes": [ + { + "value": "MatrixCode:", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 15 + } + } + ] } ] }, @@ -172,7 +212,6 @@ "type": "col", "nodes": [ { - "value": "Image From File:", "type": "text", "details": { "prop_align": "C", @@ -181,7 +220,18 @@ "prop_font_family": "arial", "prop_font_size": 15, "prop_top": 6 - } + }, + "nodes": [ + { + "value": "Image From File:", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 15 + } + } + ] } ] }, @@ -210,7 +260,6 @@ "type": "col", "nodes": [ { - "value": "Image From Base64::", "type": "text", "details": { "prop_align": "C", @@ -219,7 +268,18 @@ "prop_font_family": "arial", "prop_font_size": 15, "prop_top": 6 - } + }, + "nodes": [ + { + "value": "Image From Base64::", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 15 + } + } + ] } ] }, @@ -250,7 +310,6 @@ "type": "col", "nodes": [ { - "value": "Text:", "type": "text", "details": { "prop_align": "C", @@ -259,7 +318,18 @@ "prop_font_family": "arial", "prop_font_size": 15, "prop_top": 6 - } + }, + "nodes": [ + { + "value": "Text:", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 15 + } + } + ] } ] }, @@ -268,7 +338,6 @@ "type": "col", "nodes": [ { - "value": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ac condimentum sem.", "type": "text", "details": { "prop_align": "C", @@ -277,7 +346,18 @@ "prop_font_family": "arial", "prop_font_size": 12, "prop_top": 5 - } + }, + "nodes": [ + { + "value": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ac condimentum sem.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12 + } + } + ] } ] } @@ -292,7 +372,6 @@ "type": "col", "nodes": [ { - "value": "Signature:", "type": "text", "details": { "prop_align": "C", @@ -301,7 +380,18 @@ "prop_font_family": "arial", "prop_font_size": 15, "prop_top": 17 - } + }, + "nodes": [ + { + "value": "Signature:", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 15 + } + } + ] } ] }, diff --git a/test/maroto/examples/customdimensions.json b/test/maroto/examples/customdimensions.json index ba12e5f7..43503823 100755 --- a/test/maroto/examples/customdimensions.json +++ b/test/maroto/examples/customdimensions.json @@ -43,7 +43,6 @@ "type": "col", "nodes": [ { - "value": "Gopher International Shipping, Inc.", "type": "text", "details": { "prop_align": "L", @@ -52,7 +51,18 @@ "prop_font_family": "arial", "prop_font_size": 12, "prop_top": 12 - } + }, + "nodes": [ + { + "value": "Gopher International Shipping, Inc.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12 + } + } + ] } ] }, diff --git a/test/maroto/examples/customfont.json b/test/maroto/examples/customfont.json index dc278040..6cefe4c6 100755 --- a/test/maroto/examples/customfont.json +++ b/test/maroto/examples/customfont.json @@ -28,7 +28,6 @@ "type": "col", "nodes": [ { - "value": "Language", "type": "text", "details": { "prop_align": "C", @@ -37,7 +36,19 @@ "prop_font_family": "arial", "prop_font_size": 10, "prop_font_style": "B" - } + }, + "nodes": [ + { + "value": "Language", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_font_style": "B" + } + } + ] } ] }, @@ -46,7 +57,6 @@ "type": "col", "nodes": [ { - "value": "Phrase: Talk is cheap. Show me the code.", "type": "text", "details": { "prop_align": "C", @@ -55,7 +65,19 @@ "prop_font_family": "arial", "prop_font_size": 10, "prop_font_style": "B" - } + }, + "nodes": [ + { + "value": "Phrase: Talk is cheap. Show me the code.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_font_style": "B" + } + } + ] } ] } @@ -73,7 +95,6 @@ "type": "col", "nodes": [ { - "value": "Africâner", "type": "text", "details": { "prop_align": "C", @@ -81,7 +102,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Africâner", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -90,7 +122,6 @@ "type": "col", "nodes": [ { - "value": "Praat is goedkoop. Wys my die kode.", "type": "text", "details": { "prop_align": "C", @@ -98,7 +129,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Praat is goedkoop. Wys my die kode.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -113,7 +155,6 @@ "type": "col", "nodes": [ { - "value": "Albanês", "type": "text", "details": { "prop_align": "C", @@ -121,7 +162,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Albanês", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -130,7 +182,6 @@ "type": "col", "nodes": [ { - "value": "Biseda është e lirë. Më trego kodin.", "type": "text", "details": { "prop_align": "C", @@ -138,7 +189,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Biseda është e lirë. Më trego kodin.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -156,7 +218,6 @@ "type": "col", "nodes": [ { - "value": "Alemão", "type": "text", "details": { "prop_align": "C", @@ -164,7 +225,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Alemão", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -173,7 +245,6 @@ "type": "col", "nodes": [ { - "value": "Reden ist billig. Zeig mir den Code.", "type": "text", "details": { "prop_align": "C", @@ -181,7 +252,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Reden ist billig. Zeig mir den Code.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -196,7 +278,6 @@ "type": "col", "nodes": [ { - "value": "Amárico", "type": "text", "details": { "prop_align": "C", @@ -204,7 +285,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Amárico", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -213,7 +305,6 @@ "type": "col", "nodes": [ { - "value": "ወሬ ርካሽ ነው ፡፡ ኮዱን አሳዩኝ ፡፡", "type": "text", "details": { "prop_align": "C", @@ -221,7 +312,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "ወሬ ርካሽ ነው ፡፡ ኮዱን አሳዩኝ ፡፡", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -239,7 +341,6 @@ "type": "col", "nodes": [ { - "value": "Árabe", "type": "text", "details": { "prop_align": "C", @@ -247,7 +348,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Árabe", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -256,7 +368,6 @@ "type": "col", "nodes": [ { - "value": "كلام رخيص. أرني الكود.", "type": "text", "details": { "prop_align": "C", @@ -264,7 +375,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "كلام رخيص. أرني الكود.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -279,7 +401,6 @@ "type": "col", "nodes": [ { - "value": "Armênio", "type": "text", "details": { "prop_align": "C", @@ -287,7 +408,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Armênio", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -296,7 +428,6 @@ "type": "col", "nodes": [ { - "value": "Խոսակցությունն էժան է: Showույց տվեք ինձ ծածկագիրը:", "type": "text", "details": { "prop_align": "C", @@ -304,7 +435,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Խոսակցությունն էժան է: Showույց տվեք ինձ ծածկագիրը:", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -322,7 +464,6 @@ "type": "col", "nodes": [ { - "value": "Azerbaijano", "type": "text", "details": { "prop_align": "C", @@ -330,7 +471,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Azerbaijano", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -339,7 +491,6 @@ "type": "col", "nodes": [ { - "value": "Danışıq ucuzdur. Kodu göstərin.", "type": "text", "details": { "prop_align": "C", @@ -347,7 +498,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Danışıq ucuzdur. Kodu göstərin.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -362,7 +524,6 @@ "type": "col", "nodes": [ { - "value": "Basco", "type": "text", "details": { "prop_align": "C", @@ -370,7 +531,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Basco", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -379,7 +551,6 @@ "type": "col", "nodes": [ { - "value": "Eztabaida merkea da. Erakutsi kodea.", "type": "text", "details": { "prop_align": "C", @@ -387,7 +558,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Eztabaida merkea da. Erakutsi kodea.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -405,7 +587,6 @@ "type": "col", "nodes": [ { - "value": "Bengali", "type": "text", "details": { "prop_align": "C", @@ -413,7 +594,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bengali", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -422,7 +614,6 @@ "type": "col", "nodes": [ { - "value": "টক সস্তা। আমাকে কোডটি দেখান", "type": "text", "details": { "prop_align": "C", @@ -430,7 +621,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "টক সস্তা। আমাকে কোডটি দেখান", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -445,7 +647,6 @@ "type": "col", "nodes": [ { - "value": "Bielorusso", "type": "text", "details": { "prop_align": "C", @@ -453,7 +654,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bielorusso", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -462,7 +674,6 @@ "type": "col", "nodes": [ { - "value": "Размовы танныя. Пакажыце мне код.", "type": "text", "details": { "prop_align": "C", @@ -470,7 +681,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Размовы танныя. Пакажыце мне код.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -488,7 +710,6 @@ "type": "col", "nodes": [ { - "value": "Birmanês", "type": "text", "details": { "prop_align": "C", @@ -496,7 +717,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Birmanês", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -505,7 +737,6 @@ "type": "col", "nodes": [ { - "value": "ဟောပြောချက်ကစျေးပေါတယ် ကုဒ်ကိုပြပါ။", "type": "text", "details": { "prop_align": "C", @@ -513,7 +744,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "ဟောပြောချက်ကစျေးပေါတယ် ကုဒ်ကိုပြပါ။", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -528,7 +770,6 @@ "type": "col", "nodes": [ { - "value": "Bósnio", "type": "text", "details": { "prop_align": "C", @@ -536,7 +777,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bósnio", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -545,7 +797,6 @@ "type": "col", "nodes": [ { - "value": "Govor je jeftin. Pokaži mi šifru.", "type": "text", "details": { "prop_align": "C", @@ -553,7 +804,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Govor je jeftin. Pokaži mi šifru.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -571,7 +833,6 @@ "type": "col", "nodes": [ { - "value": "Búlgaro", "type": "text", "details": { "prop_align": "C", @@ -579,7 +840,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Búlgaro", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -588,7 +860,6 @@ "type": "col", "nodes": [ { - "value": "Разговорите са евтини. Покажи ми кода.", "type": "text", "details": { "prop_align": "C", @@ -596,7 +867,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Разговорите са евтини. Покажи ми кода.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -611,7 +893,6 @@ "type": "col", "nodes": [ { - "value": "Canarim", "type": "text", "details": { "prop_align": "C", @@ -619,7 +900,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Canarim", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -628,7 +920,6 @@ "type": "col", "nodes": [ { - "value": "ಮಾತುಕತೆ ಅಗ್ಗವಾಗಿದೆ. ನನಗೆ ಕೋಡ್ ತೋರಿಸಿ.", "type": "text", "details": { "prop_align": "C", @@ -636,7 +927,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "ಮಾತುಕತೆ ಅಗ್ಗವಾಗಿದೆ. ನನಗೆ ಕೋಡ್ ತೋರಿಸಿ.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -654,7 +956,6 @@ "type": "col", "nodes": [ { - "value": "Catalão", "type": "text", "details": { "prop_align": "C", @@ -662,7 +963,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Catalão", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -671,7 +983,6 @@ "type": "col", "nodes": [ { - "value": "Parlar és barat. Mostra’m el codi.", "type": "text", "details": { "prop_align": "C", @@ -679,7 +990,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Parlar és barat. Mostra’m el codi.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -694,7 +1016,6 @@ "type": "col", "nodes": [ { - "value": "Cazeque", "type": "text", "details": { "prop_align": "C", @@ -702,7 +1023,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Cazeque", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -711,7 +1043,6 @@ "type": "col", "nodes": [ { - "value": "Сөйлесу арзан. Маған кодты көрсетіңіз.", "type": "text", "details": { "prop_align": "C", @@ -719,7 +1050,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Сөйлесу арзан. Маған кодты көрсетіңіз.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -737,7 +1079,6 @@ "type": "col", "nodes": [ { - "value": "Cebuano", "type": "text", "details": { "prop_align": "C", @@ -745,7 +1086,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Cebuano", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -754,7 +1106,6 @@ "type": "col", "nodes": [ { - "value": "Barato ra ang sulti. Ipakita kanako ang code.", "type": "text", "details": { "prop_align": "C", @@ -762,7 +1113,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Barato ra ang sulti. Ipakita kanako ang code.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -777,7 +1139,6 @@ "type": "col", "nodes": [ { - "value": "Chinês Simplificado", "type": "text", "details": { "prop_align": "C", @@ -785,7 +1146,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Chinês Simplificado", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -794,7 +1166,6 @@ "type": "col", "nodes": [ { - "value": "谈话很便宜。给我看代码。", "type": "text", "details": { "prop_align": "C", @@ -802,7 +1173,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "谈话很便宜。给我看代码。", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -820,7 +1202,6 @@ "type": "col", "nodes": [ { - "value": "Chinês Tradicional", "type": "text", "details": { "prop_align": "C", @@ -828,7 +1209,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Chinês Tradicional", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -837,7 +1229,6 @@ "type": "col", "nodes": [ { - "value": "談話很便宜。給我看代碼。", "type": "text", "details": { "prop_align": "C", @@ -845,7 +1236,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "談話很便宜。給我看代碼。", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -860,7 +1262,6 @@ "type": "col", "nodes": [ { - "value": "Cingalês", "type": "text", "details": { "prop_align": "C", @@ -868,7 +1269,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Cingalês", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -877,7 +1289,6 @@ "type": "col", "nodes": [ { - "value": "කතාව ලාභයි. කේතය මට පෙන්වන්න.", "type": "text", "details": { "prop_align": "C", @@ -885,7 +1296,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "කතාව ලාභයි. කේතය මට පෙන්වන්න.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -903,7 +1325,6 @@ "type": "col", "nodes": [ { - "value": "Coreano", "type": "text", "details": { "prop_align": "C", @@ -911,7 +1332,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Coreano", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -920,7 +1352,6 @@ "type": "col", "nodes": [ { - "value": "토크는 싸다. 코드를 보여주세요.", "type": "text", "details": { "prop_align": "C", @@ -928,7 +1359,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "토크는 싸다. 코드를 보여주세요.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -943,7 +1385,6 @@ "type": "col", "nodes": [ { - "value": "Corso", "type": "text", "details": { "prop_align": "C", @@ -951,7 +1392,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Corso", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -960,7 +1412,6 @@ "type": "col", "nodes": [ { - "value": "Parlà hè bonu. Mostrami u codice.", "type": "text", "details": { "prop_align": "C", @@ -968,7 +1419,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Parlà hè bonu. Mostrami u codice.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -986,7 +1448,6 @@ "type": "col", "nodes": [ { - "value": "Croata", "type": "text", "details": { "prop_align": "C", @@ -994,7 +1455,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Croata", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1003,7 +1475,6 @@ "type": "col", "nodes": [ { - "value": "Razgovor je jeftin. Pokaži mi šifru.", "type": "text", "details": { "prop_align": "C", @@ -1011,7 +1482,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Razgovor je jeftin. Pokaži mi šifru.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -1026,7 +1508,6 @@ "type": "col", "nodes": [ { - "value": "Curdo", "type": "text", "details": { "prop_align": "C", @@ -1034,7 +1515,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Curdo", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1043,7 +1535,6 @@ "type": "col", "nodes": [ { - "value": "Axaftin erzan e. Kodê nîşanî min bidin.", "type": "text", "details": { "prop_align": "C", @@ -1051,7 +1542,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Axaftin erzan e. Kodê nîşanî min bidin.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -1069,7 +1571,6 @@ "type": "col", "nodes": [ { - "value": "Dinamarquês", "type": "text", "details": { "prop_align": "C", @@ -1077,7 +1578,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Dinamarquês", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1086,7 +1598,6 @@ "type": "col", "nodes": [ { - "value": "Tal er billig. Vis mig koden.", "type": "text", "details": { "prop_align": "C", @@ -1094,7 +1605,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Tal er billig. Vis mig koden.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -1109,7 +1631,6 @@ "type": "col", "nodes": [ { - "value": "Eslovaco", "type": "text", "details": { "prop_align": "C", @@ -1117,7 +1638,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Eslovaco", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1126,7 +1658,6 @@ "type": "col", "nodes": [ { - "value": "Hovor je lacný. Ukáž mi kód.", "type": "text", "details": { "prop_align": "C", @@ -1134,7 +1665,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Hovor je lacný. Ukáž mi kód.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -1152,7 +1694,6 @@ "type": "col", "nodes": [ { - "value": "Esloveno", "type": "text", "details": { "prop_align": "C", @@ -1160,7 +1701,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Esloveno", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1169,7 +1721,6 @@ "type": "col", "nodes": [ { - "value": "Pogovor je poceni. Pokaži mi kodo.", "type": "text", "details": { "prop_align": "C", @@ -1177,7 +1728,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Pogovor je poceni. Pokaži mi kodo.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -1192,7 +1754,6 @@ "type": "col", "nodes": [ { - "value": "Espanhol", "type": "text", "details": { "prop_align": "C", @@ -1200,7 +1761,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Espanhol", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1209,7 +1781,6 @@ "type": "col", "nodes": [ { - "value": "Hablar es barato. Enséñame el código.", "type": "text", "details": { "prop_align": "C", @@ -1217,7 +1788,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Hablar es barato. Enséñame el código.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -1235,7 +1817,6 @@ "type": "col", "nodes": [ { - "value": "Esperanto", "type": "text", "details": { "prop_align": "C", @@ -1243,7 +1824,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Esperanto", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1252,7 +1844,6 @@ "type": "col", "nodes": [ { - "value": "Babilado estas malmultekosta. Montru al mi la kodon.", "type": "text", "details": { "prop_align": "C", @@ -1260,7 +1851,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Babilado estas malmultekosta. Montru al mi la kodon.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -1275,7 +1877,6 @@ "type": "col", "nodes": [ { - "value": "Estoniano", "type": "text", "details": { "prop_align": "C", @@ -1283,7 +1884,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Estoniano", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1292,7 +1904,6 @@ "type": "col", "nodes": [ { - "value": "Rääkimine on odav. Näita mulle koodi.", "type": "text", "details": { "prop_align": "C", @@ -1300,7 +1911,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Rääkimine on odav. Näita mulle koodi.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -1318,7 +1940,6 @@ "type": "col", "nodes": [ { - "value": "Filipino", "type": "text", "details": { "prop_align": "C", @@ -1326,7 +1947,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Filipino", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1335,7 +1967,6 @@ "type": "col", "nodes": [ { - "value": "Mura ang usapan. Ipakita sa akin ang code.", "type": "text", "details": { "prop_align": "C", @@ -1343,7 +1974,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Mura ang usapan. Ipakita sa akin ang code.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -1358,7 +2000,6 @@ "type": "col", "nodes": [ { - "value": "Finlandês", "type": "text", "details": { "prop_align": "C", @@ -1366,7 +2007,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Finlandês", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1375,7 +2027,6 @@ "type": "col", "nodes": [ { - "value": "Puhe on halpaa. Näytä koodi.", "type": "text", "details": { "prop_align": "C", @@ -1383,7 +2034,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Puhe on halpaa. Näytä koodi.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -1401,7 +2063,6 @@ "type": "col", "nodes": [ { - "value": "Francês", "type": "text", "details": { "prop_align": "C", @@ -1409,7 +2070,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Francês", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1418,7 +2090,6 @@ "type": "col", "nodes": [ { - "value": "Parler n'est pas cher. Montre-moi le code.", "type": "text", "details": { "prop_align": "C", @@ -1426,7 +2097,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Parler n'est pas cher. Montre-moi le code.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -1441,7 +2123,6 @@ "type": "col", "nodes": [ { - "value": "Frísio Ocidental", "type": "text", "details": { "prop_align": "C", @@ -1449,7 +2130,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Frísio Ocidental", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1458,7 +2150,6 @@ "type": "col", "nodes": [ { - "value": "Prate is goedkeap. Lit my de koade sjen.", "type": "text", "details": { "prop_align": "C", @@ -1466,7 +2157,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Prate is goedkeap. Lit my de koade sjen.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -1484,7 +2186,6 @@ "type": "col", "nodes": [ { - "value": "Gaélico Escocês", "type": "text", "details": { "prop_align": "C", @@ -1492,7 +2193,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Gaélico Escocês", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1501,7 +2213,6 @@ "type": "col", "nodes": [ { - "value": "Tha còmhradh saor. Seall dhomh an còd.", "type": "text", "details": { "prop_align": "C", @@ -1509,7 +2220,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Tha còmhradh saor. Seall dhomh an còd.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -1524,7 +2246,6 @@ "type": "col", "nodes": [ { - "value": "Galego", "type": "text", "details": { "prop_align": "C", @@ -1532,7 +2253,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Galego", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1541,7 +2273,6 @@ "type": "col", "nodes": [ { - "value": "Falar é barato. Móstrame o código.", "type": "text", "details": { "prop_align": "C", @@ -1549,7 +2280,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Falar é barato. Móstrame o código.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -1567,7 +2309,6 @@ "type": "col", "nodes": [ { - "value": "Galês", "type": "text", "details": { "prop_align": "C", @@ -1575,7 +2316,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Galês", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1584,7 +2336,6 @@ "type": "col", "nodes": [ { - "value": "Mae siarad yn rhad. Dangoswch y cod i mi.", "type": "text", "details": { "prop_align": "C", @@ -1592,7 +2343,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Mae siarad yn rhad. Dangoswch y cod i mi.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -1607,7 +2369,6 @@ "type": "col", "nodes": [ { - "value": "Georgiano", "type": "text", "details": { "prop_align": "C", @@ -1615,7 +2376,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Georgiano", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1624,7 +2396,6 @@ "type": "col", "nodes": [ { - "value": "აუბარი იაფია. მაჩვენე კოდი.", "type": "text", "details": { "prop_align": "C", @@ -1632,7 +2403,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "აუბარი იაფია. მაჩვენე კოდი.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -1650,7 +2432,6 @@ "type": "col", "nodes": [ { - "value": "Grego", "type": "text", "details": { "prop_align": "C", @@ -1658,7 +2439,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Grego", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1667,7 +2459,6 @@ "type": "col", "nodes": [ { - "value": "Η συζήτηση είναι φθηνή. Δείξε μου τον κωδικό.", "type": "text", "details": { "prop_align": "C", @@ -1675,7 +2466,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Η συζήτηση είναι φθηνή. Δείξε μου τον κωδικό.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -1690,7 +2492,6 @@ "type": "col", "nodes": [ { - "value": "Guzerate", "type": "text", "details": { "prop_align": "C", @@ -1698,7 +2499,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Guzerate", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1707,7 +2519,6 @@ "type": "col", "nodes": [ { - "value": "વાતો કરવી સસ્તી છે. મને કોડ બતાવો.", "type": "text", "details": { "prop_align": "C", @@ -1715,7 +2526,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "વાતો કરવી સસ્તી છે. મને કોડ બતાવો.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -1733,7 +2555,6 @@ "type": "col", "nodes": [ { - "value": "Haitiano", "type": "text", "details": { "prop_align": "C", @@ -1741,7 +2562,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Haitiano", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1750,7 +2582,6 @@ "type": "col", "nodes": [ { - "value": "Pale bon mache. Montre m kòd la.", "type": "text", "details": { "prop_align": "C", @@ -1758,7 +2589,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Pale bon mache. Montre m kòd la.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -1773,7 +2615,6 @@ "type": "col", "nodes": [ { - "value": "Hauçá", "type": "text", "details": { "prop_align": "C", @@ -1781,7 +2622,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Hauçá", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1790,7 +2642,6 @@ "type": "col", "nodes": [ { - "value": "Magana tana da arha. Nuna min lambar.", "type": "text", "details": { "prop_align": "C", @@ -1798,7 +2649,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Magana tana da arha. Nuna min lambar.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -1816,7 +2678,6 @@ "type": "col", "nodes": [ { - "value": "Havaiano", "type": "text", "details": { "prop_align": "C", @@ -1824,7 +2685,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Havaiano", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1833,7 +2705,6 @@ "type": "col", "nodes": [ { - "value": "Kūʻai ke kamaʻilio. E hōʻike mai iaʻu i ke pāʻālua.", "type": "text", "details": { "prop_align": "C", @@ -1841,7 +2712,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Kūʻai ke kamaʻilio. E hōʻike mai iaʻu i ke pāʻālua.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -1856,7 +2738,6 @@ "type": "col", "nodes": [ { - "value": "Hebraico", "type": "text", "details": { "prop_align": "C", @@ -1864,7 +2745,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Hebraico", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1873,7 +2765,6 @@ "type": "col", "nodes": [ { - "value": "הדיבורים זולים. הראה לי את הקוד.", "type": "text", "details": { "prop_align": "C", @@ -1881,7 +2772,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "הדיבורים זולים. הראה לי את הקוד.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -1899,7 +2801,6 @@ "type": "col", "nodes": [ { - "value": "Híndi", "type": "text", "details": { "prop_align": "C", @@ -1907,7 +2808,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Híndi", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1916,7 +2828,6 @@ "type": "col", "nodes": [ { - "value": "बोलना आसान है। मुझे कोड दिखाओ।", "type": "text", "details": { "prop_align": "C", @@ -1924,7 +2835,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "बोलना आसान है। मुझे कोड दिखाओ।", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -1939,7 +2861,6 @@ "type": "col", "nodes": [ { - "value": "Hmong", "type": "text", "details": { "prop_align": "C", @@ -1947,7 +2868,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Hmong", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1956,7 +2888,6 @@ "type": "col", "nodes": [ { - "value": "Kev hais lus yog pheej yig. Qhia kuv cov code.", "type": "text", "details": { "prop_align": "C", @@ -1964,7 +2895,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Kev hais lus yog pheej yig. Qhia kuv cov code.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -1982,7 +2924,6 @@ "type": "col", "nodes": [ { - "value": "Holandês", "type": "text", "details": { "prop_align": "C", @@ -1990,7 +2931,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Holandês", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1999,7 +2951,6 @@ "type": "col", "nodes": [ { - "value": "Praten is goedkoop. Laat me de code zien.", "type": "text", "details": { "prop_align": "C", @@ -2007,7 +2958,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Praten is goedkoop. Laat me de code zien.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -2022,7 +2984,6 @@ "type": "col", "nodes": [ { - "value": "Húngaro", "type": "text", "details": { "prop_align": "C", @@ -2030,7 +2991,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Húngaro", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2039,7 +3011,6 @@ "type": "col", "nodes": [ { - "value": "Beszélni olcsó. Mutasd meg a kódot.", "type": "text", "details": { "prop_align": "C", @@ -2047,7 +3018,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Beszélni olcsó. Mutasd meg a kódot.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -2065,7 +3047,6 @@ "type": "col", "nodes": [ { - "value": "Igbo", "type": "text", "details": { "prop_align": "C", @@ -2073,7 +3054,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Igbo", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2082,7 +3074,6 @@ "type": "col", "nodes": [ { - "value": "Okwu dị ọnụ ala. Gosi m koodu.", "type": "text", "details": { "prop_align": "C", @@ -2090,7 +3081,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Okwu dị ọnụ ala. Gosi m koodu.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -2105,7 +3107,6 @@ "type": "col", "nodes": [ { - "value": "Lídiche", "type": "text", "details": { "prop_align": "C", @@ -2113,7 +3114,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Lídiche", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2122,7 +3134,6 @@ "type": "col", "nodes": [ { - "value": "רעדן איז ביליק. ווייַזן מיר דעם קאָד.", "type": "text", "details": { "prop_align": "C", @@ -2130,7 +3141,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "רעדן איז ביליק. ווייַזן מיר דעם קאָד.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -2148,7 +3170,6 @@ "type": "col", "nodes": [ { - "value": "Indonésio", "type": "text", "details": { "prop_align": "C", @@ -2156,7 +3177,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Indonésio", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2165,7 +3197,6 @@ "type": "col", "nodes": [ { - "value": "Berbicara itu murah. Tunjukkan kodenya.", "type": "text", "details": { "prop_align": "C", @@ -2173,7 +3204,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Berbicara itu murah. Tunjukkan kodenya.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -2203,7 +3245,6 @@ "type": "col", "nodes": [ { - "value": "Inglês", "type": "text", "details": { "prop_align": "C", @@ -2211,7 +3252,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Inglês", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2220,7 +3272,6 @@ "type": "col", "nodes": [ { - "value": "Talk is cheap. Show me the code.", "type": "text", "details": { "prop_align": "C", @@ -2228,7 +3279,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Talk is cheap. Show me the code.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -2246,7 +3308,6 @@ "type": "col", "nodes": [ { - "value": "Iorubá", "type": "text", "details": { "prop_align": "C", @@ -2254,7 +3315,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Iorubá", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2263,7 +3335,6 @@ "type": "col", "nodes": [ { - "value": "Ọrọ jẹ olowo poku. Fi koodu naa han mi.", "type": "text", "details": { "prop_align": "C", @@ -2271,7 +3342,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Ọrọ jẹ olowo poku. Fi koodu naa han mi.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -2286,7 +3368,6 @@ "type": "col", "nodes": [ { - "value": "Irlandês", "type": "text", "details": { "prop_align": "C", @@ -2294,7 +3375,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Irlandês", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2303,7 +3395,6 @@ "type": "col", "nodes": [ { - "value": "Tá caint saor. Taispeáin dom an cód.", "type": "text", "details": { "prop_align": "C", @@ -2311,7 +3402,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Tá caint saor. Taispeáin dom an cód.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -2329,7 +3431,6 @@ "type": "col", "nodes": [ { - "value": "Islandês", "type": "text", "details": { "prop_align": "C", @@ -2337,7 +3438,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Islandês", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2346,7 +3458,6 @@ "type": "col", "nodes": [ { - "value": "Tal er ódýrt. Sýndu mér kóðann.", "type": "text", "details": { "prop_align": "C", @@ -2354,7 +3465,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Tal er ódýrt. Sýndu mér kóðann.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -2369,7 +3491,6 @@ "type": "col", "nodes": [ { - "value": "Italiano", "type": "text", "details": { "prop_align": "C", @@ -2377,7 +3498,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Italiano", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2386,7 +3518,6 @@ "type": "col", "nodes": [ { - "value": "Parlare è economico. Mostrami il codice.", "type": "text", "details": { "prop_align": "C", @@ -2394,7 +3525,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Parlare è economico. Mostrami il codice.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -2412,7 +3554,6 @@ "type": "col", "nodes": [ { - "value": "Japonês", "type": "text", "details": { "prop_align": "C", @@ -2420,7 +3561,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Japonês", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2429,7 +3581,6 @@ "type": "col", "nodes": [ { - "value": "口で言うだけなら簡単です。コードを見せてください。", "type": "text", "details": { "prop_align": "C", @@ -2437,7 +3588,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "口で言うだけなら簡単です。コードを見せてください。", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -2452,7 +3614,6 @@ "type": "col", "nodes": [ { - "value": "Javanês", "type": "text", "details": { "prop_align": "C", @@ -2460,7 +3621,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Javanês", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2469,7 +3641,6 @@ "type": "col", "nodes": [ { - "value": "Omongan iku murah. Tampilake kode kasebut.", "type": "text", "details": { "prop_align": "C", @@ -2477,7 +3648,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Omongan iku murah. Tampilake kode kasebut.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -2495,7 +3677,6 @@ "type": "col", "nodes": [ { - "value": "Khmer", "type": "text", "details": { "prop_align": "C", @@ -2503,7 +3684,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Khmer", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2512,7 +3704,6 @@ "type": "col", "nodes": [ { - "value": "ការនិយាយគឺថោក។ បង្ហាញលេខកូដមកខ្ញុំ", "type": "text", "details": { "prop_align": "C", @@ -2520,7 +3711,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "ការនិយាយគឺថោក។ បង្ហាញលេខកូដមកខ្ញុំ", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -2535,7 +3737,6 @@ "type": "col", "nodes": [ { - "value": "Laosiano", "type": "text", "details": { "prop_align": "C", @@ -2543,7 +3744,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Laosiano", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2552,7 +3764,6 @@ "type": "col", "nodes": [ { - "value": "ການສົນທະນາແມ່ນລາຄາຖືກ. ສະແດງລະຫັດໃຫ້ຂ້ອຍ.", "type": "text", "details": { "prop_align": "C", @@ -2560,7 +3771,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "ການສົນທະນາແມ່ນລາຄາຖືກ. ສະແດງລະຫັດໃຫ້ຂ້ອຍ.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -2578,7 +3800,6 @@ "type": "col", "nodes": [ { - "value": "Latim", "type": "text", "details": { "prop_align": "C", @@ -2586,7 +3807,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Latim", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2595,7 +3827,6 @@ "type": "col", "nodes": [ { - "value": "Disputatio vilis est. Ostende mihi codice.", "type": "text", "details": { "prop_align": "C", @@ -2603,7 +3834,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Disputatio vilis est. Ostende mihi codice.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -2618,7 +3860,6 @@ "type": "col", "nodes": [ { - "value": "Letão", "type": "text", "details": { "prop_align": "C", @@ -2626,7 +3867,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Letão", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2635,7 +3887,6 @@ "type": "col", "nodes": [ { - "value": "Saruna ir lēta. Parādiet man kodu.", "type": "text", "details": { "prop_align": "C", @@ -2643,7 +3894,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Saruna ir lēta. Parādiet man kodu.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -2661,7 +3923,6 @@ "type": "col", "nodes": [ { - "value": "Lituano", "type": "text", "details": { "prop_align": "C", @@ -2669,7 +3930,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Lituano", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2678,7 +3950,6 @@ "type": "col", "nodes": [ { - "value": "Kalbėti pigu. Parodyk man kodą.", "type": "text", "details": { "prop_align": "C", @@ -2686,7 +3957,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Kalbėti pigu. Parodyk man kodą.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -2701,7 +3983,6 @@ "type": "col", "nodes": [ { - "value": "Luxemburguês", "type": "text", "details": { "prop_align": "C", @@ -2709,7 +3990,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Luxemburguês", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2718,7 +4010,6 @@ "type": "col", "nodes": [ { - "value": "Schwätzen ass bëlleg. Weist mir de Code.", "type": "text", "details": { "prop_align": "C", @@ -2726,7 +4017,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Schwätzen ass bëlleg. Weist mir de Code.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -2744,7 +4046,6 @@ "type": "col", "nodes": [ { - "value": "Macedônio", "type": "text", "details": { "prop_align": "C", @@ -2752,7 +4053,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Macedônio", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2761,7 +4073,6 @@ "type": "col", "nodes": [ { - "value": "Зборувањето е ефтино. Покажи ми го кодот.", "type": "text", "details": { "prop_align": "C", @@ -2769,7 +4080,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Зборувањето е ефтино. Покажи ми го кодот.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -2784,7 +4106,6 @@ "type": "col", "nodes": [ { - "value": "Malaiala", "type": "text", "details": { "prop_align": "C", @@ -2792,7 +4113,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Malaiala", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2801,7 +4133,6 @@ "type": "col", "nodes": [ { - "value": "സംസാരം വിലകുറഞ്ഞതാണ്. എനിക്ക് കോഡ് കാണിക്കുക.", "type": "text", "details": { "prop_align": "C", @@ -2809,7 +4140,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "സംസാരം വിലകുറഞ്ഞതാണ്. എനിക്ക് കോഡ് കാണിക്കുക.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -2827,7 +4169,6 @@ "type": "col", "nodes": [ { - "value": "Malaio", "type": "text", "details": { "prop_align": "C", @@ -2835,7 +4176,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Malaio", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2844,7 +4196,6 @@ "type": "col", "nodes": [ { - "value": "Perbincangan murah. Tunjukkan kod saya.", "type": "text", "details": { "prop_align": "C", @@ -2852,7 +4203,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Perbincangan murah. Tunjukkan kod saya.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -2867,7 +4229,6 @@ "type": "col", "nodes": [ { - "value": "Malgaxe", "type": "text", "details": { "prop_align": "C", @@ -2875,7 +4236,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Malgaxe", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2884,7 +4256,6 @@ "type": "col", "nodes": [ { - "value": "Mora ny resaka. Asehoy ahy ny kaody.", "type": "text", "details": { "prop_align": "C", @@ -2892,7 +4263,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Mora ny resaka. Asehoy ahy ny kaody.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -2910,7 +4292,6 @@ "type": "col", "nodes": [ { - "value": "Maltês", "type": "text", "details": { "prop_align": "C", @@ -2918,7 +4299,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Maltês", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2927,7 +4319,6 @@ "type": "col", "nodes": [ { - "value": "It-taħdita hija rħisa. Urini l-kodiċi.", "type": "text", "details": { "prop_align": "C", @@ -2935,7 +4326,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "It-taħdita hija rħisa. Urini l-kodiċi.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -2950,7 +4352,6 @@ "type": "col", "nodes": [ { - "value": "Maori", "type": "text", "details": { "prop_align": "C", @@ -2958,7 +4359,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Maori", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2967,7 +4379,6 @@ "type": "col", "nodes": [ { - "value": "He iti te korero. Whakaatuhia mai te tohu.", "type": "text", "details": { "prop_align": "C", @@ -2975,7 +4386,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "He iti te korero. Whakaatuhia mai te tohu.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -2993,7 +4415,6 @@ "type": "col", "nodes": [ { - "value": "Marati", "type": "text", "details": { "prop_align": "C", @@ -3001,7 +4422,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Marati", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3010,7 +4442,6 @@ "type": "col", "nodes": [ { - "value": "चर्चा स्वस्त आहे. मला कोड दाखवा.", "type": "text", "details": { "prop_align": "C", @@ -3018,7 +4449,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "चर्चा स्वस्त आहे. मला कोड दाखवा.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -3033,7 +4475,6 @@ "type": "col", "nodes": [ { - "value": "Mongol", "type": "text", "details": { "prop_align": "C", @@ -3041,7 +4482,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Mongol", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3050,7 +4502,6 @@ "type": "col", "nodes": [ { - "value": "Яриа хямд. Надад кодоо харуул.", "type": "text", "details": { "prop_align": "C", @@ -3058,7 +4509,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Яриа хямд. Надад кодоо харуул.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -3076,7 +4538,6 @@ "type": "col", "nodes": [ { - "value": "Nepalês", "type": "text", "details": { "prop_align": "C", @@ -3084,7 +4545,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Nepalês", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3093,7 +4565,6 @@ "type": "col", "nodes": [ { - "value": "कुरा सस्तो छ। मलाई कोड देखाउनुहोस्।", "type": "text", "details": { "prop_align": "C", @@ -3101,7 +4572,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "कुरा सस्तो छ। मलाई कोड देखाउनुहोस्।", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -3116,7 +4598,6 @@ "type": "col", "nodes": [ { - "value": "Nianja", "type": "text", "details": { "prop_align": "C", @@ -3124,7 +4605,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Nianja", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3133,7 +4625,6 @@ "type": "col", "nodes": [ { - "value": "Kulankhula ndikotsika mtengo. Ndiwonetseni nambala", "type": "text", "details": { "prop_align": "C", @@ -3141,7 +4632,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Kulankhula ndikotsika mtengo. Ndiwonetseni nambala", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -3159,7 +4661,6 @@ "type": "col", "nodes": [ { - "value": "Norueguês", "type": "text", "details": { "prop_align": "C", @@ -3167,7 +4668,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Norueguês", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3176,7 +4688,6 @@ "type": "col", "nodes": [ { - "value": "Snakk er billig. Vis meg koden.", "type": "text", "details": { "prop_align": "C", @@ -3184,7 +4695,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Snakk er billig. Vis meg koden.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -3199,7 +4721,6 @@ "type": "col", "nodes": [ { - "value": "Oriá", "type": "text", "details": { "prop_align": "C", @@ -3207,7 +4728,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Oriá", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3216,7 +4748,6 @@ "type": "col", "nodes": [ { - "value": "କଥାବାର୍ତ୍ତା ଶସ୍ତା ଅଟେ | ମୋତେ କୋଡ୍ ଦେଖାନ୍ତୁ |", "type": "text", "details": { "prop_align": "C", @@ -3224,7 +4755,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "କଥାବାର୍ତ୍ତା ଶସ୍ତା ଅଟେ | ମୋତେ କୋଡ୍ ଦେଖାନ୍ତୁ |", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -3242,7 +4784,6 @@ "type": "col", "nodes": [ { - "value": "Panjabi", "type": "text", "details": { "prop_align": "C", @@ -3250,7 +4791,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Panjabi", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3259,7 +4811,6 @@ "type": "col", "nodes": [ { - "value": "ਗੱਲ ਸਸਤਾ ਹੈ. ਮੈਨੂੰ ਕੋਡ ਦਿਖਾਓ.", "type": "text", "details": { "prop_align": "C", @@ -3267,7 +4818,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "ਗੱਲ ਸਸਤਾ ਹੈ. ਮੈਨੂੰ ਕੋਡ ਦਿਖਾਓ.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -3282,7 +4844,6 @@ "type": "col", "nodes": [ { - "value": "Pashto", "type": "text", "details": { "prop_align": "C", @@ -3290,7 +4851,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Pashto", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3299,7 +4871,6 @@ "type": "col", "nodes": [ { - "value": "خبرې ارزانه دي. ما ته کوډ وښایاست", "type": "text", "details": { "prop_align": "C", @@ -3307,7 +4878,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "خبرې ارزانه دي. ما ته کوډ وښایاست", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -3325,7 +4907,6 @@ "type": "col", "nodes": [ { - "value": "Persa", "type": "text", "details": { "prop_align": "C", @@ -3333,7 +4914,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Persa", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3342,7 +4934,6 @@ "type": "col", "nodes": [ { - "value": "بحث ارزان است. کد را به من نشان دهید", "type": "text", "details": { "prop_align": "C", @@ -3350,7 +4941,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "بحث ارزان است. کد را به من نشان دهید", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -3365,7 +4967,6 @@ "type": "col", "nodes": [ { - "value": "Polonês", "type": "text", "details": { "prop_align": "C", @@ -3373,7 +4974,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Polonês", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3382,7 +4994,6 @@ "type": "col", "nodes": [ { - "value": "Rozmowa jest tania. Pokaż mi kod.", "type": "text", "details": { "prop_align": "C", @@ -3390,7 +5001,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Rozmowa jest tania. Pokaż mi kod.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -3408,7 +5030,6 @@ "type": "col", "nodes": [ { - "value": "Português", "type": "text", "details": { "prop_align": "C", @@ -3416,7 +5037,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Português", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3425,7 +5057,6 @@ "type": "col", "nodes": [ { - "value": "Falar é fácil. Mostre-me o código.", "type": "text", "details": { "prop_align": "C", @@ -3433,7 +5064,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Falar é fácil. Mostre-me o código.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -3448,7 +5090,6 @@ "type": "col", "nodes": [ { - "value": "Quiniaruanda", "type": "text", "details": { "prop_align": "C", @@ -3456,7 +5097,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Quiniaruanda", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3465,7 +5117,6 @@ "type": "col", "nodes": [ { - "value": "Ibiganiro birahendutse. Nyereka kode.", "type": "text", "details": { "prop_align": "C", @@ -3473,7 +5124,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Ibiganiro birahendutse. Nyereka kode.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -3491,7 +5153,6 @@ "type": "col", "nodes": [ { - "value": "Quirguiz", "type": "text", "details": { "prop_align": "C", @@ -3499,7 +5160,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Quirguiz", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3508,7 +5180,6 @@ "type": "col", "nodes": [ { - "value": "Сүйлөшүү арзан. Мага кодду көрсөтүңүз.", "type": "text", "details": { "prop_align": "C", @@ -3516,7 +5187,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Сүйлөшүү арзан. Мага кодду көрсөтүңүз.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -3531,7 +5213,6 @@ "type": "col", "nodes": [ { - "value": "Romeno", "type": "text", "details": { "prop_align": "C", @@ -3539,7 +5220,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Romeno", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3548,7 +5240,6 @@ "type": "col", "nodes": [ { - "value": "Vorbirea este ieftină. Arată-mi codul.", "type": "text", "details": { "prop_align": "C", @@ -3556,7 +5247,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Vorbirea este ieftină. Arată-mi codul.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -3574,7 +5276,6 @@ "type": "col", "nodes": [ { - "value": "Russo", "type": "text", "details": { "prop_align": "C", @@ -3582,7 +5283,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Russo", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3591,7 +5303,6 @@ "type": "col", "nodes": [ { - "value": "Обсуждение дешево. Покажи мне код.", "type": "text", "details": { "prop_align": "C", @@ -3599,7 +5310,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Обсуждение дешево. Покажи мне код.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -3614,7 +5336,6 @@ "type": "col", "nodes": [ { - "value": "Samoano", "type": "text", "details": { "prop_align": "C", @@ -3622,7 +5343,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Samoano", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3631,7 +5363,6 @@ "type": "col", "nodes": [ { - "value": "E taugofie talanoaga. Faʻaali mai le code.", "type": "text", "details": { "prop_align": "C", @@ -3639,7 +5370,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "E taugofie talanoaga. Faʻaali mai le code.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -3657,7 +5399,6 @@ "type": "col", "nodes": [ { - "value": "Sérvio", "type": "text", "details": { "prop_align": "C", @@ -3665,7 +5406,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Sérvio", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3674,7 +5426,6 @@ "type": "col", "nodes": [ { - "value": "Причање је јефтино. Покажи ми шифру.", "type": "text", "details": { "prop_align": "C", @@ -3682,7 +5433,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Причање је јефтино. Покажи ми шифру.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -3697,7 +5459,6 @@ "type": "col", "nodes": [ { - "value": "Sindi", "type": "text", "details": { "prop_align": "C", @@ -3705,7 +5466,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Sindi", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3714,7 +5486,6 @@ "type": "col", "nodes": [ { - "value": "ڳالهه سستا آهي. مونکي ڪوڊ ڏيکاريو.", "type": "text", "details": { "prop_align": "C", @@ -3722,7 +5493,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "ڳالهه سستا آهي. مونکي ڪوڊ ڏيکاريو.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -3740,7 +5522,6 @@ "type": "col", "nodes": [ { - "value": "Somali", "type": "text", "details": { "prop_align": "C", @@ -3748,7 +5529,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Somali", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3757,7 +5549,6 @@ "type": "col", "nodes": [ { - "value": "Hadalku waa jaban yahay. I tus lambarka.", "type": "text", "details": { "prop_align": "C", @@ -3765,7 +5556,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Hadalku waa jaban yahay. I tus lambarka.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -3780,7 +5582,6 @@ "type": "col", "nodes": [ { - "value": "Soto do Sul", "type": "text", "details": { "prop_align": "C", @@ -3788,7 +5589,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Soto do Sul", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3797,7 +5609,6 @@ "type": "col", "nodes": [ { - "value": "Puo e theko e tlase. Mpontshe khoutu.", "type": "text", "details": { "prop_align": "C", @@ -3805,7 +5616,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Puo e theko e tlase. Mpontshe khoutu.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -3823,7 +5645,6 @@ "type": "col", "nodes": [ { - "value": "Suaíli", "type": "text", "details": { "prop_align": "C", @@ -3831,7 +5652,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Suaíli", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3840,7 +5672,6 @@ "type": "col", "nodes": [ { - "value": "Mazungumzo ni ya bei rahisi. Nionyeshe nambari.", "type": "text", "details": { "prop_align": "C", @@ -3848,7 +5679,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Mazungumzo ni ya bei rahisi. Nionyeshe nambari.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -3863,7 +5705,6 @@ "type": "col", "nodes": [ { - "value": "Sueco", "type": "text", "details": { "prop_align": "C", @@ -3871,7 +5712,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Sueco", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3880,7 +5732,6 @@ "type": "col", "nodes": [ { - "value": "Prat är billigt. Visa mig koden.", "type": "text", "details": { "prop_align": "C", @@ -3888,7 +5739,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Prat är billigt. Visa mig koden.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -3906,7 +5768,6 @@ "type": "col", "nodes": [ { - "value": "Sundanês", "type": "text", "details": { "prop_align": "C", @@ -3914,7 +5775,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Sundanês", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3923,7 +5795,6 @@ "type": "col", "nodes": [ { - "value": "Omongan mirah. Tunjukkeun kode na.", "type": "text", "details": { "prop_align": "C", @@ -3931,7 +5802,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Omongan mirah. Tunjukkeun kode na.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -3946,7 +5828,6 @@ "type": "col", "nodes": [ { - "value": "Tadjique", "type": "text", "details": { "prop_align": "C", @@ -3954,7 +5835,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Tadjique", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3963,7 +5855,6 @@ "type": "col", "nodes": [ { - "value": "Сӯҳбат арзон аст. Рамзро ба ман нишон диҳед.", "type": "text", "details": { "prop_align": "C", @@ -3971,7 +5862,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Сӯҳбат арзон аст. Рамзро ба ман нишон диҳед.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -3989,7 +5891,6 @@ "type": "col", "nodes": [ { - "value": "Tailandês", "type": "text", "details": { "prop_align": "C", @@ -3997,7 +5898,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Tailandês", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -4006,7 +5918,6 @@ "type": "col", "nodes": [ { - "value": "พูดคุยราคาถูก แสดงรหัส", "type": "text", "details": { "prop_align": "C", @@ -4014,7 +5925,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "พูดคุยราคาถูก แสดงรหัส", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -4029,7 +5951,6 @@ "type": "col", "nodes": [ { - "value": "Tâmil", "type": "text", "details": { "prop_align": "C", @@ -4037,7 +5958,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Tâmil", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -4046,7 +5978,6 @@ "type": "col", "nodes": [ { - "value": "பேச்சு மலிவானது. குறியீட்டை எனக்குக் காட்டு.", "type": "text", "details": { "prop_align": "C", @@ -4054,7 +5985,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "பேச்சு மலிவானது. குறியீட்டை எனக்குக் காட்டு.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -4072,7 +6014,6 @@ "type": "col", "nodes": [ { - "value": "Tártaro", "type": "text", "details": { "prop_align": "C", @@ -4080,7 +6021,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Tártaro", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -4089,7 +6041,6 @@ "type": "col", "nodes": [ { - "value": "Сөйләшү арзан. Миңа код күрсәтегез.", "type": "text", "details": { "prop_align": "C", @@ -4097,7 +6048,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Сөйләшү арзан. Миңа код күрсәтегез.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -4112,7 +6074,6 @@ "type": "col", "nodes": [ { - "value": "Tcheco", "type": "text", "details": { "prop_align": "C", @@ -4120,7 +6081,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Tcheco", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -4129,7 +6101,6 @@ "type": "col", "nodes": [ { - "value": "Mluvení je levné. Ukaž mi kód.", "type": "text", "details": { "prop_align": "C", @@ -4137,7 +6108,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Mluvení je levné. Ukaž mi kód.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -4155,7 +6137,6 @@ "type": "col", "nodes": [ { - "value": "Télugo", "type": "text", "details": { "prop_align": "C", @@ -4163,7 +6144,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Télugo", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -4172,7 +6164,6 @@ "type": "col", "nodes": [ { - "value": "చర్చ చౌకగా ఉంటుంది. నాకు కోడ్ చూపించు.", "type": "text", "details": { "prop_align": "C", @@ -4180,7 +6171,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "చర్చ చౌకగా ఉంటుంది. నాకు కోడ్ చూపించు.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -4195,7 +6197,6 @@ "type": "col", "nodes": [ { - "value": "Turco", "type": "text", "details": { "prop_align": "C", @@ -4203,7 +6204,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Turco", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -4212,7 +6224,6 @@ "type": "col", "nodes": [ { - "value": "Konuşma ucuz. Bana kodu göster.", "type": "text", "details": { "prop_align": "C", @@ -4220,7 +6231,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Konuşma ucuz. Bana kodu göster.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -4238,7 +6260,6 @@ "type": "col", "nodes": [ { - "value": "Turcomeno", "type": "text", "details": { "prop_align": "C", @@ -4246,7 +6267,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Turcomeno", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -4255,7 +6287,6 @@ "type": "col", "nodes": [ { - "value": "Gepleşik arzan. Kody görkez", "type": "text", "details": { "prop_align": "C", @@ -4263,7 +6294,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Gepleşik arzan. Kody görkez", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -4278,7 +6320,6 @@ "type": "col", "nodes": [ { - "value": "Ucraniano", "type": "text", "details": { "prop_align": "C", @@ -4286,7 +6327,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Ucraniano", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -4295,7 +6347,6 @@ "type": "col", "nodes": [ { - "value": "Розмова дешева. Покажи мені код.", "type": "text", "details": { "prop_align": "C", @@ -4303,7 +6354,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Розмова дешева. Покажи мені код.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -4321,7 +6383,6 @@ "type": "col", "nodes": [ { - "value": "Uigur", "type": "text", "details": { "prop_align": "C", @@ -4329,7 +6390,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Uigur", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -4338,7 +6410,6 @@ "type": "col", "nodes": [ { - "value": "پاراڭ ئەرزان. ماڭا كودنى كۆرسەت.", "type": "text", "details": { "prop_align": "C", @@ -4346,7 +6417,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "پاراڭ ئەرزان. ماڭا كودنى كۆرسەت.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -4361,7 +6443,6 @@ "type": "col", "nodes": [ { - "value": "Urdu", "type": "text", "details": { "prop_align": "C", @@ -4369,7 +6450,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Urdu", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -4378,7 +6470,6 @@ "type": "col", "nodes": [ { - "value": "بات گھٹیا ہے. مجھے کوڈ دکھائیں۔", "type": "text", "details": { "prop_align": "C", @@ -4386,7 +6477,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "بات گھٹیا ہے. مجھے کوڈ دکھائیں۔", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -4419,7 +6521,6 @@ "type": "col", "nodes": [ { - "value": "Uzbeque", "type": "text", "details": { "prop_align": "C", @@ -4427,7 +6528,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Uzbeque", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -4436,7 +6548,6 @@ "type": "col", "nodes": [ { - "value": "Gapirish arzon. Menga kodni ko'rsating.", "type": "text", "details": { "prop_align": "C", @@ -4444,7 +6555,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Gapirish arzon. Menga kodni ko'rsating.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -4459,7 +6581,6 @@ "type": "col", "nodes": [ { - "value": "Vietnamita", "type": "text", "details": { "prop_align": "C", @@ -4467,7 +6588,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Vietnamita", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -4476,7 +6608,6 @@ "type": "col", "nodes": [ { - "value": "Nói chuyện là rẻ. Cho tôi xem mã.", "type": "text", "details": { "prop_align": "C", @@ -4484,7 +6615,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Nói chuyện là rẻ. Cho tôi xem mã.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -4502,7 +6644,6 @@ "type": "col", "nodes": [ { - "value": "Xhosa", "type": "text", "details": { "prop_align": "C", @@ -4510,7 +6651,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Xhosa", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -4519,7 +6671,6 @@ "type": "col", "nodes": [ { - "value": "Ukuthetha akubizi. Ndibonise ikhowudi.", "type": "text", "details": { "prop_align": "C", @@ -4527,7 +6678,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Ukuthetha akubizi. Ndibonise ikhowudi.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -4542,7 +6704,6 @@ "type": "col", "nodes": [ { - "value": "Xona", "type": "text", "details": { "prop_align": "C", @@ -4550,7 +6711,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Xona", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -4559,7 +6731,6 @@ "type": "col", "nodes": [ { - "value": "Kutaura kwakachipa. Ndiratidze kodhi.", "type": "text", "details": { "prop_align": "C", @@ -4567,7 +6738,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Kutaura kwakachipa. Ndiratidze kodhi.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -4585,7 +6767,6 @@ "type": "col", "nodes": [ { - "value": "Zulu", "type": "text", "details": { "prop_align": "C", @@ -4593,7 +6774,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Zulu", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -4602,7 +6794,6 @@ "type": "col", "nodes": [ { - "value": "Ukukhuluma kushibhile. Ngikhombise ikhodi.", "type": "text", "details": { "prop_align": "C", @@ -4610,7 +6801,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Ukukhuluma kushibhile. Ngikhombise ikhodi.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } @@ -4628,7 +6830,6 @@ }, "nodes": [ { - "value": "long text without spaces", "type": "text", "details": { "prop_align": "L", @@ -4638,7 +6839,19 @@ "prop_font_size": 10, "prop_font_style": "B", "prop_top": 5 - } + }, + "nodes": [ + { + "value": "long text without spaces", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_font_style": "B" + } + } + ] } ] } @@ -4653,7 +6866,6 @@ "type": "col", "nodes": [ { - "value": "聲音之道㣲矣天地有自然之聲人聲有自然之節古之聖人得其節之自然者而為之依永和聲至於八音諧而神人和胥是道也文字之作無不講求音韻顧南北異其風土古今殊其轉變喉舌唇齒清濁輕重之分辨在毫釐動多訛舛樊然淆混不可究極自西域梵僧定字母為三十六分五音以總天下之聲而翻切之學興儒者若司馬光鄭樵皆宗之其法有音和類隔互用借聲類例不一後人苦其委曲繁重難以驟曉往往以類隔互用之切改從音和而終莫能得其原也我聖祖仁皇帝", "type": "text", "details": { "prop_align": "C", @@ -4661,7 +6873,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "聲音之道㣲矣天地有自然之聲人聲有自然之節古之聖人得其節之自然者而為之依永和聲至於八音諧而神人和胥是道也文字之作無不講求音韻顧南北異其風土古今殊其轉變喉舌唇齒清濁輕重之分辨在毫釐動多訛舛樊然淆混不可究極自西域梵僧定字母為三十六分五音以總天下之聲而翻切之學興儒者若司馬光鄭樵皆宗之其法有音和類隔互用借聲類例不一後人苦其委曲繁重難以驟曉往往以類隔互用之切改從音和而終莫能得其原也我聖祖仁皇帝", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -4670,7 +6893,6 @@ "type": "col", "nodes": [ { - "value": "聲音之道㣲矣天地有自然之聲人聲有自然之節古之聖人得其節之自然者而為之依永和聲至於八音諧而神人和胥是道也文字之作無不講求音韻顧南北異其風土古今殊其轉變喉舌唇齒清濁輕重之分辨在毫釐動多訛舛樊然淆混不可究極自西域梵僧定字母為三十六分五音以總天下之聲而翻切之學興儒者若司馬光鄭樵皆宗之其法有音和類隔互用借聲類例不一後人苦其委曲繁重難以驟曉往往以類隔互用之切改從音和而終莫能得其原也我聖祖仁皇帝", "type": "text", "details": { "prop_align": "L", @@ -4678,7 +6900,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "聲音之道㣲矣天地有自然之聲人聲有自然之節古之聖人得其節之自然者而為之依永和聲至於八音諧而神人和胥是道也文字之作無不講求音韻顧南北異其風土古今殊其轉變喉舌唇齒清濁輕重之分辨在毫釐動多訛舛樊然淆混不可究極自西域梵僧定字母為三十六分五音以總天下之聲而翻切之學興儒者若司馬光鄭樵皆宗之其法有音和類隔互用借聲類例不一後人苦其委曲繁重難以驟曉往往以類隔互用之切改從音和而終莫能得其原也我聖祖仁皇帝", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] }, @@ -4687,7 +6920,6 @@ "type": "col", "nodes": [ { - "value": "聲音之道㣲矣天地有自然之聲人聲有自然之節古之聖人得其節之自然者而為之依永和聲至於八音諧而神人和胥是道也文字之作無不講求音韻顧南北異其風土古今殊其轉變喉舌唇齒清濁輕重之分辨在毫釐動多訛舛樊然淆混不可究極自西域梵僧定字母為三十六分五音以總天下之聲而翻切之學興儒者若司馬光鄭樵皆宗之其法有音和類隔互用借聲類例不一後人苦其委曲繁重難以驟曉往往以類隔互用之切改從音和而終莫能得其原也我聖祖仁皇帝", "type": "text", "details": { "prop_align": "R", @@ -4695,7 +6927,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial-unicode-ms", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "聲音之道㣲矣天地有自然之聲人聲有自然之節古之聖人得其節之自然者而為之依永和聲至於八音諧而神人和胥是道也文字之作無不講求音韻顧南北異其風土古今殊其轉變喉舌唇齒清濁輕重之分辨在毫釐動多訛舛樊然淆混不可究極自西域梵僧定字母為三十六分五音以總天下之聲而翻切之學興儒者若司馬光鄭樵皆宗之其法有音和類隔互用借聲類例不一後人苦其委曲繁重難以驟曉往往以類隔互用之切改從音和而終莫能得其原也我聖祖仁皇帝", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial-unicode-ms", + "prop_font_size": 10 + } + } + ] } ] } diff --git a/test/maroto/examples/custompage.json b/test/maroto/examples/custompage.json index a86fd9e0..a44dd2f7 100755 --- a/test/maroto/examples/custompage.json +++ b/test/maroto/examples/custompage.json @@ -43,7 +43,6 @@ "type": "col", "nodes": [ { - "value": "Gopher International Shipping, Inc.", "type": "text", "details": { "prop_align": "L", @@ -52,7 +51,18 @@ "prop_font_family": "arial", "prop_font_size": 12, "prop_top": 12 - } + }, + "nodes": [ + { + "value": "Gopher International Shipping, Inc.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12 + } + } + ] } ] }, diff --git a/test/maroto/examples/footer.json b/test/maroto/examples/footer.json index 39ea00a4..d237c59b 100755 --- a/test/maroto/examples/footer.json +++ b/test/maroto/examples/footer.json @@ -32,7 +32,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -40,7 +39,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -58,7 +68,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -66,7 +75,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -84,7 +104,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -92,7 +111,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -110,7 +140,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -118,7 +147,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -136,7 +176,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -144,7 +183,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -162,7 +212,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -170,7 +219,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -188,7 +248,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -196,7 +255,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -214,7 +284,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -222,7 +291,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -240,7 +320,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -248,7 +327,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -266,7 +356,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -274,7 +363,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -292,7 +392,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -300,7 +399,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -318,7 +428,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -326,7 +435,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -344,7 +464,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -352,7 +471,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -370,7 +500,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -378,7 +507,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -396,7 +536,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -404,7 +543,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -422,7 +572,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -430,7 +579,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -448,7 +608,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -456,7 +615,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -474,7 +644,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -482,7 +651,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -500,7 +680,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -508,7 +687,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -526,7 +716,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -534,7 +723,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -552,7 +752,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -560,7 +759,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -578,7 +788,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -586,7 +795,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -604,7 +824,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -612,7 +831,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -630,7 +860,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -638,7 +867,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -666,7 +906,6 @@ }, "nodes": [ { - "value": "Footer", "type": "text", "details": { "prop_align": "C", @@ -675,7 +914,19 @@ "prop_font_family": "arial", "prop_font_size": 10, "prop_font_style": "B" - } + }, + "nodes": [ + { + "value": "Footer", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_font_style": "B" + } + } + ] } ] } @@ -698,7 +949,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -706,7 +956,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -724,7 +985,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -732,7 +992,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -750,7 +1021,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -758,7 +1028,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -776,7 +1057,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -784,7 +1064,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -802,7 +1093,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -810,7 +1100,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -828,7 +1129,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -836,7 +1136,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -854,7 +1165,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -862,7 +1172,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -880,7 +1201,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -888,7 +1208,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -906,7 +1237,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -914,7 +1244,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -932,7 +1273,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -940,7 +1280,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -958,7 +1309,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -966,7 +1316,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -984,7 +1345,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -992,7 +1352,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1010,7 +1381,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1018,7 +1388,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1036,7 +1417,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1044,7 +1424,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1062,7 +1453,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1070,7 +1460,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1088,7 +1489,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1096,7 +1496,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1114,7 +1525,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1122,7 +1532,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1140,7 +1561,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1148,7 +1568,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1166,7 +1597,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1174,7 +1604,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1192,7 +1633,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1200,7 +1640,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1218,7 +1669,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1226,7 +1676,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1244,7 +1705,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1252,7 +1712,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1270,7 +1741,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1278,7 +1748,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1296,7 +1777,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1304,7 +1784,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1332,7 +1823,6 @@ }, "nodes": [ { - "value": "Footer", "type": "text", "details": { "prop_align": "C", @@ -1341,7 +1831,19 @@ "prop_font_family": "arial", "prop_font_size": 10, "prop_font_style": "B" - } + }, + "nodes": [ + { + "value": "Footer", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_font_style": "B" + } + } + ] } ] } @@ -1364,7 +1866,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1372,7 +1873,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1390,7 +1902,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1398,7 +1909,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1426,7 +1948,6 @@ }, "nodes": [ { - "value": "Footer", "type": "text", "details": { "prop_align": "C", @@ -1435,7 +1956,19 @@ "prop_font_family": "arial", "prop_font_size": 10, "prop_font_style": "B" - } + }, + "nodes": [ + { + "value": "Footer", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_font_style": "B" + } + } + ] } ] } diff --git a/test/maroto/examples/header.json b/test/maroto/examples/header.json index ef8e341a..00a8151d 100755 --- a/test/maroto/examples/header.json +++ b/test/maroto/examples/header.json @@ -32,7 +32,6 @@ }, "nodes": [ { - "value": "Header", "type": "text", "details": { "prop_align": "C", @@ -41,7 +40,19 @@ "prop_font_family": "arial", "prop_font_size": 10, "prop_font_style": "B" - } + }, + "nodes": [ + { + "value": "Header", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_font_style": "B" + } + } + ] } ] } @@ -59,7 +70,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -67,7 +77,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -85,7 +106,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -93,7 +113,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -111,7 +142,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -119,7 +149,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -137,7 +178,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -145,7 +185,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -163,7 +214,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -171,7 +221,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -189,7 +250,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -197,7 +257,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -215,7 +286,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -223,7 +293,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -241,7 +322,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -249,7 +329,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -267,7 +358,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -275,7 +365,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -293,7 +394,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -301,7 +401,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -319,7 +430,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -327,7 +437,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -345,7 +466,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -353,7 +473,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -371,7 +502,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -379,7 +509,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -397,7 +538,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -405,7 +545,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -423,7 +574,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -431,7 +581,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -449,7 +610,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -457,7 +617,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -475,7 +646,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -483,7 +653,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -501,7 +682,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -509,7 +689,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -527,7 +718,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -535,7 +725,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -553,7 +754,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -561,7 +761,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -579,7 +790,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -587,7 +797,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -605,7 +826,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -613,7 +833,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -631,7 +862,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -639,7 +869,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -657,7 +898,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -665,7 +905,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -698,7 +949,6 @@ }, "nodes": [ { - "value": "Header", "type": "text", "details": { "prop_align": "C", @@ -707,7 +957,19 @@ "prop_font_family": "arial", "prop_font_size": 10, "prop_font_style": "B" - } + }, + "nodes": [ + { + "value": "Header", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_font_style": "B" + } + } + ] } ] } @@ -725,7 +987,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -733,7 +994,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -751,7 +1023,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -759,7 +1030,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -777,7 +1059,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -785,7 +1066,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -803,7 +1095,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -811,7 +1102,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -829,7 +1131,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -837,7 +1138,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -855,7 +1167,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -863,7 +1174,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -881,7 +1203,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -889,7 +1210,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -907,7 +1239,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -915,7 +1246,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -933,7 +1275,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -941,7 +1282,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -959,7 +1311,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -967,7 +1318,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -985,7 +1347,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -993,7 +1354,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1011,7 +1383,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1019,7 +1390,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1037,7 +1419,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1045,7 +1426,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1063,7 +1455,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1071,7 +1462,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1089,7 +1491,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1097,7 +1498,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1115,7 +1527,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1123,7 +1534,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1141,7 +1563,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1149,7 +1570,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1167,7 +1599,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1175,7 +1606,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1193,7 +1635,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1201,7 +1642,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1219,7 +1671,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1227,7 +1678,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1245,7 +1707,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1253,7 +1714,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1271,7 +1743,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1279,7 +1750,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1297,7 +1779,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1305,7 +1786,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1323,7 +1815,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1331,7 +1822,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1364,7 +1866,6 @@ }, "nodes": [ { - "value": "Header", "type": "text", "details": { "prop_align": "C", @@ -1373,7 +1874,19 @@ "prop_font_family": "arial", "prop_font_size": 10, "prop_font_style": "B" - } + }, + "nodes": [ + { + "value": "Header", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_font_style": "B" + } + } + ] } ] } @@ -1391,7 +1904,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1399,7 +1911,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1417,7 +1940,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1425,7 +1947,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } diff --git a/test/maroto/examples/list.json b/test/maroto/examples/list.json index 4e74c401..17364562 100755 --- a/test/maroto/examples/list.json +++ b/test/maroto/examples/list.json @@ -28,7 +28,6 @@ "type": "col", "nodes": [ { - "value": "Key", "type": "text", "details": { "prop_align": "L", @@ -37,7 +36,19 @@ "prop_font_family": "arial", "prop_font_size": 10, "prop_font_style": "B" - } + }, + "nodes": [ + { + "value": "Key", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_font_style": "B" + } + } + ] } ] }, @@ -46,7 +57,6 @@ "type": "col", "nodes": [ { - "value": "Bytes", "type": "text", "details": { "prop_align": "L", @@ -55,7 +65,19 @@ "prop_font_family": "arial", "prop_font_size": 10, "prop_font_style": "B" - } + }, + "nodes": [ + { + "value": "Bytes", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_font_style": "B" + } + } + ] } ] } @@ -73,7 +95,6 @@ "type": "col", "nodes": [ { - "value": "Key: 0", "type": "text", "details": { "prop_align": "L", @@ -81,7 +102,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 0", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -90,7 +122,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 0", "type": "text", "details": { "prop_align": "L", @@ -98,7 +129,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 0", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -113,7 +155,6 @@ "type": "col", "nodes": [ { - "value": "Key: 1", "type": "text", "details": { "prop_align": "L", @@ -121,7 +162,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 1", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -130,7 +182,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 1", "type": "text", "details": { "prop_align": "L", @@ -138,7 +189,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 1", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -156,7 +218,6 @@ "type": "col", "nodes": [ { - "value": "Key: 2", "type": "text", "details": { "prop_align": "L", @@ -164,7 +225,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 2", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -173,7 +245,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 2", "type": "text", "details": { "prop_align": "L", @@ -181,7 +252,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 2", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -196,7 +278,6 @@ "type": "col", "nodes": [ { - "value": "Key: 3", "type": "text", "details": { "prop_align": "L", @@ -204,7 +285,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 3", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -213,7 +305,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 3", "type": "text", "details": { "prop_align": "L", @@ -221,7 +312,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 3", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -239,7 +341,6 @@ "type": "col", "nodes": [ { - "value": "Key: 4", "type": "text", "details": { "prop_align": "L", @@ -247,7 +348,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 4", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -256,7 +368,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 4", "type": "text", "details": { "prop_align": "L", @@ -264,7 +375,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 4", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -279,7 +401,6 @@ "type": "col", "nodes": [ { - "value": "Key: 5", "type": "text", "details": { "prop_align": "L", @@ -287,7 +408,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 5", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -296,7 +428,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 5", "type": "text", "details": { "prop_align": "L", @@ -304,7 +435,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 5", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -322,7 +464,6 @@ "type": "col", "nodes": [ { - "value": "Key: 6", "type": "text", "details": { "prop_align": "L", @@ -330,7 +471,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 6", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -339,7 +491,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 6", "type": "text", "details": { "prop_align": "L", @@ -347,7 +498,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 6", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -362,7 +524,6 @@ "type": "col", "nodes": [ { - "value": "Key: 7", "type": "text", "details": { "prop_align": "L", @@ -370,7 +531,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 7", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -379,7 +551,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 7", "type": "text", "details": { "prop_align": "L", @@ -387,7 +558,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 7", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -405,7 +587,6 @@ "type": "col", "nodes": [ { - "value": "Key: 8", "type": "text", "details": { "prop_align": "L", @@ -413,7 +594,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 8", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -422,7 +614,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 8", "type": "text", "details": { "prop_align": "L", @@ -430,7 +621,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 8", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -445,7 +647,6 @@ "type": "col", "nodes": [ { - "value": "Key: 9", "type": "text", "details": { "prop_align": "L", @@ -453,7 +654,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 9", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -462,7 +674,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 9", "type": "text", "details": { "prop_align": "L", @@ -470,7 +681,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 9", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -488,7 +710,6 @@ "type": "col", "nodes": [ { - "value": "Key: 10", "type": "text", "details": { "prop_align": "L", @@ -496,7 +717,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 10", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -505,7 +737,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 10", "type": "text", "details": { "prop_align": "L", @@ -513,7 +744,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 10", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -528,7 +770,6 @@ "type": "col", "nodes": [ { - "value": "Key: 11", "type": "text", "details": { "prop_align": "L", @@ -536,7 +777,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 11", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -545,7 +797,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 11", "type": "text", "details": { "prop_align": "L", @@ -553,7 +804,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 11", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -571,7 +833,6 @@ "type": "col", "nodes": [ { - "value": "Key: 12", "type": "text", "details": { "prop_align": "L", @@ -579,7 +840,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 12", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -588,7 +860,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 12", "type": "text", "details": { "prop_align": "L", @@ -596,7 +867,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 12", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -611,7 +893,6 @@ "type": "col", "nodes": [ { - "value": "Key: 13", "type": "text", "details": { "prop_align": "L", @@ -619,7 +900,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 13", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -628,7 +920,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 13", "type": "text", "details": { "prop_align": "L", @@ -636,7 +927,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 13", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -654,7 +956,6 @@ "type": "col", "nodes": [ { - "value": "Key: 14", "type": "text", "details": { "prop_align": "L", @@ -662,7 +963,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 14", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -671,7 +983,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 14", "type": "text", "details": { "prop_align": "L", @@ -679,7 +990,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 14", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -694,7 +1016,6 @@ "type": "col", "nodes": [ { - "value": "Key: 15", "type": "text", "details": { "prop_align": "L", @@ -702,7 +1023,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 15", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -711,7 +1043,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 15", "type": "text", "details": { "prop_align": "L", @@ -719,7 +1050,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 15", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -737,7 +1079,6 @@ "type": "col", "nodes": [ { - "value": "Key: 16", "type": "text", "details": { "prop_align": "L", @@ -745,7 +1086,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 16", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -754,7 +1106,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 16", "type": "text", "details": { "prop_align": "L", @@ -762,7 +1113,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 16", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -777,7 +1139,6 @@ "type": "col", "nodes": [ { - "value": "Key: 17", "type": "text", "details": { "prop_align": "L", @@ -785,7 +1146,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 17", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -794,7 +1166,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 17", "type": "text", "details": { "prop_align": "L", @@ -802,7 +1173,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 17", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -820,7 +1202,6 @@ "type": "col", "nodes": [ { - "value": "Key: 18", "type": "text", "details": { "prop_align": "L", @@ -828,7 +1209,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 18", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -837,7 +1229,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 18", "type": "text", "details": { "prop_align": "L", @@ -845,7 +1236,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 18", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -860,7 +1262,6 @@ "type": "col", "nodes": [ { - "value": "Key: 19", "type": "text", "details": { "prop_align": "L", @@ -868,7 +1269,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 19", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -877,7 +1289,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 19", "type": "text", "details": { "prop_align": "L", @@ -885,7 +1296,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 19", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -903,7 +1325,6 @@ "type": "col", "nodes": [ { - "value": "Key: 20", "type": "text", "details": { "prop_align": "L", @@ -911,7 +1332,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 20", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -920,7 +1352,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 20", "type": "text", "details": { "prop_align": "L", @@ -928,7 +1359,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 20", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -943,7 +1385,6 @@ "type": "col", "nodes": [ { - "value": "Key: 21", "type": "text", "details": { "prop_align": "L", @@ -951,7 +1392,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 21", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -960,7 +1412,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 21", "type": "text", "details": { "prop_align": "L", @@ -968,7 +1419,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 21", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -986,7 +1448,6 @@ "type": "col", "nodes": [ { - "value": "Key: 22", "type": "text", "details": { "prop_align": "L", @@ -994,7 +1455,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 22", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1003,7 +1475,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 22", "type": "text", "details": { "prop_align": "L", @@ -1011,7 +1482,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 22", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1026,7 +1508,6 @@ "type": "col", "nodes": [ { - "value": "Key: 23", "type": "text", "details": { "prop_align": "L", @@ -1034,7 +1515,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 23", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1043,7 +1535,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 23", "type": "text", "details": { "prop_align": "L", @@ -1051,7 +1542,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 23", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1069,7 +1571,6 @@ "type": "col", "nodes": [ { - "value": "Key: 24", "type": "text", "details": { "prop_align": "L", @@ -1077,7 +1578,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 24", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1086,7 +1598,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 24", "type": "text", "details": { "prop_align": "L", @@ -1094,7 +1605,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 24", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1109,7 +1631,6 @@ "type": "col", "nodes": [ { - "value": "Key: 25", "type": "text", "details": { "prop_align": "L", @@ -1117,7 +1638,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 25", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1126,7 +1658,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 25", "type": "text", "details": { "prop_align": "L", @@ -1134,7 +1665,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 25", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1152,7 +1694,6 @@ "type": "col", "nodes": [ { - "value": "Key: 26", "type": "text", "details": { "prop_align": "L", @@ -1160,7 +1701,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 26", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1169,7 +1721,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 26", "type": "text", "details": { "prop_align": "L", @@ -1177,7 +1728,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 26", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1192,7 +1754,6 @@ "type": "col", "nodes": [ { - "value": "Key: 27", "type": "text", "details": { "prop_align": "L", @@ -1200,7 +1761,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 27", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1209,7 +1781,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 27", "type": "text", "details": { "prop_align": "L", @@ -1217,7 +1788,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 27", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1235,7 +1817,6 @@ "type": "col", "nodes": [ { - "value": "Key: 28", "type": "text", "details": { "prop_align": "L", @@ -1243,7 +1824,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 28", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1252,7 +1844,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 28", "type": "text", "details": { "prop_align": "L", @@ -1260,7 +1851,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 28", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1275,7 +1877,6 @@ "type": "col", "nodes": [ { - "value": "Key: 29", "type": "text", "details": { "prop_align": "L", @@ -1283,7 +1884,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 29", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1292,7 +1904,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 29", "type": "text", "details": { "prop_align": "L", @@ -1300,7 +1911,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 29", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1318,7 +1940,6 @@ "type": "col", "nodes": [ { - "value": "Key: 30", "type": "text", "details": { "prop_align": "L", @@ -1326,7 +1947,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 30", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1335,7 +1967,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 30", "type": "text", "details": { "prop_align": "L", @@ -1343,7 +1974,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 30", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1358,7 +2000,6 @@ "type": "col", "nodes": [ { - "value": "Key: 31", "type": "text", "details": { "prop_align": "L", @@ -1366,7 +2007,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 31", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1375,7 +2027,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 31", "type": "text", "details": { "prop_align": "L", @@ -1383,7 +2034,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 31", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1401,7 +2063,6 @@ "type": "col", "nodes": [ { - "value": "Key: 32", "type": "text", "details": { "prop_align": "L", @@ -1409,7 +2070,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 32", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1418,7 +2090,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 32", "type": "text", "details": { "prop_align": "L", @@ -1426,7 +2097,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 32", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1441,7 +2123,6 @@ "type": "col", "nodes": [ { - "value": "Key: 33", "type": "text", "details": { "prop_align": "L", @@ -1449,7 +2130,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 33", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1458,7 +2150,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 33", "type": "text", "details": { "prop_align": "L", @@ -1466,7 +2157,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 33", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1484,7 +2186,6 @@ "type": "col", "nodes": [ { - "value": "Key: 34", "type": "text", "details": { "prop_align": "L", @@ -1492,7 +2193,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 34", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1501,7 +2213,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 34", "type": "text", "details": { "prop_align": "L", @@ -1509,7 +2220,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 34", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1524,7 +2246,6 @@ "type": "col", "nodes": [ { - "value": "Key: 35", "type": "text", "details": { "prop_align": "L", @@ -1532,7 +2253,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 35", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1541,7 +2273,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 35", "type": "text", "details": { "prop_align": "L", @@ -1549,7 +2280,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 35", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1567,7 +2309,6 @@ "type": "col", "nodes": [ { - "value": "Key: 36", "type": "text", "details": { "prop_align": "L", @@ -1575,7 +2316,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 36", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1584,7 +2336,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 36", "type": "text", "details": { "prop_align": "L", @@ -1592,7 +2343,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 36", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1607,7 +2369,6 @@ "type": "col", "nodes": [ { - "value": "Key: 37", "type": "text", "details": { "prop_align": "L", @@ -1615,7 +2376,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 37", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1624,7 +2396,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 37", "type": "text", "details": { "prop_align": "L", @@ -1632,7 +2403,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 37", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1650,7 +2432,6 @@ "type": "col", "nodes": [ { - "value": "Key: 38", "type": "text", "details": { "prop_align": "L", @@ -1658,7 +2439,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 38", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1667,7 +2459,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 38", "type": "text", "details": { "prop_align": "L", @@ -1675,7 +2466,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 38", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1690,7 +2492,6 @@ "type": "col", "nodes": [ { - "value": "Key: 39", "type": "text", "details": { "prop_align": "L", @@ -1698,7 +2499,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 39", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1707,7 +2519,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 39", "type": "text", "details": { "prop_align": "L", @@ -1715,7 +2526,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 39", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1733,7 +2555,6 @@ "type": "col", "nodes": [ { - "value": "Key: 40", "type": "text", "details": { "prop_align": "L", @@ -1741,7 +2562,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 40", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1750,7 +2582,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 40", "type": "text", "details": { "prop_align": "L", @@ -1758,7 +2589,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 40", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1773,7 +2615,6 @@ "type": "col", "nodes": [ { - "value": "Key: 41", "type": "text", "details": { "prop_align": "L", @@ -1781,7 +2622,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 41", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1790,7 +2642,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 41", "type": "text", "details": { "prop_align": "L", @@ -1798,7 +2649,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 41", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1816,7 +2678,6 @@ "type": "col", "nodes": [ { - "value": "Key: 42", "type": "text", "details": { "prop_align": "L", @@ -1824,7 +2685,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 42", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1833,7 +2705,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 42", "type": "text", "details": { "prop_align": "L", @@ -1841,7 +2712,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 42", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1856,7 +2738,6 @@ "type": "col", "nodes": [ { - "value": "Key: 43", "type": "text", "details": { "prop_align": "L", @@ -1864,7 +2745,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 43", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1873,7 +2765,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 43", "type": "text", "details": { "prop_align": "L", @@ -1881,7 +2772,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 43", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1899,7 +2801,6 @@ "type": "col", "nodes": [ { - "value": "Key: 44", "type": "text", "details": { "prop_align": "L", @@ -1907,7 +2808,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 44", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1916,7 +2828,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 44", "type": "text", "details": { "prop_align": "L", @@ -1924,7 +2835,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 44", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1939,7 +2861,6 @@ "type": "col", "nodes": [ { - "value": "Key: 45", "type": "text", "details": { "prop_align": "L", @@ -1947,7 +2868,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 45", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1956,7 +2888,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 45", "type": "text", "details": { "prop_align": "L", @@ -1964,7 +2895,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 45", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1982,7 +2924,6 @@ "type": "col", "nodes": [ { - "value": "Key: 46", "type": "text", "details": { "prop_align": "L", @@ -1990,7 +2931,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 46", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -1999,7 +2951,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 46", "type": "text", "details": { "prop_align": "L", @@ -2007,7 +2958,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 46", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2022,7 +2984,6 @@ "type": "col", "nodes": [ { - "value": "Key: 47", "type": "text", "details": { "prop_align": "L", @@ -2030,7 +2991,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 47", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2039,7 +3011,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 47", "type": "text", "details": { "prop_align": "L", @@ -2047,7 +3018,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 47", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2065,7 +3047,6 @@ "type": "col", "nodes": [ { - "value": "Key: 48", "type": "text", "details": { "prop_align": "L", @@ -2073,7 +3054,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 48", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2082,7 +3074,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 48", "type": "text", "details": { "prop_align": "L", @@ -2090,7 +3081,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 48", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2105,7 +3107,6 @@ "type": "col", "nodes": [ { - "value": "Key: 49", "type": "text", "details": { "prop_align": "L", @@ -2113,7 +3114,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 49", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2122,7 +3134,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 49", "type": "text", "details": { "prop_align": "L", @@ -2130,7 +3141,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 49", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2148,7 +3170,6 @@ "type": "col", "nodes": [ { - "value": "Key: 50", "type": "text", "details": { "prop_align": "L", @@ -2156,7 +3177,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 50", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2165,7 +3197,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 50", "type": "text", "details": { "prop_align": "L", @@ -2173,7 +3204,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 50", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2203,7 +3245,6 @@ "type": "col", "nodes": [ { - "value": "Key: 51", "type": "text", "details": { "prop_align": "L", @@ -2211,7 +3252,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 51", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2220,7 +3272,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 51", "type": "text", "details": { "prop_align": "L", @@ -2228,7 +3279,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 51", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2246,7 +3308,6 @@ "type": "col", "nodes": [ { - "value": "Key: 52", "type": "text", "details": { "prop_align": "L", @@ -2254,7 +3315,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 52", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2263,7 +3335,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 52", "type": "text", "details": { "prop_align": "L", @@ -2271,7 +3342,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 52", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2286,7 +3368,6 @@ "type": "col", "nodes": [ { - "value": "Key: 53", "type": "text", "details": { "prop_align": "L", @@ -2294,7 +3375,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 53", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2303,7 +3395,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 53", "type": "text", "details": { "prop_align": "L", @@ -2311,7 +3402,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 53", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2329,7 +3431,6 @@ "type": "col", "nodes": [ { - "value": "Key: 54", "type": "text", "details": { "prop_align": "L", @@ -2337,7 +3438,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 54", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2346,7 +3458,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 54", "type": "text", "details": { "prop_align": "L", @@ -2354,7 +3465,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 54", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2369,7 +3491,6 @@ "type": "col", "nodes": [ { - "value": "Key: 55", "type": "text", "details": { "prop_align": "L", @@ -2377,7 +3498,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 55", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2386,7 +3518,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 55", "type": "text", "details": { "prop_align": "L", @@ -2394,7 +3525,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 55", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2412,7 +3554,6 @@ "type": "col", "nodes": [ { - "value": "Key: 56", "type": "text", "details": { "prop_align": "L", @@ -2420,7 +3561,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 56", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2429,7 +3581,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 56", "type": "text", "details": { "prop_align": "L", @@ -2437,7 +3588,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 56", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2452,7 +3614,6 @@ "type": "col", "nodes": [ { - "value": "Key: 57", "type": "text", "details": { "prop_align": "L", @@ -2460,7 +3621,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 57", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2469,7 +3641,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 57", "type": "text", "details": { "prop_align": "L", @@ -2477,7 +3648,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 57", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2495,7 +3677,6 @@ "type": "col", "nodes": [ { - "value": "Key: 58", "type": "text", "details": { "prop_align": "L", @@ -2503,7 +3684,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 58", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2512,7 +3704,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 58", "type": "text", "details": { "prop_align": "L", @@ -2520,7 +3711,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 58", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2535,7 +3737,6 @@ "type": "col", "nodes": [ { - "value": "Key: 59", "type": "text", "details": { "prop_align": "L", @@ -2543,7 +3744,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 59", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2552,7 +3764,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 59", "type": "text", "details": { "prop_align": "L", @@ -2560,7 +3771,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 59", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2578,7 +3800,6 @@ "type": "col", "nodes": [ { - "value": "Key: 60", "type": "text", "details": { "prop_align": "L", @@ -2586,7 +3807,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 60", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2595,7 +3827,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 60", "type": "text", "details": { "prop_align": "L", @@ -2603,7 +3834,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 60", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2618,7 +3860,6 @@ "type": "col", "nodes": [ { - "value": "Key: 61", "type": "text", "details": { "prop_align": "L", @@ -2626,7 +3867,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 61", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2635,7 +3887,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 61", "type": "text", "details": { "prop_align": "L", @@ -2643,7 +3894,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 61", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2661,7 +3923,6 @@ "type": "col", "nodes": [ { - "value": "Key: 62", "type": "text", "details": { "prop_align": "L", @@ -2669,7 +3930,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 62", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2678,7 +3950,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 62", "type": "text", "details": { "prop_align": "L", @@ -2686,7 +3957,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 62", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2701,7 +3983,6 @@ "type": "col", "nodes": [ { - "value": "Key: 63", "type": "text", "details": { "prop_align": "L", @@ -2709,7 +3990,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 63", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2718,7 +4010,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 63", "type": "text", "details": { "prop_align": "L", @@ -2726,7 +4017,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 63", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2744,7 +4046,6 @@ "type": "col", "nodes": [ { - "value": "Key: 64", "type": "text", "details": { "prop_align": "L", @@ -2752,7 +4053,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 64", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2761,7 +4073,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 64", "type": "text", "details": { "prop_align": "L", @@ -2769,7 +4080,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 64", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2784,7 +4106,6 @@ "type": "col", "nodes": [ { - "value": "Key: 65", "type": "text", "details": { "prop_align": "L", @@ -2792,7 +4113,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 65", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2801,7 +4133,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 65", "type": "text", "details": { "prop_align": "L", @@ -2809,7 +4140,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 65", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2827,7 +4169,6 @@ "type": "col", "nodes": [ { - "value": "Key: 66", "type": "text", "details": { "prop_align": "L", @@ -2835,7 +4176,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 66", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2844,7 +4196,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 66", "type": "text", "details": { "prop_align": "L", @@ -2852,7 +4203,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 66", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2867,7 +4229,6 @@ "type": "col", "nodes": [ { - "value": "Key: 67", "type": "text", "details": { "prop_align": "L", @@ -2875,7 +4236,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 67", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2884,7 +4256,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 67", "type": "text", "details": { "prop_align": "L", @@ -2892,7 +4263,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 67", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2910,7 +4292,6 @@ "type": "col", "nodes": [ { - "value": "Key: 68", "type": "text", "details": { "prop_align": "L", @@ -2918,7 +4299,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 68", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2927,7 +4319,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 68", "type": "text", "details": { "prop_align": "L", @@ -2935,7 +4326,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 68", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2950,7 +4352,6 @@ "type": "col", "nodes": [ { - "value": "Key: 69", "type": "text", "details": { "prop_align": "L", @@ -2958,7 +4359,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 69", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -2967,7 +4379,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 69", "type": "text", "details": { "prop_align": "L", @@ -2975,7 +4386,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 69", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2993,7 +4415,6 @@ "type": "col", "nodes": [ { - "value": "Key: 70", "type": "text", "details": { "prop_align": "L", @@ -3001,7 +4422,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 70", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3010,7 +4442,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 70", "type": "text", "details": { "prop_align": "L", @@ -3018,7 +4449,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 70", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3033,7 +4475,6 @@ "type": "col", "nodes": [ { - "value": "Key: 71", "type": "text", "details": { "prop_align": "L", @@ -3041,7 +4482,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 71", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3050,7 +4502,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 71", "type": "text", "details": { "prop_align": "L", @@ -3058,7 +4509,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 71", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3076,7 +4538,6 @@ "type": "col", "nodes": [ { - "value": "Key: 72", "type": "text", "details": { "prop_align": "L", @@ -3084,7 +4545,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 72", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3093,7 +4565,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 72", "type": "text", "details": { "prop_align": "L", @@ -3101,7 +4572,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 72", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3116,7 +4598,6 @@ "type": "col", "nodes": [ { - "value": "Key: 73", "type": "text", "details": { "prop_align": "L", @@ -3124,7 +4605,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 73", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3133,7 +4625,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 73", "type": "text", "details": { "prop_align": "L", @@ -3141,7 +4632,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 73", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3159,7 +4661,6 @@ "type": "col", "nodes": [ { - "value": "Key: 74", "type": "text", "details": { "prop_align": "L", @@ -3167,7 +4668,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 74", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3176,7 +4688,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 74", "type": "text", "details": { "prop_align": "L", @@ -3184,7 +4695,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 74", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3199,7 +4721,6 @@ "type": "col", "nodes": [ { - "value": "Key: 75", "type": "text", "details": { "prop_align": "L", @@ -3207,7 +4728,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 75", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3216,7 +4748,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 75", "type": "text", "details": { "prop_align": "L", @@ -3224,7 +4755,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 75", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3242,7 +4784,6 @@ "type": "col", "nodes": [ { - "value": "Key: 76", "type": "text", "details": { "prop_align": "L", @@ -3250,7 +4791,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 76", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3259,7 +4811,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 76", "type": "text", "details": { "prop_align": "L", @@ -3267,7 +4818,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 76", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3282,7 +4844,6 @@ "type": "col", "nodes": [ { - "value": "Key: 77", "type": "text", "details": { "prop_align": "L", @@ -3290,7 +4851,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 77", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3299,7 +4871,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 77", "type": "text", "details": { "prop_align": "L", @@ -3307,7 +4878,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 77", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3325,7 +4907,6 @@ "type": "col", "nodes": [ { - "value": "Key: 78", "type": "text", "details": { "prop_align": "L", @@ -3333,7 +4914,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 78", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3342,7 +4934,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 78", "type": "text", "details": { "prop_align": "L", @@ -3350,7 +4941,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 78", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3365,7 +4967,6 @@ "type": "col", "nodes": [ { - "value": "Key: 79", "type": "text", "details": { "prop_align": "L", @@ -3373,7 +4974,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 79", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3382,7 +4994,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 79", "type": "text", "details": { "prop_align": "L", @@ -3390,7 +5001,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 79", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3408,7 +5030,6 @@ "type": "col", "nodes": [ { - "value": "Key: 80", "type": "text", "details": { "prop_align": "L", @@ -3416,7 +5037,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 80", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3425,7 +5057,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 80", "type": "text", "details": { "prop_align": "L", @@ -3433,7 +5064,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 80", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3448,7 +5090,6 @@ "type": "col", "nodes": [ { - "value": "Key: 81", "type": "text", "details": { "prop_align": "L", @@ -3456,7 +5097,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 81", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3465,7 +5117,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 81", "type": "text", "details": { "prop_align": "L", @@ -3473,7 +5124,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 81", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3491,7 +5153,6 @@ "type": "col", "nodes": [ { - "value": "Key: 82", "type": "text", "details": { "prop_align": "L", @@ -3499,7 +5160,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 82", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3508,7 +5180,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 82", "type": "text", "details": { "prop_align": "L", @@ -3516,7 +5187,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 82", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3531,7 +5213,6 @@ "type": "col", "nodes": [ { - "value": "Key: 83", "type": "text", "details": { "prop_align": "L", @@ -3539,7 +5220,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 83", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3548,7 +5240,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 83", "type": "text", "details": { "prop_align": "L", @@ -3556,7 +5247,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 83", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3574,7 +5276,6 @@ "type": "col", "nodes": [ { - "value": "Key: 84", "type": "text", "details": { "prop_align": "L", @@ -3582,7 +5283,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 84", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3591,7 +5303,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 84", "type": "text", "details": { "prop_align": "L", @@ -3599,7 +5310,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 84", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3614,7 +5336,6 @@ "type": "col", "nodes": [ { - "value": "Key: 85", "type": "text", "details": { "prop_align": "L", @@ -3622,7 +5343,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 85", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3631,7 +5363,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 85", "type": "text", "details": { "prop_align": "L", @@ -3639,7 +5370,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 85", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3657,7 +5399,6 @@ "type": "col", "nodes": [ { - "value": "Key: 86", "type": "text", "details": { "prop_align": "L", @@ -3665,7 +5406,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 86", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3674,7 +5426,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 86", "type": "text", "details": { "prop_align": "L", @@ -3682,7 +5433,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 86", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3697,7 +5459,6 @@ "type": "col", "nodes": [ { - "value": "Key: 87", "type": "text", "details": { "prop_align": "L", @@ -3705,7 +5466,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 87", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3714,7 +5486,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 87", "type": "text", "details": { "prop_align": "L", @@ -3722,7 +5493,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 87", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3740,7 +5522,6 @@ "type": "col", "nodes": [ { - "value": "Key: 88", "type": "text", "details": { "prop_align": "L", @@ -3748,7 +5529,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 88", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3757,7 +5549,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 88", "type": "text", "details": { "prop_align": "L", @@ -3765,7 +5556,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 88", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3780,7 +5582,6 @@ "type": "col", "nodes": [ { - "value": "Key: 89", "type": "text", "details": { "prop_align": "L", @@ -3788,7 +5589,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 89", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3797,7 +5609,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 89", "type": "text", "details": { "prop_align": "L", @@ -3805,7 +5616,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 89", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3823,7 +5645,6 @@ "type": "col", "nodes": [ { - "value": "Key: 90", "type": "text", "details": { "prop_align": "L", @@ -3831,7 +5652,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 90", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3840,7 +5672,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 90", "type": "text", "details": { "prop_align": "L", @@ -3848,7 +5679,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 90", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3863,7 +5705,6 @@ "type": "col", "nodes": [ { - "value": "Key: 91", "type": "text", "details": { "prop_align": "L", @@ -3871,7 +5712,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 91", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3880,7 +5732,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 91", "type": "text", "details": { "prop_align": "L", @@ -3888,7 +5739,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 91", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3906,7 +5768,6 @@ "type": "col", "nodes": [ { - "value": "Key: 92", "type": "text", "details": { "prop_align": "L", @@ -3914,7 +5775,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 92", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3923,7 +5795,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 92", "type": "text", "details": { "prop_align": "L", @@ -3931,7 +5802,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 92", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3946,7 +5828,6 @@ "type": "col", "nodes": [ { - "value": "Key: 93", "type": "text", "details": { "prop_align": "L", @@ -3954,7 +5835,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 93", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -3963,7 +5855,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 93", "type": "text", "details": { "prop_align": "L", @@ -3971,7 +5862,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 93", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3989,7 +5891,6 @@ "type": "col", "nodes": [ { - "value": "Key: 94", "type": "text", "details": { "prop_align": "L", @@ -3997,7 +5898,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 94", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -4006,7 +5918,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 94", "type": "text", "details": { "prop_align": "L", @@ -4014,7 +5925,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 94", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -4029,7 +5951,6 @@ "type": "col", "nodes": [ { - "value": "Key: 95", "type": "text", "details": { "prop_align": "L", @@ -4037,7 +5958,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 95", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -4046,7 +5978,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 95", "type": "text", "details": { "prop_align": "L", @@ -4054,7 +5985,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 95", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -4072,7 +6014,6 @@ "type": "col", "nodes": [ { - "value": "Key: 96", "type": "text", "details": { "prop_align": "L", @@ -4080,7 +6021,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 96", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -4089,7 +6041,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 96", "type": "text", "details": { "prop_align": "L", @@ -4097,7 +6048,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 96", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -4112,7 +6074,6 @@ "type": "col", "nodes": [ { - "value": "Key: 97", "type": "text", "details": { "prop_align": "L", @@ -4120,7 +6081,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 97", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -4129,7 +6101,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 97", "type": "text", "details": { "prop_align": "L", @@ -4137,7 +6108,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 97", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -4155,7 +6137,6 @@ "type": "col", "nodes": [ { - "value": "Key: 98", "type": "text", "details": { "prop_align": "L", @@ -4163,7 +6144,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 98", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -4172,7 +6164,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 98", "type": "text", "details": { "prop_align": "L", @@ -4180,7 +6171,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 98", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -4195,7 +6197,6 @@ "type": "col", "nodes": [ { - "value": "Key: 99", "type": "text", "details": { "prop_align": "L", @@ -4203,7 +6204,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Key: 99", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -4212,7 +6224,6 @@ "type": "col", "nodes": [ { - "value": "Bytes: 99", "type": "text", "details": { "prop_align": "L", @@ -4220,7 +6231,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Bytes: 99", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } diff --git a/test/maroto/examples/lowmemory.json b/test/maroto/examples/lowmemory.json index 66e77eb7..3df41aa1 100755 --- a/test/maroto/examples/lowmemory.json +++ b/test/maroto/examples/lowmemory.json @@ -37,7 +37,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -45,7 +44,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -63,7 +73,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -71,7 +80,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -89,7 +109,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -97,7 +116,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -115,7 +145,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -123,7 +152,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -141,7 +181,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -149,7 +188,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -167,7 +217,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -175,7 +224,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -193,7 +253,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -201,7 +260,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -219,7 +289,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -227,7 +296,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -245,7 +325,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -253,7 +332,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -271,7 +361,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -279,7 +368,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -297,7 +397,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -305,7 +404,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -323,7 +433,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -331,7 +440,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -349,7 +469,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -357,7 +476,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -375,7 +505,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -383,7 +512,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -401,7 +541,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -409,7 +548,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -427,7 +577,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -435,7 +584,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -453,7 +613,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -461,7 +620,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -479,7 +649,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -487,7 +656,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -505,7 +685,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -513,7 +692,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -531,7 +721,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -539,7 +728,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -557,7 +757,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -565,7 +764,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -583,7 +793,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -591,7 +800,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -609,7 +829,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -617,7 +836,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -635,7 +865,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -643,7 +872,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -661,7 +901,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -669,7 +908,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -687,7 +937,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -695,7 +944,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -728,7 +988,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -736,7 +995,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -754,7 +1024,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -762,7 +1031,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -780,7 +1060,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -788,7 +1067,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -806,7 +1096,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -814,7 +1103,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -832,7 +1132,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -840,7 +1139,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -858,7 +1168,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -866,7 +1175,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -884,7 +1204,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -892,7 +1211,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -910,7 +1240,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -918,7 +1247,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -936,7 +1276,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -944,7 +1283,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -962,7 +1312,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -970,7 +1319,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -988,7 +1348,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -996,7 +1355,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1014,7 +1384,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1022,7 +1391,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1040,7 +1420,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1048,7 +1427,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1066,7 +1456,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1074,7 +1463,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1092,7 +1492,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1100,7 +1499,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1118,7 +1528,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1126,7 +1535,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1144,7 +1564,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1152,7 +1571,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1170,7 +1600,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1178,7 +1607,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1196,7 +1636,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1204,7 +1643,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1222,7 +1672,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1230,7 +1679,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1248,7 +1708,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1256,7 +1715,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1274,7 +1744,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1282,7 +1751,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1300,7 +1780,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1308,7 +1787,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1326,7 +1816,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1334,7 +1823,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } diff --git a/test/maroto/examples/margins.json b/test/maroto/examples/margins.json index 6aa5812d..256391f6 100755 --- a/test/maroto/examples/margins.json +++ b/test/maroto/examples/margins.json @@ -43,7 +43,6 @@ "type": "col", "nodes": [ { - "value": "Margins Test", "type": "text", "details": { "prop_align": "L", @@ -52,7 +51,18 @@ "prop_font_family": "arial", "prop_font_size": 12, "prop_top": 12 - } + }, + "nodes": [ + { + "value": "Margins Test", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12 + } + } + ] } ] }, @@ -74,7 +84,6 @@ }, "nodes": [ { - "value": "any text", "type": "text", "details": { "prop_align": "L", @@ -82,7 +91,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "any text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -100,7 +120,6 @@ }, "nodes": [ { - "value": "any text", "type": "text", "details": { "prop_align": "L", @@ -108,7 +127,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "any text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -126,7 +156,6 @@ }, "nodes": [ { - "value": "any text", "type": "text", "details": { "prop_align": "L", @@ -134,7 +163,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "any text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -152,7 +192,6 @@ }, "nodes": [ { - "value": "any text", "type": "text", "details": { "prop_align": "L", @@ -160,7 +199,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "any text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -178,7 +228,6 @@ }, "nodes": [ { - "value": "any text", "type": "text", "details": { "prop_align": "L", @@ -186,7 +235,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "any text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -204,7 +264,6 @@ }, "nodes": [ { - "value": "any text", "type": "text", "details": { "prop_align": "L", @@ -212,7 +271,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "any text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -230,7 +300,6 @@ }, "nodes": [ { - "value": "any text", "type": "text", "details": { "prop_align": "L", @@ -238,7 +307,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "any text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -282,7 +362,6 @@ "type": "col", "nodes": [ { - "value": "Margins Test", "type": "text", "details": { "prop_align": "L", @@ -291,7 +370,18 @@ "prop_font_family": "arial", "prop_font_size": 12, "prop_top": 12 - } + }, + "nodes": [ + { + "value": "Margins Test", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 12 + } + } + ] } ] }, @@ -313,7 +403,6 @@ }, "nodes": [ { - "value": "any text", "type": "text", "details": { "prop_align": "L", @@ -321,7 +410,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "any text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -339,7 +439,6 @@ }, "nodes": [ { - "value": "any text", "type": "text", "details": { "prop_align": "L", @@ -347,7 +446,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "any text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -365,7 +475,6 @@ }, "nodes": [ { - "value": "any text", "type": "text", "details": { "prop_align": "L", @@ -373,7 +482,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "any text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } diff --git a/test/maroto/examples/maxgridsum.json b/test/maroto/examples/maxgridsum.json index 3d6326d3..81e78d64 100755 --- a/test/maroto/examples/maxgridsum.json +++ b/test/maroto/examples/maxgridsum.json @@ -32,7 +32,6 @@ }, "nodes": [ { - "value": "Table with 14 Columns", "type": "text", "details": { "prop_align": "L", @@ -41,7 +40,19 @@ "prop_font_family": "arial", "prop_font_size": 10, "prop_font_style": "B" - } + }, + "nodes": [ + { + "value": "Table with 14 Columns", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_font_style": "B" + } + } + ] } ] } @@ -56,7 +67,6 @@ "type": "col", "nodes": [ { - "value": "H 0", "type": "text", "details": { "prop_align": "L", @@ -67,7 +77,19 @@ "prop_font_style": "B", "prop_left": 1.5, "prop_top": 1.5 - } + }, + "nodes": [ + { + "value": "H 0", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_font_style": "B" + } + } + ] } ] }, @@ -76,7 +98,6 @@ "type": "col", "nodes": [ { - "value": "H 1", "type": "text", "details": { "prop_align": "L", @@ -87,7 +108,19 @@ "prop_font_style": "B", "prop_left": 1.5, "prop_top": 1.5 - } + }, + "nodes": [ + { + "value": "H 1", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_font_style": "B" + } + } + ] } ] }, @@ -96,7 +129,6 @@ "type": "col", "nodes": [ { - "value": "H 2", "type": "text", "details": { "prop_align": "L", @@ -107,7 +139,19 @@ "prop_font_style": "B", "prop_left": 1.5, "prop_top": 1.5 - } + }, + "nodes": [ + { + "value": "H 2", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_font_style": "B" + } + } + ] } ] }, @@ -116,7 +160,6 @@ "type": "col", "nodes": [ { - "value": "H 3", "type": "text", "details": { "prop_align": "L", @@ -127,7 +170,19 @@ "prop_font_style": "B", "prop_left": 1.5, "prop_top": 1.5 - } + }, + "nodes": [ + { + "value": "H 3", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_font_style": "B" + } + } + ] } ] }, @@ -136,7 +191,6 @@ "type": "col", "nodes": [ { - "value": "H 4", "type": "text", "details": { "prop_align": "L", @@ -147,7 +201,19 @@ "prop_font_style": "B", "prop_left": 1.5, "prop_top": 1.5 - } + }, + "nodes": [ + { + "value": "H 4", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_font_style": "B" + } + } + ] } ] }, @@ -156,7 +222,6 @@ "type": "col", "nodes": [ { - "value": "H 5", "type": "text", "details": { "prop_align": "L", @@ -167,7 +232,19 @@ "prop_font_style": "B", "prop_left": 1.5, "prop_top": 1.5 - } + }, + "nodes": [ + { + "value": "H 5", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_font_style": "B" + } + } + ] } ] }, @@ -176,7 +253,6 @@ "type": "col", "nodes": [ { - "value": "H 6", "type": "text", "details": { "prop_align": "L", @@ -187,7 +263,19 @@ "prop_font_style": "B", "prop_left": 1.5, "prop_top": 1.5 - } + }, + "nodes": [ + { + "value": "H 6", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_font_style": "B" + } + } + ] } ] }, @@ -196,7 +284,6 @@ "type": "col", "nodes": [ { - "value": "H 7", "type": "text", "details": { "prop_align": "L", @@ -207,7 +294,19 @@ "prop_font_style": "B", "prop_left": 1.5, "prop_top": 1.5 - } + }, + "nodes": [ + { + "value": "H 7", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_font_style": "B" + } + } + ] } ] }, @@ -216,7 +315,6 @@ "type": "col", "nodes": [ { - "value": "H 8", "type": "text", "details": { "prop_align": "L", @@ -227,7 +325,19 @@ "prop_font_style": "B", "prop_left": 1.5, "prop_top": 1.5 - } + }, + "nodes": [ + { + "value": "H 8", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_font_style": "B" + } + } + ] } ] }, @@ -236,7 +346,6 @@ "type": "col", "nodes": [ { - "value": "H 9", "type": "text", "details": { "prop_align": "L", @@ -247,7 +356,19 @@ "prop_font_style": "B", "prop_left": 1.5, "prop_top": 1.5 - } + }, + "nodes": [ + { + "value": "H 9", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_font_style": "B" + } + } + ] } ] }, @@ -256,7 +377,6 @@ "type": "col", "nodes": [ { - "value": "H 10", "type": "text", "details": { "prop_align": "L", @@ -267,7 +387,19 @@ "prop_font_style": "B", "prop_left": 1.5, "prop_top": 1.5 - } + }, + "nodes": [ + { + "value": "H 10", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_font_style": "B" + } + } + ] } ] }, @@ -276,7 +408,6 @@ "type": "col", "nodes": [ { - "value": "H 11", "type": "text", "details": { "prop_align": "L", @@ -287,7 +418,19 @@ "prop_font_style": "B", "prop_left": 1.5, "prop_top": 1.5 - } + }, + "nodes": [ + { + "value": "H 11", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_font_style": "B" + } + } + ] } ] }, @@ -296,7 +439,6 @@ "type": "col", "nodes": [ { - "value": "H 12", "type": "text", "details": { "prop_align": "L", @@ -307,7 +449,19 @@ "prop_font_style": "B", "prop_left": 1.5, "prop_top": 1.5 - } + }, + "nodes": [ + { + "value": "H 12", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_font_style": "B" + } + } + ] } ] }, @@ -316,7 +470,6 @@ "type": "col", "nodes": [ { - "value": "H 13", "type": "text", "details": { "prop_align": "L", @@ -327,7 +480,19 @@ "prop_font_style": "B", "prop_left": 1.5, "prop_top": 1.5 - } + }, + "nodes": [ + { + "value": "H 13", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_font_style": "B" + } + } + ] } ] } @@ -342,7 +507,6 @@ "type": "col", "nodes": [ { - "value": "C 0", "type": "text", "details": { "prop_align": "L", @@ -352,7 +516,18 @@ "prop_font_size": 9, "prop_left": 1.5, "prop_top": 1 - } + }, + "nodes": [ + { + "value": "C 0", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 9 + } + } + ] } ] }, @@ -361,7 +536,6 @@ "type": "col", "nodes": [ { - "value": "C 1", "type": "text", "details": { "prop_align": "L", @@ -371,7 +545,18 @@ "prop_font_size": 9, "prop_left": 1.5, "prop_top": 1 - } + }, + "nodes": [ + { + "value": "C 1", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 9 + } + } + ] } ] }, @@ -380,7 +565,6 @@ "type": "col", "nodes": [ { - "value": "C 2", "type": "text", "details": { "prop_align": "L", @@ -390,7 +574,18 @@ "prop_font_size": 9, "prop_left": 1.5, "prop_top": 1 - } + }, + "nodes": [ + { + "value": "C 2", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 9 + } + } + ] } ] }, @@ -399,7 +594,6 @@ "type": "col", "nodes": [ { - "value": "C 3", "type": "text", "details": { "prop_align": "L", @@ -409,7 +603,18 @@ "prop_font_size": 9, "prop_left": 1.5, "prop_top": 1 - } + }, + "nodes": [ + { + "value": "C 3", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 9 + } + } + ] } ] }, @@ -418,7 +623,6 @@ "type": "col", "nodes": [ { - "value": "C 4", "type": "text", "details": { "prop_align": "L", @@ -428,7 +632,18 @@ "prop_font_size": 9, "prop_left": 1.5, "prop_top": 1 - } + }, + "nodes": [ + { + "value": "C 4", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 9 + } + } + ] } ] }, @@ -437,7 +652,6 @@ "type": "col", "nodes": [ { - "value": "C 5", "type": "text", "details": { "prop_align": "L", @@ -447,7 +661,18 @@ "prop_font_size": 9, "prop_left": 1.5, "prop_top": 1 - } + }, + "nodes": [ + { + "value": "C 5", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 9 + } + } + ] } ] }, @@ -456,7 +681,6 @@ "type": "col", "nodes": [ { - "value": "C 6", "type": "text", "details": { "prop_align": "L", @@ -466,7 +690,18 @@ "prop_font_size": 9, "prop_left": 1.5, "prop_top": 1 - } + }, + "nodes": [ + { + "value": "C 6", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 9 + } + } + ] } ] }, @@ -475,7 +710,6 @@ "type": "col", "nodes": [ { - "value": "C 7", "type": "text", "details": { "prop_align": "L", @@ -485,7 +719,18 @@ "prop_font_size": 9, "prop_left": 1.5, "prop_top": 1 - } + }, + "nodes": [ + { + "value": "C 7", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 9 + } + } + ] } ] }, @@ -494,7 +739,6 @@ "type": "col", "nodes": [ { - "value": "C 8", "type": "text", "details": { "prop_align": "L", @@ -504,7 +748,18 @@ "prop_font_size": 9, "prop_left": 1.5, "prop_top": 1 - } + }, + "nodes": [ + { + "value": "C 8", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 9 + } + } + ] } ] }, @@ -513,7 +768,6 @@ "type": "col", "nodes": [ { - "value": "C 9", "type": "text", "details": { "prop_align": "L", @@ -523,7 +777,18 @@ "prop_font_size": 9, "prop_left": 1.5, "prop_top": 1 - } + }, + "nodes": [ + { + "value": "C 9", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 9 + } + } + ] } ] }, @@ -532,7 +797,6 @@ "type": "col", "nodes": [ { - "value": "C 10", "type": "text", "details": { "prop_align": "L", @@ -542,7 +806,18 @@ "prop_font_size": 9, "prop_left": 1.5, "prop_top": 1 - } + }, + "nodes": [ + { + "value": "C 10", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 9 + } + } + ] } ] }, @@ -551,7 +826,6 @@ "type": "col", "nodes": [ { - "value": "C 11", "type": "text", "details": { "prop_align": "L", @@ -561,7 +835,18 @@ "prop_font_size": 9, "prop_left": 1.5, "prop_top": 1 - } + }, + "nodes": [ + { + "value": "C 11", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 9 + } + } + ] } ] }, @@ -570,7 +855,6 @@ "type": "col", "nodes": [ { - "value": "C 12", "type": "text", "details": { "prop_align": "L", @@ -580,7 +864,18 @@ "prop_font_size": 9, "prop_left": 1.5, "prop_top": 1 - } + }, + "nodes": [ + { + "value": "C 12", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 9 + } + } + ] } ] }, @@ -589,7 +884,6 @@ "type": "col", "nodes": [ { - "value": "C 13", "type": "text", "details": { "prop_align": "L", @@ -599,7 +893,18 @@ "prop_font_size": 9, "prop_left": 1.5, "prop_top": 1 - } + }, + "nodes": [ + { + "value": "C 13", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 9 + } + } + ] } ] } diff --git a/test/maroto/examples/mergepdf.json b/test/maroto/examples/mergepdf.json index 9839930a..e88f0193 100755 --- a/test/maroto/examples/mergepdf.json +++ b/test/maroto/examples/mergepdf.json @@ -36,7 +36,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -44,7 +43,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -62,7 +72,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -70,7 +79,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -88,7 +108,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -96,7 +115,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -114,7 +144,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -122,7 +151,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -140,7 +180,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -148,7 +187,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -166,7 +216,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -174,7 +223,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -192,7 +252,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -200,7 +259,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -218,7 +288,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -226,7 +295,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -244,7 +324,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -252,7 +331,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -270,7 +360,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -278,7 +367,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -296,7 +396,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -304,7 +403,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -322,7 +432,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -330,7 +439,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -348,7 +468,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -356,7 +475,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -389,7 +519,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -397,7 +526,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -415,7 +555,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -423,7 +562,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -441,7 +591,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -449,7 +598,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -467,7 +627,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -475,7 +634,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -493,7 +663,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -501,7 +670,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -519,7 +699,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -527,7 +706,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -545,7 +735,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -553,7 +742,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -571,7 +771,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -579,7 +778,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -597,7 +807,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -605,7 +814,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -623,7 +843,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -631,7 +850,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -649,7 +879,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -657,7 +886,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -675,7 +915,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -683,7 +922,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -701,7 +951,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -709,7 +958,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -742,7 +1002,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -750,7 +1009,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -768,7 +1038,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -776,7 +1045,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -794,7 +1074,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -802,7 +1081,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -820,7 +1110,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -828,7 +1117,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -846,7 +1146,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -854,7 +1153,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -872,7 +1182,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -880,7 +1189,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -898,7 +1218,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -906,7 +1225,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -924,7 +1254,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -932,7 +1261,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -950,7 +1290,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -958,7 +1297,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -976,7 +1326,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -984,7 +1333,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1002,7 +1362,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -1010,7 +1369,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1028,7 +1398,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -1036,7 +1405,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1054,7 +1434,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -1062,7 +1441,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1095,7 +1485,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -1103,7 +1492,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1121,7 +1521,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -1129,7 +1528,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1147,7 +1557,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -1155,7 +1564,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1173,7 +1593,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -1181,7 +1600,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1199,7 +1629,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -1207,7 +1636,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1225,7 +1665,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -1233,7 +1672,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1251,7 +1701,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -1259,7 +1708,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1277,7 +1737,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -1285,7 +1744,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1303,7 +1773,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -1311,7 +1780,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1329,7 +1809,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -1337,7 +1816,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1355,7 +1845,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -1363,7 +1852,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } diff --git a/test/maroto/examples/metadatas.json b/test/maroto/examples/metadatas.json index 3bbef7b1..d1203773 100755 --- a/test/maroto/examples/metadatas.json +++ b/test/maroto/examples/metadatas.json @@ -37,7 +37,6 @@ }, "nodes": [ { - "value": "metadatas", "type": "text", "details": { "prop_align": "L", @@ -45,7 +44,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "metadatas", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } diff --git a/test/maroto/examples/orientation.json b/test/maroto/examples/orientation.json index bfe3b012..89a0b838 100755 --- a/test/maroto/examples/orientation.json +++ b/test/maroto/examples/orientation.json @@ -32,7 +32,6 @@ }, "nodes": [ { - "value": "content", "type": "text", "details": { "prop_align": "L", @@ -40,7 +39,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } diff --git a/test/maroto/examples/pagenumber.json b/test/maroto/examples/pagenumber.json index 80ee6d87..93c029a2 100755 --- a/test/maroto/examples/pagenumber.json +++ b/test/maroto/examples/pagenumber.json @@ -38,7 +38,6 @@ }, "nodes": [ { - "value": "dummy text", "type": "text", "details": { "prop_align": "L", @@ -46,7 +45,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -64,7 +74,6 @@ }, "nodes": [ { - "value": "dummy text", "type": "text", "details": { "prop_align": "L", @@ -72,7 +81,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -90,7 +110,6 @@ }, "nodes": [ { - "value": "dummy text", "type": "text", "details": { "prop_align": "L", @@ -98,7 +117,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -116,7 +146,6 @@ }, "nodes": [ { - "value": "dummy text", "type": "text", "details": { "prop_align": "L", @@ -124,7 +153,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -142,7 +182,6 @@ }, "nodes": [ { - "value": "dummy text", "type": "text", "details": { "prop_align": "L", @@ -150,7 +189,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -168,7 +218,6 @@ }, "nodes": [ { - "value": "dummy text", "type": "text", "details": { "prop_align": "L", @@ -176,7 +225,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -194,7 +254,6 @@ }, "nodes": [ { - "value": "dummy text", "type": "text", "details": { "prop_align": "L", @@ -202,7 +261,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -220,7 +290,6 @@ }, "nodes": [ { - "value": "dummy text", "type": "text", "details": { "prop_align": "L", @@ -228,7 +297,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -246,7 +326,6 @@ }, "nodes": [ { - "value": "dummy text", "type": "text", "details": { "prop_align": "L", @@ -254,7 +333,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -272,7 +362,6 @@ }, "nodes": [ { - "value": "dummy text", "type": "text", "details": { "prop_align": "L", @@ -280,7 +369,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -298,7 +398,6 @@ }, "nodes": [ { - "value": "dummy text", "type": "text", "details": { "prop_align": "L", @@ -306,7 +405,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -324,7 +434,6 @@ }, "nodes": [ { - "value": "dummy text", "type": "text", "details": { "prop_align": "L", @@ -332,7 +441,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -350,7 +470,6 @@ }, "nodes": [ { - "value": "dummy text", "type": "text", "details": { "prop_align": "L", @@ -358,7 +477,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -391,7 +521,6 @@ }, "nodes": [ { - "value": "dummy text", "type": "text", "details": { "prop_align": "L", @@ -399,7 +528,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -417,7 +557,6 @@ }, "nodes": [ { - "value": "dummy text", "type": "text", "details": { "prop_align": "L", @@ -425,7 +564,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } diff --git a/test/maroto/examples/parallelism.json b/test/maroto/examples/parallelism.json index 907880bf..e92f68f8 100755 --- a/test/maroto/examples/parallelism.json +++ b/test/maroto/examples/parallelism.json @@ -37,7 +37,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -45,7 +44,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -63,7 +73,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -71,7 +80,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -89,7 +109,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -97,7 +116,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -115,7 +145,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -123,7 +152,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -141,7 +181,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -149,7 +188,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -167,7 +217,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -175,7 +224,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -193,7 +253,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -201,7 +260,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -219,7 +289,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -227,7 +296,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -245,7 +325,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -253,7 +332,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -271,7 +361,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -279,7 +368,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -297,7 +397,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -305,7 +404,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -323,7 +433,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -331,7 +440,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -349,7 +469,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -357,7 +476,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -375,7 +505,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -383,7 +512,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -401,7 +541,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -409,7 +548,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -427,7 +577,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -435,7 +584,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -453,7 +613,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -461,7 +620,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -479,7 +649,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -487,7 +656,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -505,7 +685,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -513,7 +692,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -531,7 +721,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -539,7 +728,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -557,7 +757,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -565,7 +764,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -583,7 +793,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -591,7 +800,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -609,7 +829,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -617,7 +836,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -635,7 +865,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -643,7 +872,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -661,7 +901,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -669,7 +908,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -687,7 +937,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -695,7 +944,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -728,7 +988,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -736,7 +995,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -754,7 +1024,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -762,7 +1031,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -780,7 +1060,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -788,7 +1067,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -806,7 +1096,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -814,7 +1103,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -832,7 +1132,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -840,7 +1139,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -858,7 +1168,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -866,7 +1175,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -884,7 +1204,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -892,7 +1211,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -910,7 +1240,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -918,7 +1247,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -936,7 +1276,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -944,7 +1283,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -962,7 +1312,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -970,7 +1319,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -988,7 +1348,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -996,7 +1355,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1014,7 +1384,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1022,7 +1391,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1040,7 +1420,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1048,7 +1427,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1066,7 +1456,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1074,7 +1463,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1092,7 +1492,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1100,7 +1499,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1118,7 +1528,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1126,7 +1535,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1144,7 +1564,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1152,7 +1571,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1170,7 +1600,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1178,7 +1607,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1196,7 +1636,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1204,7 +1643,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1222,7 +1672,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1230,7 +1679,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1248,7 +1708,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1256,7 +1715,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1274,7 +1744,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1282,7 +1751,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1300,7 +1780,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1308,7 +1787,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } @@ -1326,7 +1816,6 @@ }, "nodes": [ { - "value": "Dummy text", "type": "text", "details": { "prop_align": "L", @@ -1334,7 +1823,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 8 - } + }, + "nodes": [ + { + "value": "Dummy text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 8 + } + } + ] } ] } diff --git a/test/maroto/examples/protection.json b/test/maroto/examples/protection.json index 3d393550..0762b0e7 100755 --- a/test/maroto/examples/protection.json +++ b/test/maroto/examples/protection.json @@ -33,7 +33,6 @@ }, "nodes": [ { - "value": "supersecret content", "type": "text", "details": { "prop_align": "L", @@ -41,7 +40,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "supersecret content", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } diff --git a/test/maroto/examples/simplest.json b/test/maroto/examples/simplest.json index 8a874e14..041b0cd8 100755 --- a/test/maroto/examples/simplest.json +++ b/test/maroto/examples/simplest.json @@ -115,7 +115,6 @@ "type": "col", "nodes": [ { - "value": "text", "type": "text", "details": { "prop_align": "L", @@ -123,7 +122,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } diff --git a/test/maroto/examples/textgrid.json b/test/maroto/examples/textgrid.json index 9ccc4423..29bdc66a 100755 --- a/test/maroto/examples/textgrid.json +++ b/test/maroto/examples/textgrid.json @@ -29,7 +29,6 @@ "type": "col", "nodes": [ { - "value": "Red text", "type": "text", "details": { "prop_align": "L", @@ -37,7 +36,18 @@ "prop_color": "RGB(255, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Red text", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -46,7 +56,6 @@ "type": "col", "nodes": [ { - "value": "Green text", "type": "text", "details": { "prop_align": "L", @@ -54,7 +63,18 @@ "prop_color": "RGB(0, 255, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Green text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 255, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -63,7 +83,6 @@ "type": "col", "nodes": [ { - "value": "Blue text", "type": "text", "details": { "prop_align": "L", @@ -71,7 +90,18 @@ "prop_color": "RGB(0, 0, 255)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Blue text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 255)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -86,7 +116,6 @@ "type": "col", "nodes": [ { - "value": "Left-aligned text", "type": "text", "details": { "prop_align": "L", @@ -94,7 +123,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Left-aligned text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -103,7 +143,6 @@ "type": "col", "nodes": [ { - "value": "Centered text", "type": "text", "details": { "prop_align": "C", @@ -111,7 +150,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Centered text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -120,7 +170,6 @@ "type": "col", "nodes": [ { - "value": "Right-aligned text", "type": "text", "details": { "prop_align": "R", @@ -129,7 +178,19 @@ "prop_font_family": "arial", "prop_font_size": 10, "prop_font_style": "S" - } + }, + "nodes": [ + { + "value": "Right-aligned text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_font_style": "S" + } + } + ] } ] } @@ -147,7 +208,6 @@ }, "nodes": [ { - "value": "Aligned unindented text", "type": "text", "details": { "prop_align": "L", @@ -155,7 +215,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Aligned unindented text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -170,7 +241,6 @@ "type": "col", "nodes": [ { - "value": "Left-aligned text", "type": "text", "details": { "prop_align": "L", @@ -180,7 +250,18 @@ "prop_font_size": 10, "prop_left": 3, "prop_top": 3 - } + }, + "nodes": [ + { + "value": "Left-aligned text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -189,7 +270,6 @@ "type": "col", "nodes": [ { - "value": "Centered text", "type": "text", "details": { "prop_align": "C", @@ -198,7 +278,18 @@ "prop_font_family": "arial", "prop_font_size": 10, "prop_top": 3 - } + }, + "nodes": [ + { + "value": "Centered text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -207,7 +298,6 @@ "type": "col", "nodes": [ { - "value": "Right-aligned text", "type": "text", "details": { "prop_align": "R", @@ -217,7 +307,18 @@ "prop_font_size": 10, "prop_right": 3, "prop_top": 3 - } + }, + "nodes": [ + { + "value": "Right-aligned text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -235,7 +336,6 @@ }, "nodes": [ { - "value": "Aligned text with indentation", "type": "text", "details": { "prop_align": "L", @@ -243,7 +343,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Aligned text with indentation", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -258,7 +369,6 @@ "type": "col", "nodes": [ { - "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", "type": "text", "details": { "prop_align": "L", @@ -266,7 +376,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -275,7 +396,6 @@ "type": "col", "nodes": [ { - "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", "type": "text", "details": { "prop_align": "C", @@ -283,7 +403,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -292,7 +423,6 @@ "type": "col", "nodes": [ { - "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", "type": "text", "details": { "prop_align": "R", @@ -300,7 +430,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -318,7 +459,6 @@ }, "nodes": [ { - "value": "Multiline text", "type": "text", "details": { "prop_align": "L", @@ -326,7 +466,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Multiline text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -341,7 +492,6 @@ "type": "col", "nodes": [ { - "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", "type": "text", "details": { "prop_align": "L", @@ -352,7 +502,18 @@ "prop_left": 3, "prop_right": 3, "prop_top": 3 - } + }, + "nodes": [ + { + "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -361,7 +522,6 @@ "type": "col", "nodes": [ { - "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", "type": "text", "details": { "prop_align": "C", @@ -372,7 +532,18 @@ "prop_left": 3, "prop_right": 3, "prop_top": 3 - } + }, + "nodes": [ + { + "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -381,7 +552,6 @@ "type": "col", "nodes": [ { - "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", "type": "text", "details": { "prop_align": "R", @@ -392,7 +562,18 @@ "prop_left": 3, "prop_right": 3, "prop_top": 3 - } + }, + "nodes": [ + { + "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -410,7 +591,6 @@ }, "nodes": [ { - "value": "Multiline text with indentation", "type": "text", "details": { "prop_align": "L", @@ -418,7 +598,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Multiline text with indentation", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -436,7 +627,6 @@ }, "nodes": [ { - "value": "text with hyperlink", "type": "text", "details": { "prop_align": "L", @@ -445,7 +635,19 @@ "prop_font_family": "arial", "prop_font_size": 10, "prop_hyperlink": "https://google.com" - } + }, + "nodes": [ + { + "value": "text with hyperlink", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_hyperlink": "https://google.com" + } + } + ] } ] } @@ -475,7 +677,6 @@ "type": "col", "nodes": [ { - "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", "type": "text", "details": { "prop_align": "J", @@ -486,7 +687,18 @@ "prop_left": 3, "prop_right": 3, "prop_top": 3 - } + }, + "nodes": [ + { + "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -495,7 +707,6 @@ "type": "col", "nodes": [ { - "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise. This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", "type": "text", "details": { "prop_align": "J", @@ -506,7 +717,18 @@ "prop_left": 3, "prop_right": 3, "prop_top": 10 - } + }, + "nodes": [ + { + "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise. This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -515,7 +737,6 @@ "type": "col", "nodes": [ { - "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise. This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", "type": "text", "details": { "prop_align": "J", @@ -527,7 +748,19 @@ "prop_left": 10, "prop_right": 10, "prop_top": 10 - } + }, + "nodes": [ + { + "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise. This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_hyperlink": "https://google.com" + } + } + ] } ] } @@ -545,7 +778,6 @@ }, "nodes": [ { - "value": "Justify-aligned text", "type": "text", "details": { "prop_align": "J", @@ -553,7 +785,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "Justify-aligned text", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -568,7 +811,6 @@ "type": "col", "nodes": [ { - "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", "type": "text", "details": { "prop_align": "J", @@ -578,7 +820,18 @@ "prop_font_size": 10, "prop_left": 3, "prop_right": 3 - } + }, + "nodes": [ + { + "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -587,7 +840,6 @@ "type": "col", "nodes": [ { - "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise. This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", "type": "text", "details": { "prop_align": "J", @@ -597,7 +849,18 @@ "prop_font_size": 10, "prop_left": 3, "prop_right": 3 - } + }, + "nodes": [ + { + "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise. This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }, @@ -606,7 +869,6 @@ "type": "col", "nodes": [ { - "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise. This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise. This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", "type": "text", "details": { "prop_align": "J", @@ -617,7 +879,19 @@ "prop_hyperlink": "https://google.com", "prop_left": 10, "prop_right": 10 - } + }, + "nodes": [ + { + "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise. This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise. This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_hyperlink": "https://google.com" + } + } + ] } ] } @@ -632,7 +906,6 @@ "type": "col", "nodes": [ { - "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise. This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise. This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", "type": "text", "details": { "prop_align": "J", @@ -642,14 +915,25 @@ "prop_font_size": 10, "prop_left": 3, "prop_right": 3 - } + }, + "nodes": [ + { + "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise. This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise. This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } ] }, { - "value": 30.583333333333336, + "value": 40.583333333333336, "type": "row", "nodes": [ { @@ -657,7 +941,6 @@ "type": "col", "nodes": [ { - "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise. This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise. This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", "type": "text", "details": { "prop_align": "J", @@ -668,14 +951,89 @@ "prop_left": 3, "prop_right": 3, "prop_vertical_padding": 10 - } + }, + "nodes": [ + { + "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise. This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise. This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } ] }, { - "value": 139.080833333, + "value": 45.51388888888889, + "type": "row", + "nodes": [ + { + "value": 12, + "type": "col", + "nodes": [ + { + "type": "text", + "details": { + "prop_align": "L", + "prop_bottom": 2, + "prop_breakline_strategy": "empty_space_strategy", + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10, + "prop_top": 2, + "prop_vertical_padding": 1 + }, + "nodes": [ + { + "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 255)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + }, + { + "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", + "type": "sub_text", + "details": { + "prop_color": "RGB(255, 0, 0)", + "prop_font_family": "courier", + "prop_font_size": 10 + } + }, + { + "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 255, 0)", + "prop_font_family": "zapfdingbats", + "prop_font_size": 15 + } + }, + { + "value": "This is a longer sentence that will be broken into multiple lines as it does not fit into the column otherwise.", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "helvetica", + "prop_font_size": 10, + "prop_font_style": "B" + } + } + ] + } + ] + } + ] + }, + { + "value": 83.566944444, "type": "row", "nodes": [ { diff --git a/test/maroto/footer_auto_row.json b/test/maroto/footer_auto_row.json index 7a3aee3d..3a436e07 100755 --- a/test/maroto/footer_auto_row.json +++ b/test/maroto/footer_auto_row.json @@ -61,7 +61,6 @@ }, "nodes": [ { - "value": "header", "type": "text", "details": { "prop_align": "L", @@ -69,7 +68,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "header", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -122,7 +132,6 @@ }, "nodes": [ { - "value": "header", "type": "text", "details": { "prop_align": "L", @@ -130,7 +139,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "header", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -173,7 +193,6 @@ }, "nodes": [ { - "value": "header", "type": "text", "details": { "prop_align": "L", @@ -181,7 +200,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "header", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } diff --git a/test/maroto/header_auto_row.json b/test/maroto/header_auto_row.json index 4315eee8..bca19cab 100755 --- a/test/maroto/header_auto_row.json +++ b/test/maroto/header_auto_row.json @@ -31,7 +31,6 @@ }, "nodes": [ { - "value": "header", "type": "text", "details": { "prop_align": "L", @@ -39,7 +38,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "header", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -92,7 +102,6 @@ }, "nodes": [ { - "value": "header", "type": "text", "details": { "prop_align": "L", @@ -100,7 +109,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "header", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -153,7 +173,6 @@ }, "nodes": [ { - "value": "header", "type": "text", "details": { "prop_align": "L", @@ -161,7 +180,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "header", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } diff --git a/test/maroto/maroto_add_auto_row_1.json b/test/maroto/maroto_add_auto_row_1.json index 47649178..ef62002d 100755 --- a/test/maroto/maroto_add_auto_row_1.json +++ b/test/maroto/maroto_add_auto_row_1.json @@ -28,7 +28,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -36,7 +35,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -51,7 +61,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -59,7 +68,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -74,7 +94,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -82,7 +101,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -97,7 +127,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -105,7 +134,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -120,7 +160,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -128,7 +167,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -143,7 +193,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -151,7 +200,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -166,7 +226,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -174,7 +233,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -189,7 +259,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -197,7 +266,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -212,7 +292,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -220,7 +299,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -235,7 +325,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -243,7 +332,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -258,7 +358,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -266,7 +365,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -281,7 +391,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -289,7 +398,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -304,7 +424,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -312,7 +431,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -327,7 +457,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -335,7 +464,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -350,7 +490,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -358,7 +497,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -373,7 +523,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -381,7 +530,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -396,7 +556,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -404,7 +563,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -419,7 +589,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -427,7 +596,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -442,7 +622,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -450,7 +629,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -465,7 +655,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -473,7 +662,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -488,7 +688,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -496,7 +695,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -511,7 +721,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -519,7 +728,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -534,7 +754,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -542,7 +761,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -557,7 +787,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -565,7 +794,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -580,7 +820,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -588,7 +827,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -603,7 +853,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -611,7 +860,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -626,7 +886,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -634,7 +893,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -649,7 +919,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -657,7 +926,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -672,7 +952,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -680,7 +959,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -695,7 +985,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -703,7 +992,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -718,7 +1018,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -726,7 +1025,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -741,7 +1051,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -749,7 +1058,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -764,7 +1084,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -772,7 +1091,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -787,7 +1117,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -795,7 +1124,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -810,7 +1150,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -818,7 +1157,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -833,7 +1183,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -841,7 +1190,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -856,7 +1216,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -864,7 +1223,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -879,7 +1249,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -887,7 +1256,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -902,7 +1282,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -910,7 +1289,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -925,7 +1315,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -933,7 +1322,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -948,7 +1348,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -956,7 +1355,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -971,7 +1381,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -979,7 +1388,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -994,7 +1414,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1002,7 +1421,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1017,7 +1447,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1025,7 +1454,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1040,7 +1480,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1048,7 +1487,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1063,7 +1513,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1071,7 +1520,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1086,7 +1546,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1094,7 +1553,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1109,7 +1579,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1117,7 +1586,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1132,7 +1612,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1140,7 +1619,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1155,7 +1645,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1163,7 +1652,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1178,7 +1678,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1186,7 +1685,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1201,7 +1711,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1209,7 +1718,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1224,7 +1744,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1232,7 +1751,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1247,7 +1777,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1255,7 +1784,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1270,7 +1810,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1278,7 +1817,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1293,7 +1843,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1301,7 +1850,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1316,7 +1876,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1324,7 +1883,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1339,7 +1909,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1347,7 +1916,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1362,7 +1942,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1370,7 +1949,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1385,7 +1975,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1393,7 +1982,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1408,7 +2008,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1416,7 +2015,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1431,7 +2041,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1439,7 +2048,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1454,7 +2074,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1462,7 +2081,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1477,7 +2107,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1485,7 +2114,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1500,7 +2140,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1508,7 +2147,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1523,7 +2173,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1531,7 +2180,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1546,7 +2206,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1554,7 +2213,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1569,7 +2239,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1577,7 +2246,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1592,7 +2272,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1600,7 +2279,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1615,7 +2305,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1623,7 +2312,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1638,7 +2338,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1646,7 +2345,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1661,7 +2371,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1669,7 +2378,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1684,7 +2404,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1692,7 +2411,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1707,7 +2437,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1715,7 +2444,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1730,7 +2470,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1738,7 +2477,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1768,7 +2518,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1776,7 +2525,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1791,7 +2551,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1799,7 +2558,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1814,7 +2584,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1822,7 +2591,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1837,7 +2617,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1845,7 +2624,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1860,7 +2650,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1868,7 +2657,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1883,7 +2683,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1891,7 +2690,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1906,7 +2716,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1914,7 +2723,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1929,7 +2749,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1937,7 +2756,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1952,7 +2782,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1960,7 +2789,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1975,7 +2815,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -1983,7 +2822,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -1998,7 +2848,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2006,7 +2855,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2021,7 +2881,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2029,7 +2888,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2044,7 +2914,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2052,7 +2921,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2067,7 +2947,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2075,7 +2954,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2090,7 +2980,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2098,7 +2987,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2113,7 +3013,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2121,7 +3020,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2136,7 +3046,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2144,7 +3053,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2159,7 +3079,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2167,7 +3086,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2182,7 +3112,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2190,7 +3119,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2205,7 +3145,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2213,7 +3152,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2228,7 +3178,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2236,7 +3185,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2251,7 +3211,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2259,7 +3218,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2274,7 +3244,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2282,7 +3251,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2297,7 +3277,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2305,7 +3284,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2320,7 +3310,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2328,7 +3317,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2343,7 +3343,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2351,7 +3350,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2366,7 +3376,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2374,7 +3383,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2389,7 +3409,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2397,7 +3416,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2412,7 +3442,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2420,7 +3449,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2435,7 +3475,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2443,7 +3482,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2458,7 +3508,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2466,7 +3515,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2481,7 +3541,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2489,7 +3548,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2504,7 +3574,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2512,7 +3581,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2527,7 +3607,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2535,7 +3614,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2550,7 +3640,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2558,7 +3647,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2573,7 +3673,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2581,7 +3680,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2596,7 +3706,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2604,7 +3713,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2619,7 +3739,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2627,7 +3746,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2642,7 +3772,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2650,7 +3779,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2665,7 +3805,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2673,7 +3812,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2688,7 +3838,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2696,7 +3845,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2711,7 +3871,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2719,7 +3878,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2734,7 +3904,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2742,7 +3911,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2757,7 +3937,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2765,7 +3944,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2780,7 +3970,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2788,7 +3977,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2803,7 +4003,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2811,7 +4010,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2826,7 +4036,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2834,7 +4043,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2849,7 +4069,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2857,7 +4076,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2872,7 +4102,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2880,7 +4109,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2895,7 +4135,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2903,7 +4142,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2918,7 +4168,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2926,7 +4175,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2941,7 +4201,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2949,7 +4208,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2964,7 +4234,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2972,7 +4241,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -2987,7 +4267,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -2995,7 +4274,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3010,7 +4300,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -3018,7 +4307,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3033,7 +4333,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -3041,7 +4340,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3056,7 +4366,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -3064,7 +4373,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3079,7 +4399,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -3087,7 +4406,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3102,7 +4432,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -3110,7 +4439,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3125,7 +4465,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -3133,7 +4472,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3148,7 +4498,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -3156,7 +4505,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3171,7 +4531,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -3179,7 +4538,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3194,7 +4564,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -3202,7 +4571,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3217,7 +4597,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -3225,7 +4604,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3240,7 +4630,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -3248,7 +4637,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3263,7 +4663,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -3271,7 +4670,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3286,7 +4696,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -3294,7 +4703,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3309,7 +4729,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -3317,7 +4736,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3332,7 +4762,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -3340,7 +4769,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3355,7 +4795,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -3363,7 +4802,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3378,7 +4828,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -3386,7 +4835,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3401,7 +4861,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -3409,7 +4868,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3424,7 +4894,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -3432,7 +4901,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3447,7 +4927,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -3455,7 +4934,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -3470,7 +4960,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -3478,7 +4967,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } diff --git a/test/maroto/maroto_add_rows_5.json b/test/maroto/maroto_add_rows_5.json index 5ff980d8..c2187e18 100755 --- a/test/maroto/maroto_add_rows_5.json +++ b/test/maroto/maroto_add_rows_5.json @@ -28,7 +28,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -36,7 +35,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -51,7 +61,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -59,7 +68,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -74,7 +94,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -82,7 +101,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -97,7 +127,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -105,7 +134,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -120,7 +160,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -128,7 +167,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -143,7 +193,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -151,7 +200,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -166,7 +226,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -174,7 +233,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -189,7 +259,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -197,7 +266,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -212,7 +292,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -220,7 +299,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -235,7 +325,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -243,7 +332,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -258,7 +358,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -266,7 +365,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -281,7 +391,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -289,7 +398,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -304,7 +424,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -312,7 +431,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -327,7 +457,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -335,7 +464,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -350,7 +490,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -358,7 +497,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -373,7 +523,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -381,7 +530,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -396,7 +556,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -404,7 +563,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -419,7 +589,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -427,7 +596,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -442,7 +622,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -450,7 +629,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] } @@ -465,7 +655,6 @@ "type": "col", "nodes": [ { - "value": "teste", "type": "text", "details": { "prop_align": "L", @@ -473,7 +662,18 @@ "prop_color": "RGB(0, 0, 0)", "prop_font_family": "arial", "prop_font_size": 10 - } + }, + "nodes": [ + { + "value": "teste", + "type": "sub_text", + "details": { + "prop_color": "RGB(0, 0, 0)", + "prop_font_family": "arial", + "prop_font_size": 10 + } + } + ] } ] }