/** * Copyright (c) 2017-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ const React = require('react') const CompLibrary = require('../../core/CompLibrary.js') const MarkdownBlock = CompLibrary.MarkdownBlock /* Used to read markdown */ const Container = CompLibrary.Container const GridBlock = CompLibrary.GridBlock class HomeSplash extends React.Component { render() { const {siteConfig, language = ''} = this.props const {baseUrl, docsUrl} = siteConfig const docsPart = `${docsUrl ? `${docsUrl}/` : ''}` const langPart = `${language ? `${language}/` : ''}` const docUrl = doc => `${baseUrl}${docsPart}${langPart}${doc}` const SplashContainer = props => (
{props.children}
) const ProjectTitle = () => (

{siteConfig.title} {siteConfig.tagline}

) const PromoSection = props => (
{props.children}
) const Button = props => (
{props.children}
) return (
) } } class Index extends React.Component { render() { const {config: siteConfig, language = ''} = this.props const {baseUrl} = siteConfig const SubTitle = () => (

Designed for HTML Select tag

Multiple Select has been designed to reduce development time and to require no specific knowledge from developers. It is both featherweight and feature-rich.
) const Features = () => (

Features

- Default option allows showing a checkbox. - Ability to grouping elements. - Supports to show multiple items in a single row. - Select all options. - Feature to show placeholder.

Latest release v1.5.2 (2019-11-13)

- **Update:** Fixed virtual scroll bottom select bug. - **Update:** Fixed element not destroyed bug using `v-if`.
) return (
) } } module.exports = Index