Columns color with json array

columns의 color 기능이 json array 형태일때도 색깔을 지정할 수 있게 되었습니다.

아래 예제를 통해 테스트해볼 수 있어요.

menus:
- path: pages/0TYNKN-json-sample
  name: json array color
pages:
- path: pages/0TYNKN
  blocks:
  - type: query
    resource: json
    sqlType: select   
    json: 
      - product: 나이키 신발 001
        tags:
          - 패션
          - 스포츠
      - product: 아이폰 15
        tags:
          - 전자기기
          - 스마트폰
      - product: 경험 디자인 책
        tags: 
          - 서적
    columns:
      product:
        label: 상품
      tags:
        type: text # Text 타입으로 변경
        label: 태그
        color:
          패션: red
          스포츠: blue  
          전자기기: green
          스마트폰: purple
          서적: orange

```o