- container:
    name: "comapnyIndiecs"
    title: "Companies / Indices"
    content:
       # Ref to "rowDataCategoryToggle" anchor in "SummaryTable.yml" File
      - divider:
          name: rowTitles
          title: Row Titles
          type: secondary
      #Begin Code Block. Question 2(b). Companies / Indices.
      - text:
          name: someText
          text: >
            <p><b>Companies to include:</b></p>
      # Workflow OW2. Link to backend of previously provided companies / indicies / custom indices
      - checkbox:
          name: checkboxCompaniesIncluded
          title:
          options:

      - text:
          name: textCustomBuildIndex
          text: >
            <p><b>Custom Built Indices to include:</b></p>
      # Workflow OW2. Link to backend of previously provided companies / indicies / custom indices
      - checkbox:
          name: customIndicesIncluded
          title:
          options:
      # END CODE BLOCK: Question 2(b)

      # Sub-category: Row Headings
      - divider:
          name: columnTitles
          title: Column Titles
          type: secondary
      # Workflow AN6. Decide between A and B block of YAML code below to display based on user input
      - table:
          name: testTable
          columns:
            # Workflow OW1(a)
            - "#":
                name: "#"
                type: number
                dataIndex: id
            # Workflow OW1(b)
            - Period Name:
                name: Period Name
                type: string
                dataIndex: periodName
            # Workflow OW1(c)
            - Date (Bgn -> End):
                name: date
                type: string
                dataIndex: dateRange
            - Remove: # New delete button column
                name: removeCompany
                type: button
                dataIndex: id  # Use the row's ID to identify deletion target
                iconType: CloseOutlined  # Icon for the button

      # Workflow OW1(d)
      # Workflow OW1(e)
      - aligner:
          align: right
          width: auto
          content:
            - button:
                name: addCompanyTestTable
                type: primary
                title: Add Time Period
                style:
                  marginTop: "10px"
                  backgroundColor: "#FFC000"
      # END CODE BLOCK: Question 2(a)