class MatChipList

Public Instance Methods

add(value) click to toggle source
# File lib/insite/examples/material_angular_io/components/mat_chip_list.rb, line 6
def add(value)
  mat_input(ngcontent => true).set(value + "\n")
end
clear_input(value) click to toggle source
# File lib/insite/examples/material_angular_io/components/mat_chip_list.rb, line 10
def clear_input(value)
  mat_input(ngcontent => true).clear
end
remove(value) click to toggle source
# File lib/insite/examples/material_angular_io/components/mat_chip_list.rb, line 14
def remove(value)
  mat_input(ngcontent => true).mat_icon.click
end
set_input(value) click to toggle source
# File lib/insite/examples/material_angular_io/components/mat_chip_list.rb, line 18
def set_input(value)
  mat_input(ngcontent => true).set(value)
end