[ 'label' => esc_html__( 'Cell Width', 'shopbuilder' ), 'type' => 'slider', 'separator' => 'default', 'range' => [ 'px' => [ 'min' => 200, 'max' => 500, ], ], 'selectors' => [ $widget->selectors['header_cell_width'] => 'min-width: {{SIZE}}{{UNIT}};', ], ], ]; $fields = Fns::insert_controls( 'table_header_bg_color', $fields, $insert_array, true ); $insert_array = [ 'item_cell_width' => [ 'label' => esc_html__( 'Cell Width', 'shopbuilder' ), 'type' => 'slider', 'separator' => 'default', 'range' => [ 'px' => [ 'min' => 200, 'max' => 500, ], ], 'selectors' => [ $widget->selectors['item_cell_width'] => 'min-width: {{SIZE}}{{UNIT}};', ], ], ]; $fields = Fns::insert_controls( 'table_item_bg_color', $fields, $insert_array, true ); return $fields; } }