How to use the @material/chips.MDCChipSet function in @material/chips

To help you get started, we’ve selected a few @material/chips examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github material-components / material-components-web-catalog / src / ChipsPage.js View on Github external
this.setState({chipNames: newChipNames}, () => {
        this.chipSet.destroy();
        this.chipSet = new MDCChipSet(this.chipSetEl);
      });
      this.chipSetInputEl.value = '';
github prateekbh / preact-material-components / Chips / Chips.jsx View on Github external
componentDidMount() {
    this.MDComponent = new MDCChipSet(this.control);
  }
github material-components / material-components-web-catalog / src / ChipsPage.js View on Github external
this.initChipSet = chipSetEl => {
      this.chipSetEl = chipSetEl;
      this.chipSet = new MDCChipSet(chipSetEl);
    };
    this.setInput = inputEl => this.chipSetInputEl = inputEl;
github prateekbh / preact-material-components / ts / Chips / index.tsx View on Github external
public componentDidMount() {
    super.componentDidMount();
    if (this.control) {
      this.MDComponent = new MDCChipSet(this.control);
    }
  }
github material-components / material-components-web-catalog / src / ChipsPage.js View on Github external
    this.initChipSet = chipSetEl => this.chipSets.push(new MDCChipSet(chipSetEl));
  }